
    /* General Body Styles */
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }

    /* Main Header Section */
    .intro-header {
        background-image: url('/img/banner-bg.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0;
        text-align: center;
    }

    .intro-header h1 {
        font-size: 3rem;
    }

    /* Main Navigation */
    .navbar {
        background-color: #333;
    }

    .navbar a {
        color: #fff !important;
    }

    .navbar-toggler-icon {
        background-color: #fff;
    }

    /* Service Item Styling */
    .service-item img {
        width: 100%;
        height: auto;
    }

    .service-item {
        padding: 20px;
        text-align: center;
    }

    .service-item .btn-inquiry {
        background-color: #008CBA;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        border-radius: 5px;
    }

    .service-item .btn-inquiry:hover {
        background-color: #005f72;
    }

    /* SEO Content Section Styling */
    .seo-content {
        padding: 50px 0;
        background-color: #f4f4f4;
    }

    /* Press Media Section Styling */
    .press-slider-wrapper {
        overflow: hidden;
        position: relative;
        margin-bottom: 40px; /* Space below the section */
    }

    .press-slider {
        display: flex;
        gap: 20px;
        animation: scrollSlider 25s linear infinite;
    }

    .press-slide {
        flex-shrink: 0;
        width: 300px; /* Increase size of each image */
        height: 200px; /* Adjust height as needed */
        border-radius: 10px;
        overflow: hidden;
    }

    .press-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures images fill the container without distortion */
        border-radius: 10px;
    }

    @keyframes scrollSlider {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    /* Responsiveness */
    @media (max-width: 767px) {
        .intro-header h1 {
            font-size: 2.5rem;
        }

        .service-item {
            margin-bottom: 30px;
        }

        .press-slide {
            width: 200px; /* Smaller images for mobile view */
            height: 150px; /* Adjusted height */
        }
    }
    .service-item img {
    width: 100%;
    height: 200px; /* Adjust this height as needed to fit your design */
    object-fit: cover; /* Ensures that the images fill the box without stretching */
    border-radius: 10px; /* Optional: to add rounded corners */
    margin-bottom: 15px; /* Optional: space below the images */
}
/* Press & Media Section Styling */
#press-media {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#press-media h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#press-media p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Press Slider Styling */
.press-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.press-slider {
    display: flex;
    gap: 20px;
    animation: scrollSlider 25s linear infinite;
}

.press-slide {
    flex-shrink: 0;
    position: relative;
    width: 300px; /* Image width */
    height: 300px; /* Image height */
    border-radius: 10px;
    overflow: hidden;
}

/* Press Info (Title, Description, Button) */
.press-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(211, 211, 211, 0.6); /* White overlay with some transparency */
    color: #333; /* Darker text for readability */
    padding: 10px;
    text-align: center;
}

.press-info h3 {
    font-size: 1.25rem;
    margin: 0;
    padding: 5px 0;
    color: #fff; /* Keep title white for contrast */
}

.press-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.press-info .btn-read-more {
    background-color: #008CBA;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
}

.press-info .btn-read-more:hover {
    background-color: #005f72;
}

/* Image Styling */
.press-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: blur(4px); /* Add blur effect to images */
}

/* Make the overlay more visible and text readable */
.press-slide:hover img {
    filter: blur(2px); /* Slightly reduce blur on hover for effect */
}

.press-slide:hover .press-info {
    background: rgba(255, 255, 255, 0.85); /* Increase opacity of overlay on hover */
}

/* Keyframes for Scroll Effect */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Make sure the slider is responsive on mobile */
@media (max-width: 767px) {
    .press-slide {
        width: 250px;
        height: 250px;
    }

    .press-info h3 {
        font-size: 1.1rem;
    }

    .press-info p {
        font-size: 0.9rem;
    }
}
/* Footer Section Styling */
.bg-dark {
    background: linear-gradient(to bottom right, #2c3e50, #34495e); /* Blue gradient */
    color: #fff;
    padding: 40px 0;
}

/* Gray Separator Section */
.footer-separator {
    background-color: #bdc3c7; /* Light gray background */
    padding: 30px 0;
    color: black; /* Set the font color to black */
}

.footer-heading {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-link {
    color: #000; /* Change link color to black */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #1abc9c; /* Greenish hover color */
    text-decoration: underline;
}

/* Footer Text Styling */
footer p {
    font-size: 1rem;
    color: black; /* Change general paragraph text to black */
}

footer hr {
    border-top: 1px solid #555;
    width: 50%;
    margin: 20px auto;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    footer {
        text-align: center;
    }

    .footer-heading {
        font-size: 1.4rem;
    }

    .footer-link {
        font-size: 1.1rem;
    }

    .footer-separator {
        padding: 15px 0;
    }

    .footer-hr {
        width: 80%;
    }
}
        .floating-btn {
            position: fixed;
            top: 80px; /* Adjust to move it 3 inches down from the top (about 80px) */
            right: 20px; /* Keeps the button on the right side */
            background-color: #FFCC00; /* Purple color */
            color: white; /* Text color (heart emoji will be white) */
            padding: 15px 30px; /* Padding for a good button size */
            border-radius: 50px; /* Oval shape */
            font-size: 24px; /* Larger text size */
            text-align: center; /* Centers the content */
            text-decoration: none; /* Removes the underline */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
            transition: background-color 0.3s; /* Smooth color change on hover */
        }

        .floating-btn:hover {
            background-color: #8e44ad; /* Darker purple on hover */
        }