:root {
    --primary-color: #008080;
    --primary-dark: #006666;
    --primary-light: #00a3a3;
    --secondary-color: #ff6b6b;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #fff;
    --black-color: #000;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.loader-dot:nth-child(4) {
    animation-delay: 0.6s;
}

.loader-dot:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
}

.navbar-brand .logo {
    height: 60px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}


.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
}
.hero-section {
    padding: 100px 0;
    background-color: #008080bf;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

.hero-buttons {
    margin-top: 30px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.benefits-section {
    padding: 80px 0;
}

.benefit-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.treatment-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.treatment-image {
    height: 200px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.1);
}

.treatment-content {
    padding: 25px;
}

.treatment-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.treatment-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}
.testimonials-section {
    padding: 80px 0;
    background-color: #f8fafa;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}
.author-info h5 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.slick-prev, .slick-next {
  width: 25px;
  height: 25px;
  z-index: 999;
}

.slick-prev:before, .slick-next:before {
  font-size: 25px;
  color: #008080;
  opacity: 1;
}

.slick-prev:hover:before, .slick-next:hover:before {
  color: #005f5f; 
}
.slick-prev {
  left: -45px;
}
.slick-next {
  right: -45px;
}
.star-rating {
  font-size: 20px;
  color: orange;
  letter-spacing: 2px;
}

.cta-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 60px 0;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-content h3 a {
    color: var(--dark-color);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}
.faq-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1rem;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}
.footer {
    background-color: #222;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about {
    color: #aaa;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ccc;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #008080;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-newsletter-text {
    color: #aaa;
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white-color);
    height: 50px;
}

.newsletter-form .form-control::placeholder {
    color: #aaa;
}

.newsletter-form .btn {
    height: 50px;
    padding: 0 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-bottom-links li {
    margin-left: 15px;
}

.footer-bottom-links a {
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #008080;
}
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .footer .col-lg-4 {
        margin-top: 30px;
    }
}
.page-hero-section {
    padding: 80px 0 60px;
    background-color: #008080bf;
    text-align: center;
}

.page-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--gray-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}
.about-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.experience-years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.8rem;
    line-height: 1.2;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.feature-item h5 {
    margin-bottom: 5px;
}
.team-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border: 5px solid rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    border-color: var(--primary-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0, 128, 128, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.mission-item {
    display: flex;
    margin-bottom: 25px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mission-text h4 {
    margin-bottom: 10px;
}
.menu-filter-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -10px;
    justify-content: center;
}

.filter-item {
    padding: 8px 20px;
    margin: 5px;
    background-color: var(--white-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.filter-item.active, .filter-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.menu-item-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-title {
    margin: 0;
    font-size: 1.2rem;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
}

.menu-item-content {
    padding: 20px;
}

.menu-item-description {
    margin-bottom: 15px;
}

.menu-item-ingredients {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.menu-item-ingredients li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.menu-item-ingredients li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 5px;
    top: -2px;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-duration {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.menu-item-duration i {
    margin-right: 5px;
}

.menu-category-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.menu-category-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.menu-category-description {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.addon-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.addon-card:hover .addon-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}
.pricing-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.featured .pricing-footer .btn {
    background-color: var(--primary-dark);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 30px;
    text-align: center;
}

.pricing-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 2.5rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-features .fa-check {
    color: var(--primary-color);
}

.pricing-features .fa-times {
    color: #ccc;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.package-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.package-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    text-align: center;
}

.package-title {
    font-size: 1.3rem;
    margin: 0;
}

.package-body {
    padding: 25px;
    text-align: center;
}

.package-price {
    margin-bottom: 20px;
}

.package-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .original-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--gray-color);
    margin-left: 10px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.benefit-item {
    display: flex;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 10px;
}
.booking-steps {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.booking-steps:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #eee;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.step-text {
    font-weight: 600;
    color: var(--gray-color);
}

.step.active .step-text {
    color: var(--dark-color);
}

.booking-form-container {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.booking-step-subtitle {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.treatment-radio {
    display: none;
}

.treatment-option {
    display: block;
    background-color: var(--white-color);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.treatment-option h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.treatment-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.treatment-meta {
    display: flex;
    justify-content: space-between;
}

.treatment-price {
    font-weight: 700;
    color: var(--primary-color);
}

.treatment-duration {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.treatment-radio:checked + .treatment-option {
    border-color: var(--primary-color);
    background-color: rgba(0, 128, 128, 0.05);
}

.booking-step-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.prev-step {
    margin-right: 15px;
}

.booking-confirmation {
    padding: 30px 0;
}

.confirmation-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.confirmation-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.confirmation-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.confirmation-details {
    max-width: 400px;
    margin: 0 auto 30px;
    text-align: left;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
}

.detail-label {
    font-weight: 600;
    width: 120px;
}

.detail-value {
    flex: 1;
}

.confirmation-actions {
    margin-top: 30px;
}
.faq-search .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.faq-search .btn {
    padding-left: 25px;
    padding-right: 25px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.faq-category-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.faq-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1rem;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

.faq-support {
    padding: 30px;
    background-color: rgba(0, 128, 128, 0.05);
    border-radius: 15px;
    border: 1px dashed var(--primary-color);
}
.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h5 {
    margin-bottom: 5px;
}

.contact-social .social-icons {
    margin-top: 15px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.contact-social .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-form-container {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control, .form-select {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 128, 128, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

#contact-map {
    width: 100%;
    height: 400px;
    background-color: #eee;
}
.blog-search .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.blog-search .btn {
    padding-left: 25px;
    padding-right: 25px;
}

.sidebar-widget {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.category-list a.active, .category-list a:hover {
    background-color: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
}

.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

.popular-posts .post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.popular-posts .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-posts .post-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.popular-posts a:hover h4 {
    color: var(--primary-color);
}

.popular-posts .post-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50px;
    margin: 5px;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tags a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.blog-post-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.post-image {
    position: relative;
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-title a {
    color: var(--dark-color);
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.pagination .page-item .page-link {
    color: var(--dark-color);
    border-radius: 50px;
    margin: 0 5px;
    border: none;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pagination .page-item:not(.active) .page-link:hover {
    background-color: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
}
.blog-article {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.article-meta span {
    margin-right: 15px;
    margin-bottom: 5px;
}

.article-category {
    background-color: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
    padding: 3px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.article-image {
    overflow: hidden;
    border-radius: 15px;
}

.article-image img {
    transition: all 0.5s ease;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2, .article-content h3, .article-content h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 1.8rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content h4 {
    font-size: 1.3rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-quote {
    margin: 30px 0;
    padding: 30px;
    background-color: rgba(0, 128, 128, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
}

.article-quote blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.2rem;
}

.article-quote footer {
    margin-top: 15px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.article-table {
    margin: 30px 0;
    overflow-x: auto;
}

.article-table table {
    width: 100%;
    border-collapse: collapse;
}

.article-table th, .article-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.article-table th {
    background-color: rgba(0, 128, 128, 0.1);
    color: var(--dark-color);
    font-weight: 600;
}

.article-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.application-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.application-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.application-card h4 {
    margin-bottom: 10px;
}

.article-cta {
    margin: 40px 0;
}

.article-tags {
    margin-top: 40px;
}

.tags-label {
    font-weight: 600;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.article-author-box {
    margin: 40px 0;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.author-name {
    margin-bottom: 10px;
}

.author-bio {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0, 128, 128, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.article-navigation {
    margin-top: 40px;
}

.related-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.related-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.related-article-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-article-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-content h4 a {
    color: var(--dark-color);
}

.related-content h4 a:hover {
    color: var(--primary-color);
}

.related-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.related-comments i {
    margin-right: 5px;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.comments-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.comment-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-author-info h5 {
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.comment-content {
    margin-bottom: 15px;
}

.comment-reply {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.comment-reply-item {
    margin-top: 30px;
    margin-left: 75px;
    padding-left: 30px;
    border-left: 2px solid #eee;
}

.comment-form {
    margin-top: 40px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}
@media (max-width: 991.98px) {
    .page-hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .blog-post-card .row {
        flex-direction: column;
    }
    
    .post-image {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .comment-reply-item {
        margin-left: 30px;
    }
}

@media (max-width: 575.98px) {
    .page-hero-title {
        font-size: 1.6rem;
    }
    
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-steps:before {
        display: none;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .article-navigation a {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .article-navigation a:last-child {
        margin-bottom: 0;
    }
}
.legal-section {
    background-color: #f8fafa;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}
#current-date {
    font-weight: 600;
    color: var(--primary-color);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.preloader {
  animation: fadeOut 1s ease-in-out 3s forwards;
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

.loader-dot {
  animation: bounce 1.5s infinite ease-in-out;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
.hero-title { 
  animation: fadeIn 1s ease-out 0.5s both; 
}
.hero-subtitle { 
  animation: fadeIn 1s ease-out 1s both; 
}
.hero-image { 
  animation: float 6s ease-in-out infinite; 
  border-radius: 10px;
}
.treatment-card {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}
.treatment-card:nth-child(1) { animation-delay: 0.3s; }
.treatment-card:nth-child(2) { animation-delay: 0.6s; }
.treatment-card:nth-child(3) { animation-delay: 0.9s; }
.btn-primary:hover {
  animation: pulse 1.5s infinite;
}
.back-to-top {
  position: fixed;
  bottom: -60px; 
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
  cursor: pointer;
  border: none;
  outline: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
  animation: fadeInUp 0.5s ease-out;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.4);
  color:#fff;
}

.back-to-top:active {
  transform: translateY(-1px) scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    right: 20px;
    bottom: 20px;
  }
}
@media (min-width: 992px) { 
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0; 
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .navbar .dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    display: none;
  }
  
  .navbar .dropdown.show .dropdown-menu {
    display: block;
  }
}
.navbar .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: 0.15em;
  content: "";
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
  transition: transform 0.3s ease;
}
.navbar-nav > .nav-item:not(.dropdown) > .nav-link {
  position: relative;
}

.navbar-nav > .nav-item:not(.dropdown) > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--active-color, #006666);
  transition: width 0.3s ease;
}

.navbar-nav > .nav-item:not(.dropdown) > .nav-link:hover::after,
.navbar-nav > .nav-item:not(.dropdown) > .nav-link.active::after {
  width: 100%;
}

.btnoutline{color: #fff;
  border-color: #fff;}.fs18{font-size:20px !important;}
  .sc-fs{font-size:1.2rem !important; margin-bottom:0px;}
  .custom-dot {
  font-size: 10px !important;
  color: #008080;
}
.fs1{font-size:1.1rem !important;}
.error-section {
min-height: 70vh;
display: flex;
align-items: center;
background-color: #f8fafa;
}
.error-content {
text-align: center;
padding: 40px;
}
.error-code {
font-size: 8rem;
font-weight: 800;
color: var(--primary-color);
line-height: 1;
margin-bottom: 20px;
}
.error-message {
font-size: 2rem;
margin-bottom: 20px;
}
.error-actions {
margin-top: 30px;
}