
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --warm-gold: #f39c12;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero.avif') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .cta-btn {
            background: var(--secondary-color);
            border: none;
            padding: 15px 30px;
            font-weight: 400;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .cta-btn:hover {
            background: var(--warm-gold);
            transform: translateY(-2px);
        }
        footer {
            background: var(--primary-color);
            color: var(--white);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
        }
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        /* Form styling */
        .form-control {
            border-radius: 10px;
            border: 1px solid #ddd;
        }
        /* Testimonial slider placeholder */
        .testimonial-carousel .carousel-item {
            text-align: center;
            padding: 50px 20px;
        }
      /* Modal Background */
        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }

        /* Modal Box */
        .modal-content {
            background: #ffffff;
            margin: 5% auto;
            padding: 30px;
            width: 90%;
            max-width: 700px;
            border-radius: 8px;
            position: relative;
        }

        .modal-content h2 {
            margin-top: 0;
            color: #2c3e50;
        }

        .modal-content p {
            line-height: 1.6;
            color: #555;
        }

        /* Close Button */
        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 26px;
            cursor: pointer;
            color: #999;
        }

        .close:hover {
            color: #000;
        }