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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2d2d2d;
            background-image: url(../assets/image4.jpg);
            background-position: left;
            background-attachment: fixed;

        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            background: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid #f0f0f0;
            z-index: 1000;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.8rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 300;
            letter-spacing: 3px;
            color: #6b1659;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: #8b2472;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            transition: color 0.3s;
            font-weight: 300;
        }

        .nav-links a:hover {
            color: #6b1659;
        }

        .hero {
            margin-top: 85px;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(240deg,#0001 0%, #f8d7edaa 100%);
        }

        .hero:before {
            content: "";
            position: absolute;
            inset: 0;
            background: inherit;
            filter: brightness(0.9) blur(5px) contrast(1.3);
            z-index: 0;
            background-attachment: scroll;
        }

        .hero * {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 200;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            color: #6b1659;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #000;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3.5rem;
            border: 1.5px solid #6b1659;
            color: #6b1659;
            text-decoration: none;
            letter-spacing: 2px;
            font-size: 0.8rem;
            transition: all 0.4s ease;
            font-weight: 300;
        }

        .cta-button:hover {
            background: #6b1659;
            color: #ffffff;
        }

        .gallery-section {
            padding: 10rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 200;
            text-align: center;
            margin-bottom: 6rem;
            letter-spacing: 3px;
            color: #6b1659;
        }

        .slideshow-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            aspect-ratio: 16/10;
            background: #f5f5f5;
            overflow: hidden;
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
        }

        .slide.active {
            display: block;
            animation: fadeIn 1.2s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(107, 22, 89, 0.85));
            color: white;
            padding: 3rem;
            text-align: left;
        }

        .slide-caption h3 {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .slide-caption p {
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .nav-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            pointer-events: none;
        }

        .arrow {
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.15);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: white;
            font-size: 1.3rem;
            pointer-events: all;
        }

        .arrow:hover {
            background: rgba(107, 22, 89, 0.5);
            border-color: white;
        }

        .dots {
            text-align: center;
            margin-top: 2.5rem;
        }

        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #ddd;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.4s;
            border-radius: 50%;
        }

        .dot.active {
            background: #6b1659;
            width: 35px;
            border-radius: 5px;
        }

        .services {
            padding: 10rem 2rem;
            background: #fafafa;
        }

        .services-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .service-card {
            background: white;
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
        }

        .service-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #fce4f3, #f8d7ed);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #6b1659;
            overflow: hidden;
        }

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

        .service-content {
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .service-content h3 {
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            color: #6b1659;
        }

        .service-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .about {
            padding: 10rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about p {
            font-size: 1.15rem;
            color: #6b1659;
            line-height: 2;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #6b1659 0%, #8b2472 100%);
            color: white;
            padding-bottom: 2rem;
        }

        .contact-content {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            margin-top: 5rem;
            position: relative;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem 2rem;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .contact-item h4 {
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 300;
            opacity: 0.8;
        }

        .contact-item p {
            font-size: 1.2rem;
            letter-spacing: 1px;
            font-weight: 300;
        }

        .delivery {
            margin-top: 5rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.95rem;
            letter-spacing: 1.5px;
            font-weight: 300;
        }

        footer {
            background: #1a1a1a;
            padding: 2.5rem;
            text-align: center;
            color: #999;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            font-weight: 300;
        }

        b:last-of-type {
            text-decoration: none;
            color: #fff;
        }

        .links {
            position: absolute;
            background-color: #fff;
            width: 100%;
            top: 0;
            left: 0;
            margin: auto;
            height: 100%;
            opacity: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1.5rem 2rem;
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .gallery-section,
            .services,
            .about,
            .contact {
                padding: 5rem 2rem;
            }

            .gallery-section {
                background-color: #fff;
            }

            .slide-caption {
                padding: 2rem 1.5rem;
            }

            .slide-caption h3 {
                font-size: 1.3rem;
            }

            .nav-arrows {
                padding: 0 1rem;
            }

            .arrow {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .service-image {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .service-content {
                padding: 2rem 1.5rem;
            }

            .contact-item {
                padding: 2rem 1.5rem;
            }
        }