/*==================================================
Theme Name : Marlin Beautty
Author     : Yog Raj
==================================================*/

/*==================================
Google Fonts
==================================*/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==================================
Root Variables
==================================*/

:root {

    --primary: #696f1d;
    --primary-dark: #585516;
    --secondary: #F8F6F2;
    --gold: #CDA349;

    --text: #252525;
    --text-light: #666666;

    --white: #ffffff;

    --border: #EAE5D9;

    --radius: 14px;
    --radius-lg: 24px;
    --radius-full: 100px;

    --shadow: 0 15px 40px rgba(0, 0, 0, .08);

    --transition: .35s ease;

}

/*==================================
Reset
==================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;

}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

button {

    border: none;
    background: none;
    outline: none;

}

input,
textarea,
select {

    outline: none;

}

section {

position: relative;

padding: 60px 0;
}

/*==================================
Container
==================================*/

.container {

    max-width: 1320px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;

}

.btn:focus {
    box-shadow: none !important;
    outline: none;
    background: var(--primary-dark);
}

/*==================================
Typography
==================================*/

.heading {

    font-family: 'DM Serif Display', serif;
    font-size: 72px;
    line-height: 1;
    color: var(--primary);
    font-weight: 400;

}

.section-title {

font-family: 'DM Serif Display', serif;

font-size: 40px;

color: #252523;

line-height: 1.2;
}

.section-subtitle {

    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;

}

.small-title {

    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;

}

.text {

    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;

}

/*==================================
Buttons
==================================*/

.btn {

display: inline-flex;

align-items: center;

justify-content: center;

gap: 10px;

height: 44px;

padding: 0 20px;

border-radius: 10px;

font-size: 15px;

font-weight: 500;

transition: var(--transition);

border: transparent;
}

.btn-primary {

    background: var(--primary);
    color: #fff;

}

.btn-primary:hover {

    background: var(--primary-dark);
    color: #fff;

}

.btn-outline {

    border: 1px solid var(--primary);
    color: var(--primary);

}

.btn-outline:hover {

    background: var(--primary);
    color: #fff;

}

/*==================================
Section Heading
==================================*/

.section-heading {

margin-bottom: 35px;

text-align: center;
}

.section-heading .small-title {

    margin-bottom: 12px;

}

.section-heading .section-title {
}

.section-heading .text {

    max-width: 650px;
    margin: 0 auto;

}

/*==================================
Cards
==================================*/

.card-box {

    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);

}

.card-box:hover {

    transform: translateY(-6px);
    box-shadow: var(--shadow);

}

/*==================================
Image
==================================*/

.image-cover {

    overflow: hidden;
    border-radius: var(--radius-lg);

}

.image-cover img {

    width: 100%;
    transition: .6s;

}

.image-cover:hover img {

    transform: scale(1.08);

}

/*==================================
Form
==================================*/

.form-control {

    width: 100%;
    height: 58px;

    padding: 0 22px;

    border: 1px solid var(--border);

    border-radius: 12px;

    font-size: 15px;

    transition: var(--transition);

}

textarea.form-control {

    height: 180px;
    padding: 20px;
    resize: none;

}

.form-control:focus {

    border-color: var(--primary);

}

/*==================================
Spacing
==================================*/

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-70 {
    margin-bottom: 70px;
}

/*==================================
Responsive
==================================*/

@media(max-width:991px) {

    .heading {

        font-size: 56px;

    }

    .section-title {

        font-size: 38px;

    }

    .section-subtitle {

        font-size: 30px;

    }

    section {

        padding: 80px 0;

    }

}

@media(max-width:767px) {

    .heading {

        font-size: 44px;

    }

    .section-title {

        font-size: 30px;

    }

    .section-subtitle {

        font-size: 24px;

    }

    .btn {

        width: 100%;

    }

    section {

        padding: 70px 0;

    }

}

/*==============================
Header
==============================*/

.header-area {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 99;

    padding: 6px 0;
}

.navbar {

    padding: 0;

}

.navbar-brand {

    width: 210px;

}

.navbar-brand img {

    width: 100%;

}

.navbar-collapse {

    justify-content: space-between;

}

.navbar-nav {

    margin: auto;

}

.navbar-nav li {

margin: 0 30px;
}

.navbar-nav li a {

    font-size: 16px;

    font-weight: 500;

    color: #222;

    position: relative;
}

.navbar-nav li a.active {

    color: var(--primary);

}

.navbar-nav li a.active::after {

    content: '';

    width: 24px;
    height: 2px;

    background: var(--gold);

    position: absolute;

    left: 0;
    bottom: -8px;

}

/*==============================
Hero
==============================*/

.hero-area {

    padding: 165px 0 124px;

    overflow: hidden;

    position: relative;

    background-size: cover !important;

    background-position: 50% 0% !important;
}

.hero-content {

    /* padding-top: 60px; */
}

.hero-tag {

    display: inline-block;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 15px;

    margin-bottom: 20px;

    font-weight: 600;
}

.hero-title {

    font-size: 80px;

    line-height: .9;

    margin-bottom: 10px;
}

.hero-title span {

    display: block;

}

.hero-subtitle {

font-family: 'Cormorant Garamond', serif;

font-size: 36px;

color: var(--gold);

font-style: italic;

font-weight: 500;

margin-bottom: 25px;
}

.hero-content p {

    margin-bottom: 20px;
}

.hero-location {

    display: flex;

    align-items: flex-start;

    margin-bottom: 25px;

}

.hero-location i {

    color: var(--primary);

    font-size: 22px;

    margin-right: 12px;

}

.hero-rating {

    color: #F5B301;

    font-size: 24px;

    margin-bottom: 30px;
}

.hero-rating span {

    display: block;

    color: #555;

    font-size: 16px;

    margin-top: 0px;
}

.hero-buttons {

    display: flex;

    gap: 18px;

}

/*==============================
Hero Image
==============================*/

.hero-image {

    position: relative;

    height: 850px;

}

.hero-image img {

    position: absolute;

    right: -120px;

    bottom: 0;

    width: 900px;

    z-index: 2;

}

.btn i {
    font-size: 24px;
}

/*=========================
Why Choose
=========================*/

.why-choose-area {
}

.choose-box {

    background: #fff;

    border: 1px solid #ebe6dc;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    height: 100%;

    transition: .4s ease;

    position: relative;

    overflow: hidden;
}

.choose-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s;

    transform-origin: left;

}

.choose-icon {

    width: 75px;

    height: 75px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.choose-icon img {

    transition: .4s;
}

.choose-box h3 {

font-size: 18px;

font-weight: 500;

color: #000000;

margin-bottom: 4px;

line-height: 1.4;
}

.choose-box p {

color: #666;

font-size: 16px;

margin: 0;

line-height: 1.8;
}

/* Hover */

.choose-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

    border-color: transparent;

}

.choose-box:hover::before {

    transform: scaleX(1);

}

.choose-box:hover .choose-icon img {

    transform: scale(1.1) rotate(5deg);

}

.choose-box:hover h3 {

    color: #000;

}

/*==============================
Services
==============================*/

.services-area {

    padding: 60px 0;

    background: #f8f4ee;
}

.service-card {

background: #fff;

border: 1px solid #ece7dc;

border-radius: 18px;

overflow: hidden;

transition: .4s ease;

position: relative;

height: 100%;
}

.service-image {

    overflow: hidden;

}

.service-image img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .6s;

}

.service-content {

padding: 30px 20px;

text-align: center;

position: relative;
}

.service-icon {

width: 65px;

height: 65px;

background: #fff;

border: 1px solid #ece7dc;

border-radius: 50%;

display: flex;

align-items: center;

justify-content: center;

position: absolute;

top: -42px;

left: 40px;

box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.service-icon img {

width: 40px;
}

.service-content h3 {

font-size: 18px;

color: #000000;

margin-bottom: 15px;

text-transform: uppercase;
}

.service-content p {

color: #666;

font-size: 15px;

line-height: 1.8;

margin-bottom: 20px;
}

.service-btn {

display: inline-flex;

align-items: center;

justify-content: center;

min-width: 130px;

height: 46px;

background: var(--primary);

color: #fff;

border-radius: 10px;

font-size: 15px;

font-weight: 500;

transition: .35s;
}

.service-btn:hover {

    background: #4f4b14;

    color: #fff;

}

/* Hover */

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.service-card:hover .service-image img {

    transform: scale(1.08);

}

.service-card:hover .service-icon {

    transform: rotate(10deg);

}

/*=========================
Price List
=========================*/

.price-area {padding-bottom: 20px;}

.price-filter {

    text-align: center;

    margin-bottom: 45px;

}

.price-filter button {

width: 230px;

height: 48px;

border: none;

border-radius: 50px;

background: #F3F1EB;

color: #555;

margin: 0 8px;

font-size: 16px;

transition: .35s;

font-weight: 500;
}

.price-filter button.active,
.price-filter button:hover {

    background: var(--primary);

    color: #fff;

}

.price-card {

    background: #fff;

    border: 1px solid #ece7dc;

    border-radius: 14px;

    overflow: hidden;

    transition: .35s;

}

.price-img {

    padding: 10px;

}

.price-img img {

width: 100%;

height: 200px;

object-fit: cover;

border-radius: 10px;

transition: .5s;
}

.price-content {

    padding: 20px;

    text-align: center;

}

.price-content h4 {

font-size: 18px;

color: #000000;

line-height: 1.4;

margin-bottom: 15px;
}

.price-content h3 {

font-size: 18px;

margin-bottom: 18px;

color: #222;
}

.price-btn {

width: 100%;

height: 42px;

border-radius: 10px;

display: flex;

align-items: center;

justify-content: center;

gap: 8px;

background: var(--primary);

color: #fff;

transition: .35s;
}

.price-btn:hover {

    background: #4F4B14;

    color: #fff;

}

.price-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}



.tab-pane {

    display: none;

}

.tab-pane.active {

    display: block;

}


/*==============================
Appointment
==============================*/

.appointment-area {
}

.appointment-wrapper {

    background: #f6f4f0;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);

    position: relative;
}

/* Left */

.appointment-left {

background: linear-gradient(90deg, #646417, #818122);

min-height: 100%;

padding: 70px 26px 50px;

color: #fff;

position: relative;

overflow: hidden;
}

.appointment-left::after {

content: "";

position: absolute;

top: -80px;

right: -295px;

width: 410px;

height: 736px;

background: #f6f4f0;

border-radius: 50%;
}

.appointment-left>* {

    position: relative;

    z-index: 2;

}

.appointment-icon {

    width: 70px;

    height: 70px;

    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    font-size: 34px;

}

.appointment-left h2 {

font-family: 'DM Serif Display', serif;

font-size: 40px;

line-height: 1.2;

margin-bottom: 18px;
}

.appointment-left p {

    font-size: 18px;

    margin-bottom: 30px;

}

.appointment-left ul {

    margin-bottom: 40px;

}

.appointment-left ul li {

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

}

.btn-white {

height: 50px;

background: #fff;

color: var(--primary);

border-radius: 10px;

display: flex;

align-items: center;

justify-content: center;

gap: 10px;

font-weight: 600;

max-width: 400px;
}

/* Right */

.appointment-right {padding: 30px 30px 30px 0px;}

.appointment-right .section-heading {

    margin-bottom: 40px;

    text-align: center;

}

.form-group {

    margin-bottom: 22px;

}

.form-control {

height: 48px;

border: 1px solid #ddd;

border-radius: 4px;

padding: 0 20px;

font-size: 15px;
}

textarea.form-control {

height: 98px;

padding: 18px 20px;

resize: none;
}
.appointment-btn i {
    font-size: 17px;
}
.appointment-btn {

width: 100%;

height: 52px;

border: none;

margin-top: 10px;
}

/* Hover */

.btn-white:hover {

    background: #f7f7f7;

}

.appointment-btn:hover {

    transform: translateY(-3px);

}

/*==============================
Gallery
==============================*/

.gallery-area {background: #f8f4ee;}

.gallery-row {

    row-gap: 24px;

}

.gallery-item {

position: relative;

display: block;

overflow: hidden;

border-radius: 10px;
}

.gallery-item img {

width: 100%;

height: 250px;

object-fit: cover;

transition: .5s;
}

.gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: .35s;

}

.gallery-overlay i {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

}

.play-btn {

position: absolute;

left: 50%;

top: 50%;

transform: translate(-50%, -50%);

width: 52px;

height: 52px;

border-radius: 50%;

background: #ffffffc2;

color: #696f1d;

display: flex;

align-items: center;

justify-content: center;

font-size: 20px;

transition: .35s;
}

.gallery-item:hover img {

    transform: scale(1.08);

}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

}

.video-item:hover .play-btn {

    transform: translate(-50%, -50%) scale(1.15);

}

/*=====================================
Why Love
=====================================*/

.why-love-area {
}

.love-box {

text-align: center;

transition: .35s;

border: 1px solid #e2dac9;

padding: 15px;

border-radius: 10px;
}

.love-icon {

    width: 90px;

    height: 90px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #f8f6f2;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.love-icon img {

    width: 46px;

    transition: .35s;

}

.love-box h4 {

font-size: 17px;

color: #222;

line-height: 1.5;

font-weight: 500;
}

/* Hover */

.love-box:hover {

    transform: translateY(-8px);

}

.love-box:hover .love-icon {

    background: var(--primary);

    box-shadow: 0 15px 35px rgba(109, 106, 30, .25);

}

.love-box:hover .love-icon img {

transform: scale(1.12);
}

.love-box:hover h4 {

    color: var(--primary);

}

/*==================================
Footer
==================================*/

.footer-area {

padding: 70px 0 25px;

border-top: 1px solid #ece7dc;

background-size: cover !important;

position: relative;
}

.footer-widget {

margin-bottom: 30px;

position: relative;
}

.footer-logo {

    display: inline-block;

    margin-bottom: 20px;

}

.footer-logo img {

max-width: 220px;

filter: brightness(0) invert(1);
}

.footer-widget p {

color: #ffffff;

line-height: 1.8;

max-width: 260px;
}

.footer-widget h4 {

font-size: 20px;

color: #ffffff;

margin-bottom: 25px;

font-weight: 500;
}

.footer-widget ul li {

    margin-bottom: 12px;

}

.footer-widget ul li a {

color: #ffffff;

transition: .35s;
}

.footer-widget ul li a:hover {

    color: var(--primary);

    padding-left: 6px;

}

/* Contact */

.footer-contact li {

display: flex;

align-items: flex-start;

gap: 12px;

color: #ffffff;

line-height: 1.7;
}

.footer-contact li i {

color: #ffffff;

font-size: 16px;

margin-top: 7px;
}

/* Social */

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    transition: .35s;

}

.footer-social a:hover {

    transform: translateY(-5px);

    background: #4f4b14;

}

/* Bottom */

.footer-bottom {

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #ece7dc;

    text-align: center;

    position: relative;

}



.footer-bottom p {

margin: 0;

color: #ffffff;
}
.footer-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000091;

}
.footer-bottom p a {
    color: #fff;
}
.form-control:focus {
    box-shadow: none;
}
.footer-social a i {
    font-size: 18px;
}
.service-card{

    height:100%;
    display:flex;
    flex-direction:column;

}

.service-content{

    display:flex;
    flex-direction:column;
    flex:1;

}

.service-content p{

    flex:1;
    margin-bottom:25px;

}

.service-btn{

    margin-top:auto;

}
/*==================================
Floating Buttons
==================================*/

.floating-action{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

    display:flex;

    flex-direction:column;

    gap:15px;

}

/* WhatsApp */

.whatsapp-btn{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    transition:.35s;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-btn:hover{

    transform:translateY(-5px);

    color:#fff;

}

/* Scroll */

.scroll-top{

width: 60px;

height: 60px;

border:none;

border-radius:50%;

background:var(--primary);

color:#fff;

font-size:18px;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 12px 30px rgba(0,0,0,.18);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;
}

.scroll-top.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.scroll-top:hover{

background: #4b500d;

color:#fff;
}

/* Pulse */

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.5);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

/* Mobile */

@media(max-width:767px){

.floating-action{

    right:18px;

    bottom:18px;

}

.whatsapp-btn{

    width:55px;

    height:55px;

    font-size:26px;

}

.scroll-top{

    width:50px;

    height:50px;

}

}

/*====================================
Owl Navigation
====================================*/

.price-slider .owl-nav{

margin-top: 25px;

display:flex;

justify-content:center;

gap: 160px;

position:relative;
}

.price-slider .owl-nav button{

width: 36px;

height: 36px;

border-radius:50% !important;

background:#fff !important;

border:1px solid #ececec !important;

color:#8a7b23 !important;

font-size:18px !important;

transition:.35s;

box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

position: relative;

z-index: 1;
}

.price-slider .owl-nav button:hover{

    background:var(--primary) !important;

    color:#fff !important;

    border-color:var(--primary) !important;

}

/*====================================
Dots
====================================*/

.price-slider .owl-dots{

position: relative;

display:flex;

align-items:center;

gap:10px;

justify-content: center;

margin-top: -21px;
}

.price-slider .owl-dot span{

width:10px !important;

height:10px !important;

margin:0 !important;

/* background:#d9d9d9 !important; */

border-radius:50%;

transition:.35s;
}

.price-slider .owl-dot.active span{

width:12px !important;

height:12px !important;

}

.price-slider .owl-dot:hover span{

    background:#f7931e !important;

}
.price-slider .owl-dot {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    display: block;
    border-radius: 50px;
}



.price-slider .owl-dot.active {
    background: #696f1d !important;
}

.price-slider .owl-nav button span {
    font-size: 32px !important;
    line-height: 34px;
}

.price-slider .owl-nav button i {
    font-size: 16px;
}
/*=========================
CTA
=========================*/

.cta-area{

padding: 60px 0 0px;
}



.cta-content{

position:relative;

z-index:2;

padding: 90px 42px;

max-width: 60%;
}

.cta-subtitle{display:inline-block;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:15px;color: var(--gold);font-family: 'Cormorant Garamond', serif;font-style: italic;font-size: 22px;position: relative;z-index: 3;}

.cta-content h2{margin-bottom:20px;color: #fff;font-family: 'DM Serif Display', serif;font-size: 36px;position: relative;}

.cta-content p{margin-bottom:30px;color: #fff;position: relative;z-index: 1;}

.cta-feature{

    display:flex;

    flex-wrap:wrap;

    gap:15px 25px;

    margin-bottom:35px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

}

.feature-item i{

    color:var(--primary);

}

@media(max-width:991px){

.cta-section{

    min-height:auto;

    background-position:right center;

}

.cta-content{

    padding:50px 35px;

}

}

@media(max-width:767px){

.cta-section{

    background-position:75% center;

}

.cta-content{

    padding:40px 25px;

}

}
.cta-content:before {
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00000040 0%, #00000000 100%);
    border-radius: 10px;
}

.cta-content a.btn.btn-primary {
    position: relative;
}

.cta-section {
    background-size: cover !important;
    border-radius: 10px;
}
.cta-content a.btn.btn-primary I {
    font-size: 18px;
}
/* Mobile Menu Button */
.navbar-toggler {
    width: 46px;
    height: 46px;
    border: none;
    background: #696f1d;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(76,175,36,.25);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background: #696f1d;
    transform: translateY(-2px);
}

.navbar-toggler span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 30px;
    transition: all .35s ease;
}

/* Animation */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Only */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}
.thankyou-section{
    padding:120px 15px;
    background:#f8f6f2;
    min-height:100vh;
    display:flex;
    align-items:center;
}

.thankyou-card{
    max-width:780px;
    margin:auto;
    background:#fff;
    border-radius:25px;
    padding:70px 50px;
    text-align:center;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.thankyou-card:before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#6f7418;
    border-radius:50%;
    top:-180px;
    right:-120px;
    opacity:.08;
}

.check-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#6f7418;
    color:#fff;
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.thankyou-card h1{
    font-size:54px;
    font-weight:700;
    color:#333;
    margin-bottom:10px;
}

.thankyou-card h2{
    font-size: 24px;
    color:#6f7418;
    margin-bottom:20px;
    font-weight: 600;
}

.thankyou-card p{
    color:#666;
    line-height:1.8;
    max-width:600px;
    margin:auto;
}

.thankyou-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:45px;
}

.info-box{
    padding:30px;
    border:1px solid #eee;
    border-radius:15px;
}

.info-box h4{
    margin-bottom:15px;
}

.btn-whatsapp{
    display:inline-block;
    background:#6f7418;
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
}

.thankyou-btns{
    margin-top:45px;
}

.btn-home,
.btn-gallery{
    display:inline-block;
    padding: 12px 35px;
    border-radius:40px;
    text-decoration:none;
    margin:10px;
    transition:.3s;
}

.btn-home{
    background:#6f7418;
    color:#fff;
}

.btn-gallery{
    border:2px solid #6f7418;
    color:#6f7418;
}

.btn-home:hover{
    background:#555b10;
}

.btn-gallery:hover{
    background:#6f7418;
    color:#fff;
}

@media(max-width:768px){

.thankyou-card{
padding:45px 25px;
}

.thankyou-card h1{
font-size:40px;
}

.thankyou-card h2{
font-size:22px;
}

.thankyou-info{
grid-template-columns:1fr;
}

}
.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#1EBE5D;
    color:#fff;
}
.thankyou-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-btns a.btn-whatsapp i {
    font-size: 24px;
}

.thankyou-btns a.btn-whatsapp {
}

.thankyou-btns a.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-home:hover {
    color: #fff;
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #696f1d !important;
    border-color: #696f1d !important;
}