       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(135deg, #feeda3 0%, #f8db57 100%);
            color: rgb(6, 6, 6);
            padding: 2rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(26, 26, 26, 0.955);
        }


        nav ul {
            display: flex;
            list-style: none;
            gap: 7rem;
          padding: 32px 112px;
        }

        nav a {
            color: rgb(7, 7, 7);
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #0c0c0c;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("Goldenplates.jpg") center/cover;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

      

        .hero-content .gold {
            color: #FFD700;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            background: #FFD700;
            color: #1a1a1a;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-weight: bold;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }

        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #1a1a1a;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
        }

        .mission-vision {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .packages {
            background: #1a1a1a;
            color: white;
            padding: 4rem 2rem;
        }

        .packages h2 {
            color: #FFD700;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .package-card {
            background: #2d2d2d;
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid #FFD700;
            text-align: center;
        }

        .package-card h3 {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            color: #FFD700;
            margin: 1rem 0;
        }

        .gallery {
            background: #f9f9f9;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            height: 300px;
            background: #ddd;
            border-radius: 10px;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        

#reviews {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

#reviews h2 {
    text-align: center;
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #333;
    margin: 0;
    font-size: 1rem;
}

.reviewer-event {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

        .contact {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            color: white;
            text-align: center;
        }

        .contact h2 {
            color: #FFD700;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            font-size: 1.2rem;
        }

        footer {
            background: #FFD700;
            color: rgb(8, 7, 7);
            text-align: center;
            padding: 2rem;
        }

        
        

      