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

:root {
    --gold: #B59440;
    --dark: #2C2B29;
    --cream: #F5F0E6;
    --white: #ffffff;
    --text-muted: #D1D1D1;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f5f0e6;
    margin: 0;
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0 10px;
    border-bottom: 1px solid #ffff;
}

.logo {
    font-size: 32px;
    color: var(--white);
    font-weight: 500;
}

#menu {
    display: flex;
    justify-content: center;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Montserrat';
}

#menu li a:hover {
    color: var(--gold);
}
a:hover {
    color: #b59440;
}
.btn-contact, .btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    color: var(--dark);
    padding: 10px 10px 10px 35px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: unset;
    transition: all 0.3s ease-in-out;
}
.btn-contact:hover, .btn-reserve:hover {
    color: var(--gold);
    transform: scale(1.05);
    background: var(--dark);
}
.arrow-circle {
    width: 40px;
    height: 40px;
    /* background: var(--gold); */
    /* color: var(--white); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-contact .arrow-circle {
    /* background: var(--gold); */
}

/* Banner */
.banner {
    position: relative;
    background: #2c2b2903 url(../images/banner-bg.png) no-repeat;
    /* min-height: 100vh; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    color: var(--white);
    padding-top: 0;
    /* overflow: hidden; */
    background-size: cover;
    background-size: 100% 100%;
    height: 730px;
    padding-top: 7px;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.5); */
}

.slide-item {
    padding-bottom: 200px;
    padding-top: 100px;
}

.banner-txt {
    position: relative;
    z-index: 10;
    margin-bottom: 200px;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.subtitle .line {
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.subtitle h6, .subtitle h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}

.subtitle h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: capitalize;
}

.banner-txt h1 {
    font-size: 43px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.banner-txt h1 span.italic {
    /* font-style: italic; */
    font-weight: 400;
}

.banner-txt h1 span.gold {
    color: var(--gold);
}

.banner-txt p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.btn-reserve.dark {
    background: var(--dark);
    color: var(--white);
}

/* Right Side Banner */
.banner-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.banner-img-circle {
    width: 814px;
    height: 788px;
    /* border-radius: 50%; */
    overflow: hidden;
    /* border: 30px solid var(--white); */
    position: relative;
    z-index: 41;
    margin-right: -56px;
    margin-top: 55px;
}

.banner-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease-in-out;
}

.banner-img-circle:hover img {
    transform: scale(1.1);
}

.badge-gold {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 230px;
    background: var(--gold);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 42;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: var(--white);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-content .number {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 60px;
}

.badge-content .dashed-line {
    width: 1px;
    height: 60px;
    border-left: 1px dashed rgba(255,255,255,0.6);
    margin: 20px 0;
    display: none;
}

.badge-content .text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Slider Controls Bar */
.slider-controls-bar {
    position: absolute;
    bottom: -115px;
    left: 0;
    width: 56%;
    background: #ede7dd;
    padding: 35px 60px;
    z-index: 0;
    /* border-radius: 80px 0 0 0; */
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.prev-arrow, .next-arrow {
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.prev-arrow img, .next-arrow img {
    width: 45px;
}

.prev-arrow:hover, .next-arrow:hover {
    opacity: 0.7;
}

.arrow-circle img {
    width: 40px;
}

.paging-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Playfair Display', serif;
}

.paging-info .current, .paging-info .total {
    font-size: 24px;
    color: var(--dark);
}

.paging-info .total {
    color: var(--gold);
    opacity: 0.5;
}

.progress-line {
    width: 350px;
    height: 1px;
    background: rgba(181, 148, 64, 0.2);
    position: relative;
}

.active-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: var(--gold);
}

/* About Section */
.about {
    padding: 320px 0 100px;
    /* background-color: var(--cream); */
}

.about-card {
    background: transparent;
    overflow: visible;
    display: flex;
}

.about-card .row {
    width: 100%;
}

.abt-img-box {
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.abt-img-box img {
    width: 129%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    transition: transform 0.6s ease-in-out;
}

.abt-img-box:hover img {
    transform: scale(1.05);
}

.abt-txt-wrapper {
    position: relative;
    height: 100%;
}

.abt-gold-offset {
    position: absolute;
    top: -12px;
    right: -20px;
    bottom: -20px;
    background: var(--gold);
    border-radius: 20px;
    z-index: 1;
    width: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.abt-txt-box {
    position: relative;
    background: var(--dark);
    padding: 60px 30px;
    border-radius: 20px;
    z-index: 2;
    height: 100%;
    color: var(--white);
}

.subtitle.white h3 {
    color: var(--white);
    font-size: 55px;
    margin: 0;
}

.abt-txt-box h5 {
    font-size: 21px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.abt-txt-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

/* System Section */
.system-sec {
    padding: 210px 0 0px;
}

.system-txt h2 {
    font-size: 55px;
    margin-bottom: 30px;
    color: var(--dark);
}

.system-txt p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.system-txt h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.check-list li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 5px;
}

.check-list li span {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid #EAE1C8;
    padding-bottom: 10px;
    flex: 1;
}

.check-list.white li span {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.system-img {
    overflow: hidden;
    border-radius: 10px;
}

.system-img img {
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    width: 100%;
    height: 655px;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.system-img:hover img {
    transform: scale(1.05);
}

.system-txt .btn-contact {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing-sec {
    padding: 100px 0;
}

.pricing-card-main {
    background: var(--dark);
    border-radius: 10px;
    padding: 40px 25px;
    color: var(--white);
}

.pricing-txt h2 {
    font-size: 55px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 300;
}

.pricing-txt p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.expect-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    color: var(--dark);
}

.expect-card h3 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: left;
}

.expect-list {
    margin-bottom: 40px;
}

.expect-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
}

.expect-item .label {
    font-size: 14px;
    color: #666;
}

.expect-item .val {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.expect-btn .btn-contact {
    /* width: 100%; */
    justify-content: space-between;
    padding: 15px 15px 15px 30px;
}

/* What We Treat */
.treat-sec {
    padding: 0px 0 0px;
    /* background: var(--white); */
    position: relative;
    z-index: 999;
}

.treat-head h2 {
    font-size: 55px;
    margin-bottom: 20px;
    color: var(--dark);
}

.treat-head p {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.treat-card {
    text-align: center;
    transition: 0.4s;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 130px;
}

.treat-img img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
}

.treat-info h4 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.treat-hover-box {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

.treat-hover-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.treat-card:hover {
    background: #F9F7F2;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-bottom: -20px;
}

.treat-card:hover .treat-hover-box {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
}

/* Reserve Your Spot */
.reserve-sec {
    padding: 120px 0 0px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    height: 850px;
}

.reserve-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.7); */
}

.reserve-sec .container {
    position: relative;
    z-index: 1;
}

.reserve-txt h2 {
    font-size: 55px;
    margin-bottom: 20px;
}

.reserve-txt p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.reserve-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.reserve-stats .num {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
}

.reserve-stats .divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

.reserve-stats .stat-txt {
    text-align: left;
}

.reserve-stats .stat-txt h6 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.reserve-stats .stat-txt p {
    font-size: 12px;
    margin: 0;
    color: var(--gold);
}

.reserve-form-card {
    max-width: 1190px;
    margin: 0 auto;
}

.gold-form-box {
    background: var(--gold);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    border: 15px solid var(--white);
}

.enrollment-tag {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.gold-form-box .form-control {
    background: var(--white);
    border: none;
    height: 55px;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
}

.gold-form-box textarea.form-control {
    height: 150px;
}



/* Blog Section */
.blog-sec {
    padding: 100px 0;
}

.blog-head h2 {
    font-size: 55px;
    margin-bottom: 20px;
}

.blog-head p {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.blog-card {
    position: relative;
    margin-bottom: 50px;
    transition: transform 0.4s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.6s ease-in-out;
}

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

.blog-txt-box {
    background: #f5f0e8;
    padding: 35px;
    border-radius: 0;
    width: 72%;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.blog-card.small .blog-img img {
    height: 300px;
}

.blog-card.small .blog-txt-box {
    width: 80%;
    padding: 25px;
    margin-top: -60px;
}

.blog-txt-box h6 {
    font-size: 14px;
    color: var(--dark);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: 'Playfair Display';
}

.blog-txt-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-txt-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-admin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-admin .avatar {
    width: 40px;
    height: 40px;
    color: #b8953a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 1px solid #b0ada7;
}

/* Footer Section */
footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 100px;
}

.footer-main {
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
}

.footer-main .row > [class*="col-"] {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
    padding-right: 40px;
}

.footer-main .row > [class*="col-"]:last-child {
    border-right: none;
}

.footer-main .row > [class*="col-"]:first-child {
    padding-left: 15px;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social h5 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.3s;
    font-size: 14px;
}

.social-icons li.active a, .social-icons li a:hover {
    background: var(--white);
    color: var(--dark);
}

.footer-head {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links, .contact-list {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-list li i {
    color: var(--white);
    font-size: 16px;
    margin-top: 3px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 50px;
    color: var(--white);
    font-size: 12px;
    margin-bottom: 20px;
    padding: 10px 20px;
}

.btn-subscribe {
    background: var(--cream);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-subscribe:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .banner-txt h1 { font-size: 60px; }
    .banner-img-circle { width: 500px; height: 500px; }
}

@media (max-width: 991px) {
    .banner-txt h1 { font-size: 50px; }
    .banner-img-circle { width: 400px; height: 400px; }
    .badge-gold { width: 140px; height: 140px; }
    .treat-card { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .banner-txt { text-align: center; margin-bottom: 50px; }
    .subtitle { justify-content: center; }
    .banner-img-circle { width: 300px; height: 300px; }
    .banner { padding-top: 150px; }
    .logo { font-size: 24px; }
    .btn-contact { padding: 5px 5px 5px 15px; }
    .arrow-circle { width: 30px; height: 30px; font-size: 12px; }
    .progress-line { width: 100px; }
    .about-card { flex-direction: column; }
    .abt-img-box img { border-radius: 20px 20px 0 0; width: 100%; }
    .abt-gold-offset { display: none; }
    .abt-txt-box { border-radius: 0 0 20px 20px; padding: 40px 20px; }
    .treat-head h2, .reserve-txt h2 { font-size: 36px; }
    .reserve-stats { flex-direction: column; gap: 10px; }
    .reserve-stats .divider { display: none; }
    .reserve-stats .stat-txt { text-align: center; }
    .gold-form-box { padding: 30px 15px; border-width: 10px; }
    .form-btn-row .btn-contact { position: relative; bottom: 0; margin-top: 20px; }
}
.container-fluid {
    padding: 0 4%;
}
.banner-txt h1 br {
    font-size: 59px;
    line-height: 1;
}
.banner-txt h2 {
    font-size: 59px;
    line-height: 1;
}

span.gold {
    color: #b8953a;
}
.abt-txt-bot {
    margin-top: 50px;
}
section.treat-sec.inn {
    padding: 300px 0px 0px;
}
/* Contact Page Start */

.contact-main-sec .contact-form form {
    position: relative;
}

.contact-main-sec .contact-form .form-group {
    position: relative;
}

.contact-main-sec .contact-form .form-group::after {
    content: '';
    height: 53px;
    width: 10px;
    position: absolute;
    left: 40px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-main-sec .contact-form form input.form-control {
    height: 60px;
    font-size: 12px;
    padding-left: 70px;
    border: 1px solid #c6c6c6;
    line-height: 0;
    box-shadow: none;
    color: #909091;
    font-weight: 400;
    margin-top: 20px;
    font-family: 'Poppins';
    display: flex;
    border-radius: 10px;
    background-color: #f6f6f6;
}

.contact-main-sec .contact-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-main-sec .contact-form form textarea.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .contact-form form textarea.form-control {
    font-size: 12px;
    border-radius: 0px;
    padding-left: 70px;
    padding-top: 13px;
    border: 2px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    border-radius: 10px;
    resize: none;
    background-color: transparent;
    margin-top: 20px;
    color: #c6c6c6;
    margin-bottom: 30px;
    height: 200px !important;
}

.contact-main-sec .contact-form .email {
    padding: 0;
}

.contact-main-sec .contact-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.contact-main-sec .contact-form form textarea.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .contact-form form .phone:before {
    position: absolute;
    content: '';
    width: 42px;
    height: 50px;
    background: url(../images/fom4.png);
    background-repeat: no-repeat;
    left: 16px;
    z-index: 1;
}

.contact-main-sec .ftt-list .navgation-f {
    float: left;
    width: 50%;
}

.contact-main-sec .ftt-lst li {
    margin-bottom: 20px;
}

.contact-main-sec .f-media ul li a:hover {
    background: #008080;
    border-color: #008080;
}

.footer_logo img {
    width: 30%;
}

.contact-main-sec .contact-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-main-sec .contact-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-main-sec .contact-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-main-sec .contact-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.contact-main-sec .cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #957a36;
    border: 1px solid #957a36;
    height: 70px;
    width: 70px;
    border-radius: 50px;
}

.contact-main-sec .cicle-icon img {
    margin: 0 auto;
}

.contact-main-sec .contact-info {
    width: 100%;
    display: inline-block;
    padding: 40px 20px;
    margin-bottom: 10px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 115px;
    margin-bottom: 27px;
    border: 1px solid #c6c6c6;
    border-radius: 0;
}

.contact-main-sec .contact-main-sec h4 {
    font-size: 47px;
    color: #0b0a0b;
    line-height: 80px;
    margin-bottom: 0;
}

.contact-main-sec .contact-side-bar .contact_text h2 {
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    font-family: 'Montserrat';
    line-height: 1;
}
.contact-main-sec .contact_text {
    padding-top: 0;
}
.contact-main-sec .contact-form button {
    padding: 16px 17px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    animation: 1s shadow-pulse infinite;
    width: auto;
}
.contact-main-sec .contact-main-sec .row {
    align-items: center;
}

.contact-main-sec .contact_text p {
    font-size: 14px;
    line-height: 25px;
    color: #acacac;
    padding-top: 4px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
}

.contact-main-sec .contact_text p a {
    font-size: 14px;
    color: #acacac;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    /* margin-top: 3px; */
    display: block;
}

.contact-main-sec .mailt {
    padding-left: 30px;
}

.contact-main-sec .contact_text a:hover {
    color: #18aae8;
}

.contact-main-sec .contact_text p a.email-text {
    font-size: 14px;
    color: #8b8b8b;
}

.contact-main-sec .contact_text p a.email-text:hover {
    color: #00aae8;
}

.contact-main-sec .contact-us {
    padding: 6% 0;
}

.contact-main-sec .contact-head {
    text-align: center;
}

.contact-main-sec .contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.contact-main-sec .lg-btn {
    width: 100%;
}

.contact-main-sec .primary-btn {
    /* display: inline-block; */
    padding: 8px 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    background: #00aa00;
    color: #fff;
    text-align: center;
    transition: all .4s ease;
    border: 2px solid transparent;
    border-radius: 4px;
}

.contact-main-sec .cp {
    font-size: 17px;
    line-height: 27px;
}

.contact-main-sec .contact_heading {
    margin-bottom: 30px;
}

.contact-main-sec .contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-main-sec .contact-side-bar {
    padding-top: 30px;
}

.contact-main-sec {
    padding: 270px 0 90px;
    /* background-color: #6da043; */
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.contact-form .form-group i {
    position: absolute;
    top: 17px;
    left: 10px;
    color: #7e7e7e;
    font-size: 20px;
}

.contact-form {
    margin-top: 10px;
}

button.btn10.cont-pg {
    background: #001e3b !important;
}


.contact-form form input.form-control::placeholder {
    color: #fff;
}
.contact-form form textarea.form-control::placeholder {
   color: #c6c6c6;
}
.contact-main-sec h2 {
    font-size: 47px;
    line-height: 50px;
    color: #0b0a0b;
    margin-bottom: 0;
}
.contact-form form input.form-control::placeholder {
    color: #c6c6c6;
}
.submit-btn {
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background-color: #957a36 !important;
}

/* Arrow styling */
.submit-btn .arrow {
  font-size: 14px;
  transform: rotate(-35deg);
}

/* Hover effect */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Click effect */
.submit-btn:active {
  transform: scale(0.95);
}
/* Contact Page End */
section.system-sec.inn {
    padding-top: 310px;
}
section.reserve-sec.inn {
    padding: 280px 0px 100px;
    position: unset;
    top: 0;
    margin-bottom: 330px;
}

section.reserve-sec.inn h2 {
    color: #000;
}

section.reserve-sec.inn .reserve-txt p {
    color: #000;
    margin-bottom: 10px;
}


section.reserve-sec.inn span.num {
    color: #000;
}

section.reserve-sec.inn .reserve-stats .stat-txt h6 {
    color: #000;
}
section.detail-service {
    padding: 290px 0px 100px;
}
.det-ser-img img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 20px;
}

.det-ser-txt h3 {
    font-size: 48px;
    color: #000;
    line-height: 50px;
    margin-bottom: 10px;
}

.det-ser-txt {
    margin-top: 20px;
}

.det-ser-txt p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

html {
overflow-x:hidden;    
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
.logo {
    font-size: 12px;
    line-height: 20px;
}

#menu {
    gap: 15px;
}

#menu li a {
    font-size: 10px;
}

.btn-contact, .btn-reserve {
    font-size: 10px;
    gap: 10px;
    padding-left: 20px;
}    
.banner-slid .slide-item {
    padding-top: 160px;
}

.badge-content .number {
    margin-bottom: 0;
}
.treat-info h4 {
    font-size: 20px;
}
.banner-img-circle {
    width: 480px;
    height: 500px;
    margin: unset;
}
.footer-main .row > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
}
.banner {
    background-size: cover;
    height:760px;
}
.slider-controls-bar {
    width: 100%;
}
.banner-txt h1 {
font-size: 39px !important;
}
.about {
    padding-top: 200px;
}

.subtitle {
    display: block;
}

.subtitle.white h3 {
    font-size: 34px;
}

.abt-txt-box h5 {
    font-size: 16px;
}

.abt-txt-box p {
    font-size: 12px;
    margin-bottom: 10px;
}

.abt-txt-box {
    padding: 60px 12px;
}
.treat-card {
        margin-bottom: 80px;
    }
.system-txt h2 {
    font-size: 40px;
}

.system-sec {
    padding-top: 280px;
}

.system-txt p {
    font-size: 12px;
    line-height: 20px;
}

.check-list li span {
    font-size: 10px;
}    
.pricing-txt h2 {
    font-size: 40px;
}

.expect-card {
    padding: 40px 20px;
}
.expect-item {
    display: flex;
    gap: 30px;
}

.expect-item .val {
    font-size: 12px;
}

.expect-item .label {
    font-size: 12px;
}

.pricing-txt p {
    font-size: 12px;
    line-height: 21px;
}
    section.banner.inn {
        height: 770px;
        background-position: left;
        background-size: cover;
    }
.abt-txt-bot p {
    font-size: 12px;
    line-height: 21px;
}
section.treat-sec.inn {
    padding-top: 150px;
}
section.reserve-sec.inn {
    padding-top: 100px;
}
.contact-main-sec {
    padding-top: 100px;
}    
    
}

@media only screen and (min-width: 768px) and (max-width: 991px){
.logo {
    font-size: 12px;
    line-height: 20px;
}

#menu {
    gap: 15px;
}

#menu li a {
    font-size: 10px;
}

.btn-contact, .btn-reserve {
    font-size: 10px;
    gap: 10px;
    padding-left: 20px;
}    
.banner-slid .slide-item {
    padding-top: 160px;
}

.badge-content .number {
    margin-bottom: 0;
}

.banner-img-circle {
    width: 480px;
    height: 500px;
    margin: unset;
}

.banner {
    background-size: cover;
}
.slider-controls-bar {
    width: 100%;
}
.banner-txt h1 {
font-size: 39px !important;
}
.about {
    padding-top: 200px;
}

.subtitle {
    display: block;
}

.subtitle.white h3 {
    font-size: 34px;
}

.abt-txt-box h5 {
    font-size: 16px;
}

.abt-txt-box p {
    font-size: 12px;
    margin-bottom: 10px;
}

.abt-txt-box {
    padding: 60px 12px;
}
.treat-card {
        margin-bottom: 80px;
    }
.system-txt h2 {
    font-size: 40px;
}

.system-sec {
    padding-top: 280px;
}

.system-txt p {
    font-size: 12px;
    line-height: 20px;
}

.check-list li span {
    font-size: 10px;
}    
.pricing-txt h2 {
    font-size: 40px;
}

.expect-card {
    padding: 40px 20px;
}
.expect-item {
    display: flex;
    gap: 30px;
}

.expect-item .val {
    font-size: 12px;
}

.expect-item .label {
    font-size: 12px;
}

.pricing-txt p {
    font-size: 12px;
    line-height: 21px;
}
section.banner.inn {
    height: 610px;
}
.abt-txt-bot p {
    font-size: 12px;
    line-height: 21px;
}
section.treat-sec.inn {
    padding-top: 150px;
}
section.reserve-sec.inn {
    padding-top: 100px;
}
.contact-main-sec {
    padding-top: 100px;
}
}




@media only screen and (min-width: 300px) and (max-width: 519px){
    header {
    
    padding: 70px 0 10px !important;
}
    section.banner.inn .banner-img-circle {
    margin-right: 0 !important;
}
section.reserve-sec.inn {
    padding: 80px 0px 100px;
    margin-bottom:200px;
}
.enrollment-tag {
    letter-spacing: 2px;
}
     .logo {
        font-size: 15px;
    }
.arrow-circle img {
    width: 25px;
}
.btn-contact {
    font-size: 9px;
    gap: 10px;
}
.banner {
        padding-top: 70px;
        background-size: cover;
    }
.subtitle h1 {
    font-size: 28px;
}

span.gold {
    font-size: 30px;
}
    .banner-txt h1 {
        font-size: 20px;
    }
.controls-wrapper {
    gap: 6px;
}    
.slider-controls-bar {
    position: absolute;
    bottom: -112px;
    width: 100%;
    padding: 15px 10px;
}
.banner-txt p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
}
.banner-txt h2 {
    font-size: 30px;
}
.banner-img-circle {
    margin-top: -25px;
}
.badge-content .number {
    margin-bottom: 10px;
}
.subtitle {
    display: block;
}

.subtitle.white h3 {
    font-size: 40px;
}

.abt-txt-box h5 {
    font-size: 17px;
}

.abt-txt-box p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
}
.treat-info h4 {
    font-size: 18px;
}
.treat-card {
    margin-bottom: 90px;
}
section.system-sec {
    padding-top: 310px;
}

.system-txt h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.system-txt p {
    font-size: 12px;
    line-height: 22px;
}

.check-list li span {
    font-size: 12px;
}

.system-img {
    margin-top: 30px;
}

.pricing-card-main {
    padding: 30px 20px;
}

.pricing-txt h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.pricing-txt p {
    font-size: 12px;
    line-height: 21px;
}

.expect-card {
    padding: 40px 15px;
}

.expect-item .val {
    font-size: 12px;
}

.expect-item .label {
    font-size: 12px;
}

.expect-item {
    gap: 15px;
}
footer {
    padding-top: 80px;
}
.about {
    padding-top: 150px;
}
    section.banner.inn {
        height: 560px;
    }
.abt-txt-bot p {
    font-size: 12px;
    line-height: 22px;
} 
section.treat-sec.inn {
    padding-top: 100px;
}
section.system-sec.inn {
    padding-top: 110px;
}
.contact-main-sec {
    padding-top: 100px;
}
.contact-main-sec {
    padding-top: 100px;
}

.contact-main-sec .contact-info {
    justify-content: flex-start;
}

.contact-main-sec .cicle-icon i {
    font-size: 20px;
    width: 50px;
    height: 50px;
}

.contact_text {
    padding-left: 17px;
}
}















