:root {
    --primary-color: #e2c198;
    --primary-dark: #c9a873;
    --primary-light: #f3e3cf;
    --secondary-neutral: #f3e3cf;
    --light-bg: #f7efe6;
    --text-dark: #333333;
    --text-light: #666666;
    --soft-border: #e6d6c3;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navbar Styles */
.navbar {
    background: transparent;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: var(--white);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Carousel Styles - Optimized for All Resolutions */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Carousel base */
#heroCarousel {
    position: relative;
    width: 100%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    width: 100%;
}

/* Hero Slide - Responsive height */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
}

/* Mobile height adjustment */
@media (max-width: 992px) {
    .hero-slide {
        height: 80vh;
        min-height: 450px;
        max-height: 800px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        min-height: 400px;
        max-height: 700px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 60vh;
        min-height: 350px;
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 85vh;
        min-height: 500px;
        max-height: 700px;
    }
}

/* Hero Image - Perfect fit for all screens */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Image position adjustment for different screen sizes */
@media (max-width: 768px) {
    .hero-img {
        object-position: 70% center;
    }
}

@media (max-width: 576px) {
    .hero-img {
        object-position: 65% center;
    }
}

/* Overlay - Better readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

/* Content layer - Centered perfectly */
.carousel-item .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

/* Hero content styling */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive hero text */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
}

/* Hero buttons responsive */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
}

/* Carousel indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 30px;
    }
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 20px;
    background-size: 50% 50%;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        opacity: 0.5;
        width: 15%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 15px;
        background-size: 40% 40%;
    }
}

/* Animation for hero content */
.carousel-item .hero-content {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Landscape mode fixes */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-slide {
        height: 100vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .hero-slide {
        max-height: 1000px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 700px;
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 193, 152, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1.5rem auto;
}

.divider.left {
    margin: 1.5rem 0;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--soft-border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Doctor Cards */
.doctor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.7);
    transition: var(--transition);
}

.doctor-card:hover .doctor-social {
    bottom: 0;
}

.doctor-social a {
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    transition: var(--transition);
}

.doctor-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.specialization {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-before,
.gallery-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition);
}

.gallery-after {
    opacity: 0;
}

.gallery-card:hover .gallery-after {
    opacity: 1;
}

.gallery-card:hover .gallery-before {
    opacity: 0;
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.badge-before,
.badge-after {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    padding: 2rem;
    margin: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    font-size: 1rem;
    color: #ffc107;
    margin: 0 1px;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.client-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Promo Cards */
.promo-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff4444;
    color: white;
    padding: 5px 30px;
    font-weight: 600;
    transform: rotate(45deg);
}

.promo-content {
    padding: 1.5rem;
    background: var(--white);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    margin-top: 76px;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color) !important;
}

/* Counter Box Styles */
.counter-box {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Mission Card Styles */
.mission-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
}

/* Value Card Styles */
.value-card {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Facility Card Styles */
.facility-card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
}

/* Service Card Full Styles */
.service-card-full {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-duration {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Doctor Profile Card Styles */
.doctor-profile-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.doctor-profile-card:hover {
    transform: translateY(-5px);
}

.doctor-profile-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.doctor-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-profile-info {
    padding: 20px;
}

.doctor-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 15px 0;
}

.doctor-education {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Reason Card Styles */
.reason-card {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
}

/* Contact Info Styles */
.contact-info h2 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    margin-top: 5px;
}

.info-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Gallery Thumb Styles */
.gallery-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Blog Post Card Styles */
.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 0;
}

.blog-post-meta {
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-post-meta span {
    margin-right: 15px;
}

.blog-post-title {
    font-size: 1.5rem;
    transition: var(--transition);
}

.blog-post-title:hover {
    color: var(--primary-color);
}

/* Sidebar Widget Styles */
.sidebar-widget {
    border: none;
    border-radius: 15px;
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--soft-border);
}

.sidebar-widget ul li a {
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.recent-post {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--soft-border);
}

.recent-post:last-child {
    border-bottom: none;
}

/* Promotion Card Styles */
.promotion-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.promotion-footer {
    margin-top: 15px;
}

.expiry-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Filter Buttons */
.btn-filter {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-dark);
    margin: 0 5px;
    padding: 8px 20px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--light-bg);
}

/* Before After Comparison */
.comparison-container {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
}

.before-img, .after-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-filter {
        margin: 5px;
        padding: 5px 15px;
        font-size: 0.85rem;
    }
    
    .gallery-thumb img {
        height: 200px;
    }
    
    .blog-post-title {
        font-size: 1.2rem;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
}

.icons8-tiktok { 
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICB2aWV3Qm94PSIwIDAgNTAgNTAiIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjUwcHgiPiAgICA8cGF0aCBkPSJNNDEsNEg5QzYuMjQzLDQsNCw2LjI0Myw0LDl2MzJjMCwyLjc1NywyLjI0Myw1LDUsNWgzMmMyLjc1NywwLDUtMi4yNDMsNS01VjlDNDYsNi4yNDMsNDMuNzU3LDQsNDEsNHogTTM3LjAwNiwyMi4zMjMgYy0wLjIyNywwLjAyMS0wLjQ1NywwLjAzNS0wLjY5LDAuMDM1Yy0yLjYyMywwLTQuOTI4LTEuMzQ5LTYuMjY5LTMuMzg4YzAsNS4zNDksMCwxMS40MzUsMCwxMS41MzdjMCw0LjcwOS0zLjgxOCw4LjUyNy04LjUyNyw4LjUyNyBzLTguNTI3LTMuODE4LTguNTI3LTguNTI3czMuODE4LTguNTI3LDguNTI3LTguNTI3YzAuMTc4LDAsMC4zNTIsMC4wMTYsMC41MjcsMC4wMjd2NC4yMDJjLTAuMTc1LTAuMDIxLTAuMzQ3LTAuMDUzLTAuNTI3LTAuMDUzIGMtMi40MDQsMC00LjM1MiwxLjk0OC00LjM1Miw0LjM1MnMxLjk0OCw0LjM1Miw0LjM1Miw0LjM1MnM0LjUyNy0xLjg5NCw0LjUyNy00LjI5OGMwLTAuMDk1LDAuMDQyLTE5LjU5NCwwLjA0Mi0xOS41OTRoNC4wMTYgYzAuMzc4LDMuNTkxLDMuMjc3LDYuNDI1LDYuOTAxLDYuNjg1VjIyLjMyM3oiLz48L3N2Zz4=') 50% 50% no-repeat;
    background-size: 100%; 
}