 /* General Styles */
        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            scroll-behavior: smooth;
            color: #cff;
            background: #f9f9f9;
            overflow-x: hidden;
        }

        h1, h2 {
            font-family: 'Playfair Display', serif;
            margin: 20px;
            

        }

        h1 {
            font-size: 3.5em;
            text-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
            color: #ff6;
            

        }

        h2 {
            font-size: 1.8em;
            text-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
            color: #cff;
            
        }

        h3 {color: #9fc}
        p,a {color: #cff}



        a, button {
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
        }

        .cta-btn, .submit-btn {
            background: #ff7f50;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover, .submit-btn:hover {
            background: #ff4500;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Parallax Section Styles */
        .parallax-section {
            min-height: 50vh;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding-bottom: 40px;
        }

         /* Section Backgrounds */

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg.jpg') no-repeat center;
            background-attachment: fixed;
            background-size: cover;
        }

        .services {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/services-bg.jpg') no-repeat center;
            background-attachment: fixed;
        }

        .gallery {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/gallery-bg.jpg') no-repeat center;
            background-attachment: fixed;
        }

        .contact {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/contact-bg.jpg') no-repeat center;
            background-attachment: fixed;
        }

        /* Services and Carousel Styles */
        .services-content {
            display: grid;
            gap: 30px;
            max-width: 1200px;
            margin: auto;
            align-items: center;
            text-align: center;
        }

        .service-item {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bgd.jpg');
            padding: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            color: #fff;
            text-shadow: 2px 4px 5px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s;
        }

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

        /* Carousel Styles */
        .carousel {
            position: relative;
            max-width: 800px;
            margin: 50px auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .carousel-slide {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 100%;
            position: relative;
            transition: transform 0.3s;
        }

        .carousel-item img {
            width: 100%;
            border-radius: 10px;

        }

        .carousel-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 1.2em;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 2em;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .carousel-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .carousel-btn.left {
            left: 10px;
        }

        .carousel-btn.right {
            right: 10px;
        }

        /* Contact Form Styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: auto;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
            background: url('../img/bgd.jpg');
        }

        .contact-form input, .contact-form textarea {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            width: 91%;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #fdfdfd;
        }

        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #ff7f50;
            outline: none;
            box-shadow: 0 0 5px rgba(255, 127, 80, 0.4);
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-form button[type="submit"] {
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            background: #333;
            border: none;
            cursor: pointer;
            color: #fff;
            transition: background 0.3s, box-shadow 0.3s;
            border-radius: 5px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .contact-form button[type="submit"]:hover {
            background: #ff7f50;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
        }
        /* Slideshow */
        .slideshow {
            position: relative;
            max-width: 100%;
            height: 512px;
            margin: 0 auto;
            margin-bottom: 30px;
        }

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

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            outline: 3px solid #333;
            outline-offset: -3px;
        }

        .slide.active {
            opacity: 1;
        }