 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 200;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            background: white;
            border-radius: 50%;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .contact-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: white;
            color: #667eea;
            min-width: 180px;
        }

        .btn-secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
            min-width: 210px;
        }

        .btn-tertiary {
            background: rgba(255,255,255,0.15);
            color: white;
            border: 2px solid rgba(255,255,255,0.8);
            min-width: 150px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255,255,255,0.3);
        }

        .btn-secondary:hover {
            background: white;
            color: #667eea;
        }

        .btn-tertiary:hover {
            background: white;
            color: #667eea;
        }

        .btn-text {
            display: inline-block;
            transition: opacity 0.3s ease;
        }

        .btn-text.fade-out {
            opacity: 0;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 237, 234, 0.85) 0%, rgba(254, 214, 227, 0.85) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: #2d3748;
            padding: 20px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
        }

        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 15px;
            font-style: italic;
        }

        .hero-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
            font-size: 18px;
        }

        .hero-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.7);
            padding: 10px 20px;
            border-radius: 25px;
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            background: white;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-image {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #2d3748;
        }

        .about-content p {
            font-size: 18px;
            margin-bottom: 20px;
            color: #4a5568;
        }

        .certification {
            display: inline-block;
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 700;
            color: white;
            margin-top: 20px;
            font-size: 18px;
        }

        /* Services Section - Carousel */
        .services {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .services h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #2d3748;
        }

        .services-carousel {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .service-card {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .service-card.active {
            opacity: 1;
            transform: translateX(0);
            z-index: 2;
            pointer-events: auto;
        }

        .service-card.slide-left {
            transform: translateX(-100%);
        }

        .service-card.slide-right {
            transform: translateX(100%);
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img,
        .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content {
            padding: 50px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
            color: white;
            transition: all 0.4s ease;
            z-index: 60;
        }

        .service-card:hover .service-content {
            background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7));
        }

        .service-type-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card.baby .service-type-badge {
            background: #4299e1;
        }

        .service-card.kids .service-type-badge {
            background: #48bb78;
        }

        .service-card.pregnancy .service-type-badge {
            background: #f6ad55;
        }

        .service-card.postnatal .service-type-badge {
            background: #ed8936;
        }

        .service-card h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }

        .service-card ul {
            display: none;
            list-style: none;
        }

        .service-card:hover ul {
            display: block;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card li {
            padding: 10px 0;
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .service-card li:last-child {
            border-bottom: none;
        }

        .slide-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-dot.active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 50;
            pointer-events: none;
        }

        .carousel-btn {
            width: 0;
            height: 0;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
            opacity: 0.7;
        }

        .carousel-btn:hover {
            opacity: 1;
            transform: scale(1.2);
        }

        .carousel-btn.prev {
            border-right: 20px solid white;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
        }

        .carousel-btn.next {
            border-left: 20px solid white;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
        }

        .carousel-btn::before {
            display: none;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 100;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        .carousel-indicator:hover {
            background: rgba(255,255,255,0.8);
        }

        /* Reviews Section */
        .reviews {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .reviews h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .reviews-intro {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .review-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .review-link {
            background: white;
            color: #667eea;
            padding: 15px 35px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .review-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,255,255,0.3);
        }

        /* Location Section */
        .location {
            padding: 80px 20px;
            background: white;
        }

        .location h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #2d3748;
        }

        .location-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
            align-items: center;
        }

        .location-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .location-img {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .location-img.large {
            grid-column: 1 / -1;
            height: 250px;
        }

        .location-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .location-details {
            text-align: left;
        }

        .location-details p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #4a5568;
        }

        .map-link {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: #4299e1;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .map-link:hover {
            background: #3182ce;
            transform: translateY(-2px);
        }

        /* CTA Section */
        .cta {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
            text-align: center;
        }

        .cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
        }

        .cta p {
            font-size: 20px;
            margin-bottom: 30px;
            color: white;
            opacity: 0.95;
        }

        .btn-cta {
            background: white;
            color: #f6ad55;
            padding: 18px 40px;
            font-size: 20px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-block;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: #2d3748;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s ease;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero {
                height: 500px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-info {
                flex-direction: column;
                gap: 15px;
            }

            .about-wrapper,
            .location-wrapper {
                grid-template-columns: 1fr;
            }

            .about h2, .services h2, .reviews h2, .location h2 {
                font-size: 28px;
            }

            .cta h2 {
                font-size: 32px;
            }

            .header-content {
                justify-content: center;
                text-align: center;
            }

            .logo-container {
                width: 100%;
                justify-content: center;
            }

            .contact-buttons {
                width: 100%;
                justify-content: center;
            }

            .location-images {
                grid-template-columns: 1fr;
            }

            .location-img.large {
                grid-column: 1;
            }

            .services-carousel {
                height: 500px;
            }

            .service-content {
                padding: 30px;
            }

            .service-card h3 {
                font-size: 28px;
            }

            .service-card li {
                font-size: 16px;
            }

            .carousel-btn.prev {
                border-right: 16px solid white;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
            }

            .carousel-btn.next {
                border-left: 16px solid white;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
            }

            .carousel-nav {
                padding: 0 12px;
            }
        }