body {
            font-family: 'Merriweather Sans', sans-serif;
        }

        .masthead {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url('images/banner.jpg?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .divider {
            width: 80px;
            height: 4px;
            background: #d4af37;
            margin: 20px auto;
            border-radius: 20px;
        }

        .bg-primary {
            background: #C3A14A !important;
        }

        .btn-hero {
            background: #C3A14A;
            color: #fff;
        }

        .btn-primary,
        .btn-hero:hover {
            background: #3b447c;
            border: none;
        }

        .btn-primary:hover {
            background: #b3874f;
        }

        .service-box {
            padding: 30px 20px;
            transition: 0.3s;
            border-radius: 16px;
            background: #fff;
            border: 1px solid rgba(196, 155, 99, 0.35);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
            min-height: 260px;
        }

        /* top golden line */
        .service-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #C3A14A, #f7d08a);
        }

        .service-box:hover {
            transform: translateY(-8px);
            border-color: #C3A14A;
            box-shadow: 0 15px 35px rgba(196, 155, 99, 0.25);
        }

        .portfolio-box img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        footer a {
            color: rgba(255, 255, 255, .7);
            text-decoration: none;
        }

        footer a:hover {
            color: white;
        }

        .navbar-brand {
            padding: 0;
        }

        .navbar-brand img {
            width: 180px;
        }

        .navbar,
        .bookNow {
            background-color: #3b447c;
        }

        .nav-link {
            color: #fff;
        }

        .nav-link:hover {
            color: #C3A14A;
        }

        .service-box i {
            color: #3b447c;
        }

        input,
        select,
        .form-control,
        placeholder {
            font-size: 14px !important;
            color: #212529 !important;

        }

        .navbar-toggler {
            border-color: white;
        }

        .navbar-toggler-icon {
            filter: invert(1);
        }

        footer {
            background-color: #3b447c;
        }

        .whatsapp-floating {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
            background: rgb(255, 255, 255);
            border-radius: 50%;
            transition: transform 0.3s;
            font-size: 24px;
            color: #fff;
            background-color: #3b447c;
        }
        .masthead{
            margin-top: 70px;
        }