        :root {
            --bs-primary: #3a9086;
            --bs-secondary: #f8b400;
            --bs-light: #f7f7f7;
            --bs-dark: #2c3e50;
            --bs-text: #333333;
        }

        body {
            font-family: 'Playfair Display', serif !important;
            color: var(--bs-text);
            background-color: #f9f9f9;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .cta-button {
            background-color: var(--bs-primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #2d7269;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            /* background-color: var(--bs-secondary); */
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1577896851231-70ef18861754?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover;
            height: 80vh;
            color: white;
            margin-top: 80px;
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .social-links a {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--bs-primary);
        }

        .testimonial {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .nav-link {
font-size: large;
color: white!important;
padding-left: 20px;
padding-right: 20px;
        }

        .main-bg{
            background: #173d6c!important;
        }
        .main-bg-text {
            color: #173d6c!important;
        }

        .bg-greennish{
            background-color: #3a9086!important;
        }