* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #fb1958;
    --secondary: #169c99;
    --accent: #FFD23F;
    --purple: #8E5CF7;
    --green: #39D98A;
    --orange: #FF8A34;
    --dark: #001945;
    --text: #222;
    --light: #FFF8F4;
    --white: #ffffff;
    --border: #EFEFEF;
    --heading-font: 'Baloo 2', cursive;
    --body-font: 'Poppins', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --radius: 18px;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
    text-decoration: none;
}

p,
ul,
li {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Baloo 2', cursive;
    color: var(--dark);
    font-weight: 700;
}

/*==========================
        HEADER
==========================*/

header {
    position: relative;
    z-index: 999;
    font-family: var(--body-font);
}

header .headermn {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
    transition: .4s;
}

/* header .navbar{
    min-height:90px;
} */

header .navbar-brand {
    width: 100px;
}

header .navbar-brand img {
    width: 100%;
}

/* Menu */

header .navbar-nav {
    gap: 28px;
}

header .nav-link {
    position: relative;
    padding: 0 !important;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: .35s;
}

header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 30px;
    background: var(--primary);
    transition: .35s;
}

header .nav-link:hover,
header .nav-link.active {
    color: var(--primary);
}

header .nav-link:hover::after,
header .nav-link.active::after {
    width: 100%;
}

/* Button */

/* header .whatsapp{
    margin-left:25px;
} */

header .whatsapp li a {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
}

header .whatsapp li a:hover {
    transform: translateY(-4px);
    color: var(--white);
    background-color: var(--dark);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
}

/* Sticky */

.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, .96);
    /* backdrop-filter:blur(12px); */
    animation: slideDown .4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

@keyframes slideDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}

/* Toggle */

header .navbar-toggler {
    border: none;
    padding: 0;
    font-size: 28px;
    color: var(--primary);
}

header .navbar-toggler:focus {
    box-shadow: none;
}

/* Offcanvas */

header .offcanvas {
    background: var(--white);
}

header .offcanvas-header {
    border-bottom: 1px solid var(--border);
}

header .offcanvas-title img {
    width: 150px;
}

header .btn-close {
    box-shadow: none;
}

/* Dropdown */

header .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 12px 0;
}

header .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark);
    transition: .3s;
}

header .dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary)
}

/* footer */

/* footer {
  background-image: url(../images/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
} */
footer {
    overflow: hidden;
}

footer .footertop {
    overflow: hidden;
    background: var(--dark);
}

footer .footertop {

    background: var(--dark);
    padding: 30px 0;
}

footer .row {
    row-gap: 25px;
}

footer .footertop h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600
}

footer .footertop .about img {
    width: 100px;
    margin-bottom: 5px;
}

footer .footertop .about p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

footer .footertop ul {
    list-style: none;
}

footer .footertop ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

footer .footertop ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    transition: .3s;
    border-bottom: 1px solid transparent;
}

footer .footertop ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}


footer .footertop .addres li {
    margin-bottom: 10px;
}

footer .footertop .addres li i {
    color: var(--primary);
    font-size: 18px;
}

footer .footerboo {
    background-color: var(--dark);
    padding: 20px;
    border-top: 2px dashed #fdf1f4;
    text-align: center;
}

footer .footerboo p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}


footer .footerboo a {
    color: var(--primary);
}



/*==============================
 Follow
===============================*/

footer .follow-us {

    margin-top: 20px;
    text-align: center;

}

footer .follow-us h4 {

    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;

}

footer .social-links {
    display: flex;
    gap: 12px;

}

footer .social-links a {

    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
    font-size: 17px;

}

footer .social-links a:nth-child(1) {

    background: #1877f2;

}

footer .social-links a:nth-child(2) {

    background: #e1306c;

}

footer .social-links a:nth-child(3) {

    background: #ff0000;

}

footer .social-links a:nth-child(4) {

    background: #25d366;

}

footer .social-links a:hover {

    transform: translateY(-4px);

}

/* quickcontact */

.quickcontact {
    width: 45px;
    position: fixed;
    top: 65%;
    right: 15px;
    z-index: 102;
}




/* slider */
#slider .owl-theme .owl-dots .owl-dot {
    display: none;
}

#slider button.owl-prev {
    position: absolute;
    text-align: center;
    padding: 0px;
    color: var(--primary);
    top: 50%;
    font-size: 25px;
    left: 15px;
    background-color: #ffffff7a;
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

#slider button.owl-next {
    position: absolute;
    text-align: center;
    padding: 0px;
    color: var(--primary);
    top: 50%;
    font-size: 25px;
    right: 15px;
    background-color: #ffffff7a;
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

#slider button.owl-prev span,
#slider button.owl-next span {
    bottom: 2px;
    position: relative;
}



/* scroll-top css============================= */
#scrollTopBtn {
    position: fixed;
    bottom: 17px;
    right: 15px;
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color .3s ease
}

#scrollTopBtn:hover {
    background: var(--dark)
}

#scrollTopBtn.show {
    display: flex
}


#enquiryModal .modal-dialog {
    max-width: 420px;
}

#enquiryModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

#enquiryModal .modal-header {
    background: var(--primary);
    color: #fff;
    padding: 15px 20px;
    border: none;
}

#enquiryModal .modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

#enquiryModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#enquiryModal .modal-body {
    padding: 25px;
}

#enquiryModal .form-control {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: none;
    font-size: 15px;
}

#enquiryModal textarea.form-control {
    height: 110px;
    resize: none;
}

#enquiryModal .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 18px 35px rgba(255, 79, 139, .35);
}

#enquiryModal .submit {
    height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25)
}

#enquiryModal .submit:hover {
    background: var(--dark);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25)
}

#about {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/*====================
LEFT
====================*/

#about .about-image {
    position: relative;
}

#about .about-image .main-img {
    width: 100%;
}

#about .about-image .teddy {
    position: absolute;
    left: -20px;
    bottom: -10px;
    width: 140px;
}

#about .about-image .rings {
    position: absolute;
    left: 120px;
    bottom: 5px;
    width: 70px;
}

#about .sub-title {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;
}

/* Left Arrow */

#about .sub-title::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-left.png") center/contain no-repeat;
}

/* Right Arrow */

#about .sub-title::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-right.png") center/contain no-repeat;
}

#about h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#about h2 span {
    color: var(--primary);
}

#about p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
}

#about .theme-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25)
}

#about .theme-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
    background-color: var(--dark);
}

#about::after {
    content: "";
    position: absolute;
    bottom: 80px;
    right: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-1.png) center / contain no-repeat;
}


/*=========================
      Categories
=========================*/

#categories {
    padding: 40px 0;
    background: #fefbf8;
    position: relative;
    overflow: hidden;
}

#categories::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-2.png) center / contain no-repeat;
}


#categories .section-title {
    margin-bottom: 50px;
}

#categories .sub-title {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;
}

#categories .sub-title::before {

    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-left.png") center/contain no-repeat;

}

#categories .sub-title::after {

    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-right.png") center/contain no-repeat;

}

#categories h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#categories h2 span {
    color: var(--primary);
}

#categories .category-box {

    text-align: center;
    transition: .4s;
    padding: 10px 0;
}

#categories .category-img {

    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    background: #f8fbff;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

#categories .category-img img {

    width: 85px;
    transition: .4s;
}

#categories .category-box h5 {

    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

#categories .category-box:hover .category-img {

    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    border-color: var(--primary);
}

#categories .category-box:hover img {

    transform: scale(1.08);
}

#categories .owl-stage {

    display: flex;
    align-items: center;
}

#categories .owl-carousel .owl-dots.disabled,
#categories .owl-carousel .owl-nav.disabled {
    display: block;
}

#categories .owl-nav {

    margin-top: 30px;
    text-align: center;
}

#categories .owl-nav button {

    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: var(--dark) !important;
    margin: 0 6px;
    transition: .3s;
}

#categories .owl-nav button:hover {

    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;

}




/* gallery */
#gallery {
    padding: 40px 0;
    background: #fefbf8;
    position: relative;
    overflow: hidden;
}

#gallery::after {
    content: "";
    position: absolute;
    top: 80px;
    right: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-1.png) center / contain no-repeat;
}

#gallery .row {
    row-gap: 20px;
}


#gallery .section-head .subtitle {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;


}

#gallery .section-head .subtitle::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-left.png") center/contain no-repeat;

}

#gallery .section-head .subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-right.png") center/contain no-repeat;

}

#gallery .section-head h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#gallery .section-head h2 span {
    color: var(--primary);
}


#gallery .section-head {
    /* margin-bottom: 30px; */
    position: relative;
}


#gallery .gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: #000;
}

#gallery .gallery-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

#gallery .gallery-item:hover img {
    transform: scale(1.08);
    opacity: .8;
}


#gallery .gallery-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25)
}

#gallery .gallery-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
    background-color: var(--dark);
}


#gallery .video-wrapper {
 width:600px;
 height:450px;
 margin:0 auto;
}
#gallery .video-wrapper video{
 width:100%;
 height:100%
}
/*=========================
Gallery Tabs
=========================*/

#gallery .gallery-tabs {
    margin: 10px 0 20px;
}

#gallery .gallery-tabs .nav {
    gap: 15px;
}

#gallery .gallery-tabs .nav-item {
    margin: 0;
}

#gallery .gallery-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #f1f1f1;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: .35s;
}

#gallery .gallery-tabs .nav-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: .35s;
}

#gallery .gallery-tabs .nav-link:hover {
    background: #ffe8f0;
    color: var(--primary);
    border-color: var(--primary);
}

#gallery .gallery-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
}


/*=========================
Tab Content
=========================*/

#gallery .tab-content {
    margin-top: 40px;
}


/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    #gallery .gallery-tabs .nav {

        justify-content: center;

    }

    #gallery .gallery-item img {

        height: 240px;

    }

}



#why-choose {
    padding: 30px 0;
    background: #fefbf8;
}

#why-choose .why-box {
    background: #fff8ef;
    border: 1px solid #ffe6bf;
    border-radius: 30px;
    padding: 30px 15px;
    position: relative;
}

#why-choose .section-heading {
    text-align: center;
}

#why-choose .section-heading .star-icon {
    position: absolute;
    top: 18px;
    left: 45px;
    color: #ffb400;
    font-size: 22px;
}

#why-choose .section-heading h2 {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#why-choose .section-heading h2 span {
    color: var(--primary);
}


#why-choose .side-img {
    max-width: 100%;
    width: 200px;
}

#why-choose .why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

#why-choose .why-item i {
    font-size: 30px;
    flex-shrink: 0;
}

#why-choose .why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

.orange {
    color: #ff8c00;
}

.blue {
    color: #14b9d5;
}

.purple {
    color: #b54cff;
}

.pink {
    color: #ff4f8b;
}

.yellow {
    color: #f5a300;
}


/*==============================
 CONTACT SECTION
===============================*/

#contact-section {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}


#contact-section::after {
    content: "";
    position: absolute;
    bottom: 125px;
    right: 45px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-1.png) center / contain no-repeat;
}

#contact-section::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-2.png) center / contain no-repeat;
}

#contact-section .container {
    position: relative;
}

#contact-section .contact-left-img {
    text-align: center;
}

#contact-section .contact-left-img img {
    max-width: 350px;
    transition: .4s;
}

/* #contact-section .contact-left-img img:hover{
    transform:scale(1.05);
} */

/*==============================
 Heading
===============================*/

#contact-section .contact-title {
    margin-bottom: 25px;
}

#contact-section .contact-title span {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    /* margin-bottom: 15px; */
    padding: 0 70px;
}

#contact-section .contact-title span::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-left.png) center / contain no-repeat;
}

#contact-section .contact-title span::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-right.png) center / contain no-repeat;
}

#contact-section .contact-title span img {
    width: 42px;
}

#contact-section .contact-title h2 {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.6;
}

/*==============================
 Form
===============================*/

#contact-section form {
    margin-top: 20px;
}

#contact-section .form-control,
#contact-section .form-select {

    height: 52px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    font-size: 15px;
    padding: 12px 18px;
    color: var(--text);
    transition: .3s;

}

#contact-section textarea.form-control {

    height: 120px;
    resize: none;
    padding-top: 15px;

}

#contact-section .form-control:focus,
#contact-section .form-select:focus {

    border-color: var(--primary);
    box-shadow: none;

}

/*==============================
 Button
===============================*/

#contact-section .contact-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
    border: none;

}

#contact-section .contact-btn i {

    margin-left: 8px;

}

#contact-section .contact-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
    background-color: var(--dark);
}

#contact-section .contact-info {
    background: #fff8ef;
    border: 1px solid #ffe6bf;
    border-radius: 30px;
    padding: 35px 15px;
    position: relative;
}

#contact-section .contact-info::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: -60px;
    width: 120px;
    height: 130px;
    background: url("../images/enquiry-right.png") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

#contact-section .contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#contact-section .contact-info ul li {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 22px;
}

#contact-section .contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

#contact-section .contact-icon i {
    font-size: 16px;
}

#contact-section .contact-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

#contact-section .contact-text a {
    color: var(--dark);
    text-decoration: none;
    transition: .3s;
}

#contact-section .contact-text a:hover {
    color: var(--primary);
}

#contact-section .follow-us {
    margin-top: 20px;
    text-align: center;
}

#contact-section .follow-us h4 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

#contact-section .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

#contact-section .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
    font-size: 17px;
}

#contact-section .social-links a:nth-child(1) {
    background: #1877f2;
}

#contact-section .social-links a:nth-child(2) {
    background: #e1306c;
}

#contact-section .social-links a:nth-child(3) {
    background: #ff0000;
}

#contact-section .social-links a:nth-child(4) {
    background: #25d366;
}

#contact-section .social-links a:hover {
    transform: translateY(-4px);
}



#testimonial {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

#testimonial::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-2.png) center / contain no-repeat;
}


#testimonial .section-head .subtitle {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;


}

#testimonial .section-head .subtitle::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-left.png") center/contain no-repeat;

}

#testimonial .section-head .subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-right.png") center/contain no-repeat;

}

#testimonial .section-head h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#testimonial .section-head h2 span {
    color: var(--primary);
}


#testimonial .section-head {
    margin-bottom: 30px;
    position: relative;
}



#testimonial .testimonial-item {

    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(3, 26, 68, .08);
    transition: .35s;
    margin: 10px;

}

#testimonial .testimonial-item:hover {
    transform: translateY(-8px);
}

#testimonial .rating {
    /* text-align:center; */
    margin-bottom: 20px;
}

#testimonial .rating i {
    color: var(--dark);
    margin: 0 2px;
}

#testimonial .para {
    height: 150px;
    overflow-y: auto;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
    padding-right: 8px;


    scrollbar-width: thin;
    scrollbar-color: var(--primary) #F2F2F2;
}

/* Chrome, Edge & Safari */
#testimonial .para::-webkit-scrollbar {
    width: 7px;
}

#testimonial .para::-webkit-scrollbar-track {
    background: #F2F2F2;
    border-radius: 10px;
}

#testimonial .para::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 1px solid #F2F2F2;
}

#testimonial .para::-webkit-scrollbar-thumb:hover {
    background: #ff2f73;
}

#testimonial .user {
    display: flex;
    align-items: center;
    gap: 12px;
}

#testimonial .user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

#testimonial .user h5 {
    margin: 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}


/* NAV */

#testimonial .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1) !important;
    position: absolute;
    top: 45%;
}

#testimonial .owl-nav .owl-prev {
    left: -60px;
}

#testimonial .owl-nav .owl-next {
    right: -60px;
}

#testimonial .owl-nav i {
    color: var(--dark);
}

/* DOTS */

#testimonial .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 25px;
}

#testimonial .owl-dot {
    display: inline-block !important;
}

#testimonial .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: #d9d9d9 !important;
    transition: .3s;
}

#testimonial .owl-dot.active span {
    width: 30px;
    border-radius: 20px;
    background: var(--primary) !important;
}

#blogs {
    padding: 40px 0;
    background: #fefbf8;
    position: relative;
    overflow: hidden;
}

#blogs::after {
    content: "";
    position: absolute;
    top: 80px;
    right: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-1.png) center / contain no-repeat;
}

#blogs .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}


#blogs .left-title img {
    width: 32px;
}

#blogs .left-title .subtitle {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    /* margin-bottom: 15px; */
    padding: 0 70px;
}

#blogs .left-title .subtitle::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-left.png) center / contain no-repeat;
}

#blogs .left-title .subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-right.png) center / contain no-repeat;
}

#blogs .left-title h2 {
    display: block;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#blogs .left-title h2 span {
    color: var(--primary);
}

#blogs .view-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
}

#blogs .view-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    background-color: var(--dark);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
}

#blogs .blog-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(3, 26, 68, .08);
    transition: .35s;
    margin: 8px;
}

#blogs .blog-box:hover {
    transform: translateY(-8px);
}

#blogs .blog-img {
    overflow: hidden;
}

#blogs .blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

#blogs .blog-box:hover img {
    transform: scale(1.08);
}

#blogs .blog-content {
    padding: 22px;
}

#blogs .blog-content span {
    color: #888;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

#blogs .blog-content span i {
    color: var(--primary);
    margin-right: 5px;
}

#blogs .blog-content h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
}

#blogs .blog-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: .3s;
}

#blogs .blog-content h3 a:hover {
    color: var(--primary);
}

/* Owl */

#blogs .owl-stage {
    display: flex;
}

#blogs .owl-item {
    display: flex;
    padding: 10px 0;
}

#blogs .blog-box {
    height: 100%;
}

#blogs .owl-nav {
    display: none;
}

#blogs .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 25px;
}

#blogs .owl-dot {
    display: inline-block !important;
}

#blogs .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: #d9d9d9 !important;
    transition: .3s;
}

#blogs .owl-dot.active span {
    width: 30px;
    border-radius: 20px;
    background: var(--primary) !important;
}

/*==================================
FEATURED PRODUCTS
==================================*/

#featured-products {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

#featured-products .section-title {
    text-align: center;
    margin-bottom: 45px;
}

#featured-products .section-title .subtitle {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;
}

#featured-products .section-title .subtitle::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-left.png) center / contain no-repeat;
}

#featured-products .section-title .subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-right.png) center / contain no-repeat;
}

#featured-products .section-title h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#featured-products .section-title h2 span {
    color: var(--primary);
}


/*=============================
Product Card
=============================*/

#featured-products .product-box {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ececec;
    transition: .4s;
    margin: 8px;
}

#featured-products .product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(3, 26, 68, .12);
}

/*=============================
Sale Badge
=============================*/

#featured-products .sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}

/*=============================
Image
=============================*/

#featured-products .product-image {
    /* background:#fafafa;
    padding:20px; */
    overflow: hidden;
}

#featured-products .product-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: .4s;
}

#featured-products .product-box:hover .product-image img {
    transform: scale(1.08);
}

/*=============================
Content
=============================*/

#featured-products .product-content {
    padding: 18px;
    text-align: center;
    background: #fff8ef;
}

/* #featured-products .product-content h3{
    margin-bottom:10px;
    min-height:50px;
} */

#featured-products .product-content h3 a {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
    color: (var(--dark));
    text-decoration: none;
    line-height: 1.5;
    transition: .3s;
}

#featured-products .product-content h3 a:hover {
    color: var(--primary);
}

/*=============================
Price
=============================*/

#featured-products .price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

#featured-products .new-price {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}

#featured-products del {
    color: #333;
    font-size: 15px;
}

/*=============================
Button
=============================*/

#featured-products .cart-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
}

#featured-products .cart-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    background-color: var(--dark);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
}

/*=============================
Owl Nav
=============================*/

#featured-products .owl-nav button {
    position: absolute;
    top: 42%;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12) !important;
    transition: .3s;
}

#featured-products .owl-nav button:hover {
    background: var(--primary) !important;
}

#featured-products .owl-nav button:hover i {
    color: #fff;
}

#featured-products .owl-nav .owl-prev {
    left: -65px;
}

#featured-products .owl-nav .owl-next {
    right: -65px;
}

#featured-products .owl-nav i {
    color: var(--dark);
    font-size: 16px;
}

/*=============================
Dots
=============================*/

#featured-products .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 25px;
}

#featured-products .owl-dot {
    display: inline-block !important;
}

#featured-products .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: #d9d9d9 !important;
    transition: .3s;
}

#featured-products .owl-dot.active span {
    width: 30px;
    border-radius: 20px;
    background: var(--primary) !important;
}

/*=============================
Responsive
=============================*/

@media(max-width:1199px) {

    #featured-products .owl-nav {
        display: none;
    }

}

@media(max-width:767px) {



    #featured-products .product-content {
        padding: 15px;
    }


    #featured-products .cart-btn {
        width: 100%;
        justify-content: center;
    }

}



#blog-page {
    padding: 40px 0;
    background: #fefbf8;
    position: relative;
    overflow: hidden;
}

#blog-page::after {
    content: "";
    position: absolute;
    top: 80px;
    right: 70px;
    width: 60px;
    height: 60px;
    background: url(../images/decor-1.png) center / contain no-repeat;
}

#blog-page .section-title {
    text-align: center;
    margin-bottom: 35px;
}


#blog-page .left-title img {
    width: 32px;
}

#blog-page .left-title .subtitle {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    /* margin-bottom: 15px; */
    padding: 0 70px;
}

#blog-page .left-title .subtitle::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-left.png) center / contain no-repeat;
}

#blog-page .left-title .subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-right.png) center / contain no-repeat;
}

#blog-page .left-title h2 {
    display: block;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#blog-page .left-title h2 span {
    color: var(--primary);
}

#blog-page .view-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
}

#blog-page .view-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    background-color: var(--dark);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
}

#blog-page .blog-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(3, 26, 68, .08);
    transition: .35s;
    margin: 8px;
}

#blog-page .blog-box:hover {
    transform: translateY(-8px);
}

#blog-page .blog-img {
    overflow: hidden;
}

#blog-page .blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

#blog-page .blog-box:hover img {
    transform: scale(1.08);
}

#blog-page .blog-content {
    padding: 22px;
}

#blog-page .blog-content span {
    color: #444;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

#blog-page .blog-content span i {
    color: var(--primary);
    margin-right: 5px;
}

#blog-page .blog-content h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
}

#blog-page .blog-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: .3s;
}

#blog-page .blog-content h3 a:hover {
    color: var(--primary);
}

/*==========================
Breadcrumb
==========================*/

#breadcrumb-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    background: url("../images/breadcrumb.png") center center no-repeat;
    background-size: cover;
}



#breadcrumb-section .breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 8px 18px;
    margin: 0 0 20px;
    background: #ffe6ef;
    border-radius: 30px;
}

#breadcrumb-section .breadcrumb-list li {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

#breadcrumb-section .breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
}

#breadcrumb-section .breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
}

#breadcrumb-section h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#breadcrumb-section h2 span {
    color: var(--primary);
}


#breadcrumb-section p {
    color: var(--text);
    line-height: 1.7;
    font-size: 18px;
}

/*==========================
WHY PARENTS
==========================*/

#why-parents {
    padding: 40px 0;
    background: #fefbf8;
    position: relative;
    overflow: hidden;
}


/* Decorative Stars */

#why-parents::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 30px;
    width: 100px;
    height: 78px;
    background: url(../images/decor-1.png) center no-repeat;
    background-size: contain;
}

#why-parents::after {
    content: "";
    position: absolute;
    right: 48px;
    bottom: 62px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
}

/* Heading */

#why-parents .subtitle {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;
}

#why-parents .subtitle::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-right.png) center / contain no-repeat;
}

#why-parents .subtitle::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-left.png) center / contain no-repeat;
}

#why-parents h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
    line-height: 1.2;
}

#why-parents h2 span {
    color: var(--primary);
}

/* Feature */

#why-parents .feature-box {
    text-align: center;
}

#why-parents .feature-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ececec;
    transition: .35s;
}

#why-parents .feature-icon img {
    width: 55px;
    transition: .35s;
}

#why-parents .feature-box:hover .feature-icon {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 79, 139, .18);
}

#why-parents .feature-box:hover .feature-icon img {
    transform: scale(1.08);
}

#why-parents .feature-box h4 {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
}


/*==========================
Counter Section
==========================*/

#counter-section {
    padding: 40px 0;
}

#counter-section .container {
    background: linear-gradient(90deg, #fefbf8, #fefbf8);
    border: 1px solid #fde8ee;
    border-radius: 28px;
    overflow: hidden;
}

#counter-section .counter-box {
    text-align: center;
    padding: 45px 20px;
    position: relative;
    border-right: 2px dashed #ffbfd3;
    transition: .35s;
}

#counter-section .counter-box:hover {
    background: #fff;
}

#counter-section .counter-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 18px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 79, 139, .15);
}

#counter-section .counter-icon img{
       width: 45px;
    height: 45px;
}

#counter-section h2 {
    color: var(--primary);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

#counter-section h5 {
    margin: 0;
    color: #031A44;
    font-size: 19px;
    font-weight: 700;
}

#counter-section .border-0 {
    border-right: none;
}



/*==================================
MISSION & VISION
==================================*/

/*====================================
MISSION & VISION
====================================*/

#mission-vision {
    padding: 40px 0;
    overflow:hidden;
}

/* Equal Height */

#mission-vision .mission-wrapper {
    display: flex;
    align-items: stretch;
}

#mission-vision .col-lg-6 {
    display: flex;
}

/*==========================
Left Box
==========================*/

#mission-vision .mission-box {
    width: 100%;
    height: 100%;
    background: #fefbf8;
    border: 1px solid #f3eeee;
    border-radius: 20px 0 0 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(3, 26, 68, .06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mission-vision .mission-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

#mission-vision .mission-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3f7;
    color: var(--primary);
    font-size: 28px;
}

#mission-vision .mission-icon.vision {
    background: #eefbff;
    color: var(--secondary);
}

#mission-vision .mission-content h3 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

#mission-vision .mission-content p {
    color: var(--text);
    line-height: 1.7;
    font-size: 18px;
    margin: 0;
}

#mission-vision .divider {
    border-top: 2px dashed #ffc3d6;
    margin: 35px 0;
}

/*==========================
Right Image
==========================*/

#mission-vision .mission-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

#mission-vision .mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 20px 20px 0;
    transition: .4s;
}

#mission-vision .mission-image:hover img {
    transform: scale(1.05);
}

/* Bottom Decoration */

#mission-vision .mission-image::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 170px;
    height: 85px;
    background: var(--primary);
    border-radius: 120px 0 20px 0;
}


#contact-features {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
}

#contact-features .contact-features-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 28px;
    border-right: 1px solid #ececec;
}

#contact-features .contact-features-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#contact-features .contact-features-icon i {
    font-size: 28px;
}

#contact-features .pink {
    background: #ffe8f0;
}

#contact-features .pink i {
    color: #ff5c8d;
}

#contact-features .yellow {
    background: #fff3d8;
}

#contact-features .yellow i {
    color: #f4b400;
}

#contact-features .cyan {
    background: #dff9fb;
}

#contact-features .cyan i {
    color: #00b8c9;
}

#contact-features .purple {
    background: #efe4ff;
}

#contact-features .purple i {
    color: #8c5eff;
}

#contact-features .contact-features-content h5 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--dark);
}

#contact-features .contact-features-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

#contact-service-boxes {
    padding: 40px 0;
    background: #fff;
}

#contact-service-boxes .contact-service-wrapper {
    background: #fff8ef;
    border-radius: 24px;
    padding: 18px 15px;
    box-shadow: 0 12px 35px rgba(255, 90, 140, .08);
}

#contact-service-boxes .contact-service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 25px;
    border-right: 1px solid #ffd2df;
    height: 100%;
}

#contact-service-boxes .contact-service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 90, 140, .15);
}

#contact-service-boxes .contact-service-icon img {
    width: 45px;
}

#contact-service-boxes .contact-service-content h5 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--dark);
}

#contact-service-boxes .contact-service-content p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
}

#contact-service-boxes .border-0 {
    border-right: none !important;
}


#contact-map {
    padding: 40px 0 0;
    background: #fff;
}

#contact-map .contact-map-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

#contact-map .contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(8%);
}



#blog-detail {
    padding: 40px 0;
    background: #fff;
    position: relative;
}

/* Blog Image */
#blog-detail imgs {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog Heading */
#blog-detail h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#blog-detail h3 {
    font-size: 26px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
    line-height: 1.2;
}

/* Post Meta (Author & Date) */
#blog-detail .post-meta {
    font-size: 20px;
    color: #222;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#blog-detail .post-meta i {
    margin-right: 0.35rem;
    color: var(--primary);
}

#blog-detail .post-meta .author,
#blog-detail .post-meta .date {
    display: flex;
    align-items: center;
}

/* Paragraphs */
#blog-detail article p {
    color: #444;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 10px;
}

/* Sidebar Styling */
#blog-detail .sidebar {
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 18px;
    box-shadow: 0 4px 15px var(--primary);
    padding: 22px 24px;
    position: sticky;
    top: 120px;
}

/* Sidebar Heading */
#blog-detail .sidebar h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    color: var(--primary);
}

/* Recent Posts */
#blog-detail .recent-post {
    transition: background-color 0.3s ease;
    padding: 8px 6px;
    border-radius: 6px;
    gap: 20px;
}


#blog-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    column-gap: 40px;
}

#blog-detail li {
    position: relative;
    padding-left: 38px;
    break-inside: avoid;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
}


#blog-detail li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 18px;
}

#blog-detail li:last-child {
    margin-bottom: 0;
}

#blog-detail .recent-post:hover {
    background-color: var(--primary);
    color: white;
}


/* Recent Post Images */
#blog-detail .recent-post img.post-thumb {
    border-radius: 6px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Recent Post Links */
#blog-detail .recent-post a {
    text-decoration: none;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

#blog-detail .recent-post:hover a {
    color: #ffffff;
    text-decoration: underline;
}

/* Date Text */
#blog-detail .recent-post small {
    font-size: 18px;
    color: #222;
    line-height: 1.6;
}



#room-overview {
    padding: 40px 0;
    background: #Fff;
    position: relative;
    overflow: hidden;
}


#room-overview .sub-title {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 70px;
}

#room-overview .sub-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-right.png) center / contain no-repeat;
}

#room-overview .sub-title::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/arrow-left.png) center / contain no-repeat;
}

#room-overview h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}




#room-overview .row {
    row-gap: 20px;
}

#room-overview p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
}

/* Gallery */

#room-overview .main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

#room-overview .main-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    transition: .5s;
}

#room-overview .main-image:hover img {
    transform: scale(1.05);
}

#room-overview .room-thumb-slider {
    position: relative;
    padding: 0 45px;
}

#room-overview .thumb {
    border-radius: 12px;
    overflow: hidden;
}

#room-overview .room-thumb-slider .thumb {
    cursor: pointer;
    padding: 4px;
}

#room-overview .thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #ffffff00;
    transition: .3s;
    background: #fff
}

#room-overview .thumb:hover img {
    transform: scale(1.05);
}

#room-overview .room-thumb-slider .thumb.current img {
    border-color: var(--primary);
}

#room-overview .room-thumb-slider .owl-nav {
    margin: 0;
}

#room-overview .room-thumb-slider .owl-prev,
#room-overview .room-thumb-slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: var(--primary) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 25px !important;
    margin: 0 !important;
    transition: .4s;
}

#room-overview .room-thumb-slider .owl-prev {
    left: -5px;
}

#room-overview .room-thumb-slider .owl-next {
    right: -5px;
}

#room-overview .room-thumb-slider .owl-prev:hover,
#room-overview .room-thumb-slider .owl-next:hover {
    background: var(--dark) !important;
}

#room-overview .room-thumb-slider .owl-stage {
    display: flex;
    align-items: center;
}

#room-overview .thumb-wrapper {
    margin-top: 10px;
}

#room-overview .gallery-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #06231b;
    color: #fff;
    transition: .4s;
    flex-shrink: 0;
}

#room-overview .gallery-btn:hover {
    background: #D4A84F;
}

#room-overview .theme-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(255, 79, 139, .25);
}

#room-overview .theme-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
    background-color: var(--dark);
    box-shadow: 0 12px 25px rgba(3, 26, 68, 0.25);
}



/*=============================
Price
=============================*/

#room-overview .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

#room-overview .new-price {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}

#room-overview del {
    color: #333;
    font-size: 15px;
}

#single-image-section {
    background: #fff;
}

#single-image-section .single-image-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#single-image-section .single-image-box img {
    width: 100%;
   height: 300px;
    object-fit: contain;
    display: block;
    transition: 0.4s ease;
}

#single-image-section .single-image-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
        #single-image-section .single-image-box img {
        height: 100%;
    }
}