
        @import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

        @font-face {
            font-family: 'Franksy';
            src: url('./fonts/Franksy.ttf') format('truetype');
            /* Adjust path */
        }

        :root {
            --primary-color: #135E69;
            --secondary-color: #F4A03A;
            --bg-overlay: rgba(0, 0, 0, 0.5);
            --font-main: 'Helvetica', sans-serif;
        }

        .primary {
            color: var(--primary-color);
        }

        .secondery {
            color: var(--secondary-color);
        }

        /* .heading {
            color: var(--secondary-color);
            font-size: 2rem;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
         
        } */
        .heading {
            font-family: 'Anton', sans-serif;
            /* Close match to bold, tall font */
            font-size: 3rem;
            /* Adjust size as needed */
            font-weight: 900;
            letter-spacing: 3px;
            /* Add space between letters */
            color: var(--secondary-color);
            /* Fill color */
            text-transform: uppercase;
            text-align: center;
            width: fit-content;
            margin: 0 auto;

            /* Outline */
            -webkit-text-stroke: 1px black;
            text-stroke: 1px black;
            /* fallback for some browsers */
        }

        .faq {
            color: var(--primary-color);
            font-size: 3rem;
        }

        .sub-heading {
            color: var(--primary-color);
            font-size: 18px;
        }

        .logo-image {
            width: 160px;
            height: 80px;
        }

        .nav-item a {
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .nav-item a:hover {
            font-weight: 700;
            color: var(--secondary-color) !important;
        }

        .navbar-toggler:focus {
            border: none !important;
            box-shadow: none !important;
        }

        .navbar-toggler {
            border: none !important;
        }

        .offcanvas-body {
            flex-grow: 1;
            padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
            overflow-y: auto;
            background: var(--primary-color) !important;
        }

        .bi-list::before {
            content: "\f479";
            color: var(--primary-color);
            font-size: 33px;
        }

        .bi-x-lg::before {
            content: "\f659";
            font-size: 26px;
            color: var(--primary-color);
        }

        .nav-link.active {
            color: var(--secondary-color) !important;
            font-weight: bold;
            border-bottom: 2px solid #f4a03a;

        }

        #typed-text::after {
            content: '|';
            animation: blink 1s infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        .navbar>.container,
        .navbar>.container-fluid,
        .navbar>.container-lg,
        .navbar>.container-md,
        .navbar>.container-sm,
        .navbar>.container-xl,
        .navbar>.container-xxl {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
        }



        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background-color: rgb(50 44 44 / 20%);
            /* semi-transparent */
            backdrop-filter: blur(10px);
            /* blur background behind navbar */
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
        }

        .header {
            background: url('./uploads/<?= htmlspecialchars($desktopBg) ?>') center center/cover no-repeat;
            height: 100vh;
            position: relative;
            display: flex;
            justify-content: center;
            text-align: left;
            color: #fff;
        }

        /* Mobile view: change background image */
        @media (max-width: 600px) {
            .header {
                background: url('./uploads/<?= htmlspecialchars($mobileBg) ?>') center center/cover no-repeat;
            }

            .heading {
                font-family: 'Anton', sans-serif;
                font-size: 2rem;
                font-weight: 900;
                letter-spacing: 3px;
                color: var(--secondary-color);
                text-transform: uppercase;
                text-align: center;
                width: fit-content;
                margin: 0 auto;
                -webkit-text-stroke: 1px black;
                text-stroke: 3px black;
            }
        }

        .header::before {
            content: "";
            position: absolute;
            inset: 0;
            background-color: #ffffff85;
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .header-content-text {
            font-size: 21px;
        }

        .header-image {
            width: 100%;
            height: 250px;

        }

        .header-image-contact {
            background-color: var(--secondary-color);
            color: #fff;
            height: 250px;
            z-index: 1000;
        }

        .location {
            margin-top: -28px !important;
        }

        .location-image {
            z-index: 1000;
        }

        .offcanvas {
            background-color: #fff;
        }

        .phone-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary-color);
            transition: background-color 0.3s, color 0.3s;
            color: #fff;
            text-decoration: none;
        }

        .phone-btn:hover {
            background-color: var(--secondary-color);
            /* Bootstrap primary */
            color: #fff;
        }

        /* call button css  */
        .call-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            font-size: 24px;
            padding: 15px 20px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 99999;
            transition: transform 0.3s ease, background-color 0.3s ease;
            animation: pulse 1.5s infinite;
        }

        .call-button:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
            text-decoration: none;
        }

        .mobile-view {
            background-color: var(--secondary-color);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(150, 194, 255, 0.7);
            }

            70% {
                transform: scale(1.1);
                box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
            }
        }

        /* Responsive: Hide button on very small screens if needed */
        @media (max-width: 600px) {
            .call-button {
                padding: 12px 17px;
                font-size: 20px;
                bottom: 15px;
                right: 15px;
            }

            .logo-image {
                width: 100px;
                height: auto;
            }

            .header-content-text {
                font-size: 15px;
            }

            .header-image-div {
                margin-top: 0px !important;
            }

            .header-image {
                width: 100%;
                /*height: 200px;*/
            }

            .header-image-contact {
                background-color: var(--secondary-color);
                color: #fff;
                height: 170px;
                margin-top: 0px !important;
            }

            .location-image {
                margin-top: 0px !important;
            }
        }

        @media (max-width: 600px) {
            .desktop-banner-images {
                display: none;
            }

            .mobile-banner-image {
                display: block;
            }

            .offcanvas {
                position: fixed;
                bottom: 0;
                z-index: var(--bs-offcanvas-zindex);
                display: flex;
                flex-direction: column;
                max-width: 100%;
                color: var(--bs-offcanvas-color);
                visibility: hidden;
                background-color: var(--bs-offcanvas-bg);
                background-clip: padding-box;
                outline: 0;
                transition: var(--bs-offcanvas-transition);
                margin: 0px;
                top: 27px !important;
            }
        }


        @media (min-width: 300px) and (max-width: 600px) {

            .header-image-contact {
                background-color: var(--secondary-color);
                color: #fff;
                height: 200px !important;
                /*margin-top: 65px;*/
                margin-left: 12px !important;
                margin-right: 0px;
                width: 92% !important;
            }


        }

        .service-card {
            border: 1px solid #ddd;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            border-radius: 10px;
            background-color: #fff;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .custom-col {
            width: 20%;
            padding: 15px;
        }

        @media (max-width: 1200px) {
            .custom-col {
                width: 33.33%;
                /* 3 per row on medium screens */
            }
        }

        @media (max-width: 768px) {
            .custom-col {
                width: 50%;
                /* 2 per row on tablets */
            }

            .offcanvas {
                position: fixed;
                bottom: 0;
                z-index: var(--bs-offcanvas-zindex);
                display: flex;
                flex-direction: column;
                max-width: 100%;
                color: var(--bs-offcanvas-color);
                visibility: hidden;
                background-color: var(--bs-offcanvas-bg);
                background-clip: padding-box;
                outline: 0;
                transition: var(--bs-offcanvas-transition);
                top: 33px !important;
            }
        }

        @media (max-width: 576px) {
            .custom-col {
                width: 100%;
                /* Full width on small screens */
            }

            .about-content {
                margin-top: 75px !important;
            }
        }


        .fixed-background-section {
            background-image: url('./assets/bg-image-2.jpeg');
            /* Replace with actual image path */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            /* justify-content: center;
            align-items: center; */
            position: relative;
            color: white;
            /* text-align: center; */
            padding: 20px;
        }

        .service-card .fa-solid {
            font-size: xxx-large;
        }

        .service-card .fa-solid:hover {
            color: var(--primary-color);
        }

        .client-border {
            border-top: 3px solid var(--secondary-color);
            width: 30%
        }

        .fixed-background-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgb(255 255 255 / 52%);
            ;
            /* dark overlay */
            z-index: 0;
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
            /* max-width: 1200px; */
            width: 100%;
        }

        .service-box {
            border: 1px solid #ccc;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 21%, #f4a03a 100%);
            /* overflow: hidden; */
        }

        .funaral-image {
            max-width: 70%;
            margin-top: -100px;
        }

        .funaral-row {
            margin-top: 100px;
        }

        .service-heading {
            margin-top: -20px;
        }

        .service-content {
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .funaral-image {
                margin-top: -40px;
                max-width: 80%;
            }

            .service-heading {
                margin-top: 0;
            }

            /*.header-image-div {*/
            /*    margin-top: 65px;*/
            /*}*/

            .header-image-contact {
                background-color: var(--secondary-color);
                color: #fff;
                height: 250px;
                /*margin-top: 65px;*/
                margin-left: -12px;
                margin-right: 0px;
                width: 48%;
            }

            .location {
                margin-top: 0px !important;
            }

            .about-content {
                margin-top: 196px;
            }
        }

        .mobile-banner-image {
            display: none;
        }

        .about-content {
            margin-top: 100px;
        }

        @media (max-width: 1100px) {
            .service-box-img {
                background: #fff;
                border-radius: 0px 0px 10px 10px;
                text-align: center;
                height: 100% !important;
            }
        }


        .service-box-img {
            background: #fff;
            border-radius: 0px 0px 10px 10px;
            text-align: center;
            height: 285px;
        }

        .service-image {
            border-radius: 10px 10px 0px 0px;
        }

        .image-hover-wrapper {
            overflow: hidden;
            /* border-radius: 10px; */
            transition: box-shadow 0.3s ease;
        }

        .service-image {
            transition: transform 0.4s ease;
            display: block;
            width: 100%;
            height: 250px;
            /* border-radius: 10px; */
        }

        .image-hover-wrapper:hover .service-image {
            transform: scale(0.95);
            /* Zoom out slightly */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            /* Shadow on image */
        }

        .image-hover-wrapper:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            /* Shadow on whole container */
        }

        .accordion-button:not(.collapsed) {
            color: #fff !important;
            background-color: var(--primary-color) !important;
            box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
        }

        .accordion-button:focus {
            z-index: 3;
            border-color: #135e69 !important;
            outline: 0;
            box-shadow: 0px 0px 0px 0px #135e69 !important;
        }

        .form-label {
            font-weight: bold;
            position: relative;
            display: inline-block;
        }

        .form-control:focus {
            color: var(--bs-body-color);
            background-color: var(--bs-body-bg);
            border-color: #135e69 !important;
            outline: 0;
            box-shadow: 0px 1px 8px 2px rgb(19 94 105) !important;
        }

        .required-asterisk {
            color: red;
            position: absolute;
            top: 0;
            right: -10px;
            /* Adjust as needed */
            font-size: 1rem;
        }

        .submit {
            background-color: var(--primary-color);
            color: #fff;
        }

        .submit:hover {
            background-color: var(--secondary-color);
            color: #fff;
        }

        .footer {
            background-color: var(--primary-color);
            color: #fff;
            font-size: 18px;
        }

        .map-container {
            position: relative;
            padding-bottom: 75%;
            /* 4:3 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            border-radius: 10px;
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .map-address {
            margin-bottom: 10px;
            color: #555;
        }

        .page-link {
            border-radius: 10px;
            color: #135e69;
        }

        .active>.page-link,
        .page-link.active {
            z-index: 3;
            color: #fff;
            background-color: #135e69;
            border-color: #135e69;
            border-radius: 10px;
        }

        /* Default view: desktop visible, mobile hidden */
        .desktop-banner-images {
            display: block;
        }

        .mobile-banner-images {
            display: none;
        }

        /* Mobile view only */
        @media (max-width: 600px) {
            .desktop-banner-images {
                display: none;
            }

            .mobile-banner-images {
                display: block;
            }
        }
 