/* Custom Color Scheme */
        :root {
            --primary-color: #007bff;
            --secondary-color: #6c757d;
            --background-color: #f8f9fa;
            --text-color: #343a40;
        }
        body {
            background-color: var(--background-color);
            color: var(--text-color);
        }
        .navbar {
            background-color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: bold;
            color: #fff;
        }
		.navbar-nav {
            font-weight: bold;
            color: #fff;
			text-align:right;
        }
        .nav-link {
            color: #fff;
        }
        .parallax-home {
            background-image: url('/assets/images/parallax-bg.jpg');
            min-height: 200px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            color: #fff;
        }
		.parallax-page {
            background-image: url('/assets/images/parallax-bg.jpg');
            min-height: 100px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            color: #fff;
        }
		
        .parallax-home h1, .parallax-page h1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            text-shadow: 2px 2px 4px #000;
        }
        .gallery img {
            width: 100%;
            height: auto;
        }
        .testimonial {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 2rem;
            border-radius: 0.5rem;
        }
        .contact-form {
            background-color: #fff;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: var(--primary-color);
            color: #fff;
            padding: 1rem 0;
            text-align: center;
        }
		.Sections {
            background-color: var(--primary-color);
            font-size: 50px;
            text-shadow: 2px 2px 4px #000;
        }
	.min-card-height {
        min-height: 300px;
    }