
        :root {
            --primary-color: #F8CEE0;
            --primary-dark: #E9A7C0;
            --text-color: #7D5A50;
            --white: #ffffff;
            --light-bg: #FAF3F5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 113px; /* Adjusted to accommodate topbar + navbar */
        }

        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
        }

        .topbar-info a:hover,
        .topbar-social a:hover {
            color: var(--primary-dark) !important;
            opacity: 0.8;
        }

        .topbar-social a {
            font-size: 16px;
            transition: all 0.3s ease;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--text-color);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.5rem;
        }

        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 0;
        }

        .navbar-light .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }

        .navbar-light .navbar-nav .nav-link:hover,
        .navbar-light .navbar-nav .nav-link.active {
            color: var(--primary-dark);
        }

        .hero {
            background-color: var(--primary-color);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: var(--primary-dark);
            border-radius: 50%;
            opacity: 0.5;
            top: -50px;
            right: -50px;
            z-index: 0;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--text-color);
            border-color: var(--text-color);
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            margin-bottom: 60px;
            text-align: center;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .card {
            border: none;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .card-img {
            height: 200px;
            object-fit: cover;
        }

        .card-body {
            padding: 25px;
        }

        .card-title {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--text-color);
        }

        .testimonial {
            background-color: var(--light-bg);
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .about-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-img img {
            border-radius: 15px;
            transition: all 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .contact {
            background-color: var(--light-bg);
        }

        .contact-info {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 20px;
            padding: 10px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--text-color);
            font-size: 1.2rem;
        }

        .contact-details h5 {
            margin-bottom: 5px;
            align-items: center;
        }

        .form-control {
            height: 55px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 0 20px;
            margin-bottom: 20px;
        }

        textarea.form-control {
            height: 150px;
            padding: 15px 20px;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        footer {
            background-color: var(--text-color);
            padding: 50px 0 20px;
            color: var(--white);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-text {
            margin-bottom: 20px;
            color: rgba(255,255,255,0.7);
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: var(--primary-color);
            color: var(--text-color);
        }

        .footer-links h5 {
            color: var(--white);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-links ul {
            padding: 0;
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255,255,255,0.7);
        }

        .logo-img {
            max-width: 100px;
            margin-right: 10px;
        }

        .logo-img-txt {
            height: 40px;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            /*background-color: #25D366;*/
            background-color: #E9A7C0;
            color: white;
            border-radius: 50px;
            /*font-size: 22px;*/
            font-size: 32px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            z-index: 100;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #1DA856;
        }

        .image-block {
          position: relative;
          overflow: hidden;
          height: 300px;
        }
        .image-block img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: opacity 1s ease-in-out;
          position: absolute;
          top: 0;
          left: 0;
        }
        .image-block img.hidden {
          opacity: 0;
        }

        @media (max-width: 991px) {
            .hero {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section {
                padding: 70px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            body {
                padding-top: 140px; /* Adjusted for mobile */
            }

            .navbar {
                top: 60px !important; /* Taller topbar on mobile due to wrapping */
            }
        }

        @media (max-width: 767px) {
            .hero {
                padding: 60px 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-img {
                margin-top: 30px;
            }

            .section {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .about-img {
                margin-bottom: 30px;
            }

            body {
                padding-top: 150px; /* Even more padding for smaller devices */
            }

            .navbar {
                top: 70px !important;
            }
        }
