.grad-bg {
    margin: 0;
    height: 100vh;
    background: linear-gradient(45deg, #000C36 75%, #840f3c);
    background-size: cover;
    background-attachment: fixed;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.scrolling-flash-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(#000C36 75%);
    color: #f5efef;
    position: relative;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    height: 50px;
    font-size: larger;
    display: flex;
    align-items: center;
}

/* Scrolling Content */
.scrolling-flash-content {
    white-space: nowrap;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    animation: scroll-horizontel 10s linear infinite, scroll-horizontel 20s linear infinite, flash 1s infinite;
}


/* Horizontal Scrolling Animation */
@keyframes scroll-horizontel {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Flashing Animation */
@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* custom-styles.css */
.company-name {
    font-weight: bold;
    font-size: 2rem;
    /* Reduced size */
    color: #FF0062;
    /* Bright color matching the gradient */
    font-family: "Roboto Slab";
    /* Stylish font family */
    text-shadow: 1px 1px 2px rgba(14, 13, 13, 0.3);
    /* Subtle shadow for a softer effect */
    letter-spacing: 1px;
    /* Adds spacing between letters for a more elegant look */
}

/* Responsive font size for screens smaller than 768px */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.5rem;
        /* Adjusted size for smaller screens */
    }
}

@media (max-width: 380px) {
    .company-name {
        visibility: visible;
        font-size: 1rem ;
        margin-top: 0%;
    text-align: left;  }
}

/* Navigation styling */
.nav-list {
    text-align: center;
}

.nav-link {
    color: #d1c3c8;
    /* Bright color */
    text-decoration: none;
    font-family: Roboto Slab;
    font-size: 1.2rem;
    /* Adjust size as needed */
    padding: 10px 15px;
}

.nav-link:hover {
    color: #000C36;
    /* Dark color on hover */
    background-color: #FF0062;
    /* Bright background on hover */
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(152, 164, 236, 0.3);
    /* Smooth transition */
}

/* Button styling */
.quote-button {
    background-color: #FF0062;
    /* Bright matching color */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: "Roboto Slab";
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.quote-button:hover {
    background-color: #2488d9;
    /* Dark color on hover */

}

/* Button shake animation */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}

.quote-button:hover {
    animation: shake 0.6s ease;
}

/* Background styling for the container */
.container-bg {
    background: linear-gradient(55deg, #000C36);
    /* Gradient background */
    padding: 30px;
    /* Padding for spacing */
    border-radius: 10px;
    /* Rounded corners */
    border-color: #b0055e;
    margin: 20px auto;
    /* Center the container */
    max-width: 1200px;
    /* Max width to fit large screens */
    position: relative;
    /* To place pseudo-elements if needed */
}

.live-update-container {
    width: 100%;
    height: 400px;
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    border: 2px solid #7f777a;
    border-radius: 10px;
    background: linear-gradient(45deg, #000C36 75%, #840f3c);
    color: #f7f7f8;
    /* Text color for better contrast */
    box-shadow: 0 8px 16px rgba(140, 90, 117, 0.2);
    overflow: hidden;
    /* Hide overflow */
    position: relative;
}

.live-update-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    color: #c8084e;
    font-size: 34px;
}

.live-update-wrapper {
    height: 300px;
    overflow: hidden;
    /* Hide overflow */
    position: relative;
}

.live-update-content {
    display: flex;
    font-size: 18px;
    flex-direction: column;
    animation: scroll 30s linear infinite;
}

.live-update-content p {
    margin-bottom: 10px;
    padding-right: 10px;

    /* Padding for scroll effect */
}

.live-update-content p:hover {
    color: #000C36;
    /* Dark color on hover */
    background-color: #FF0062;
    /* Bright background on hover */
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    transform: scale(1.01);
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(251, 245, 245, 0.3);
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Jumbotron styling */
.Hero {
    margin: 30px 10px;
}

.jumbotron {
    margin: 0px 0px 40px;
    background: transparent;
    /* No background for jumbotron */
    color: #f5f1f3;
    font-weight: 500;
    font-size: 60px;
}

.greet {
    color: #e3075b;
    font-weight: 500;
    font-size: 70px;
    margin: 0px 0px 40px;
    font-family: 'Roboto slab', serif;
}

.lead {
    color: #f0f0f1;
    font-size: 42px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 0;
}

.btn-custom {
    margin-left: 40%;
    background-color: #007bff;
    color: #ffff;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-sahdow 0.3s ease;
}

/* Hover button*/
.btn-custom:hover {
    background-color: #ff0062;
    color: #c6c3c6;
    font-weight: 600;
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.serv {
    color: #e0e0e0;
    font-size: 32px;
    font-family: 'Roboto slab', serif;
    margin: 15px;
}

/* Style for the Service Cards */
.card {
    border: 4px solid #e1dfe0;
    /* Light grey frame */
    background-color: #000C36;
    color: #e0e0e0;
    border-radius: 15px;
    /* Rounded corners */
    overflow: hidden;
    /* Ensure content stays within card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition for hover effects */
}

/* Ensure all images have the same height */
.card-image {
    width: 100%;
    height: 200px;
    /* Fixed height for all images */

}

.card h3 {
    color: #fd0b64;
}

.card p {
    line-height: 1.5;
}

/* Add hover effect to the cards */
.card:hover {
    transform: scale(1.05);
    /* Slightly enlarge the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Darker shadow on hover */
    cursor: pointer;
}

/* Customize the button inside the card */
.btn-custom {
    background-color: #007bff;
    /* Custom background color */
    color: #ffffff;
    /* Text color */
    padding: 12px 24px;
    /* Padding around the text */
    font-size: 18px;
    /* Font size */
    border-radius: 8px;
    /* Rounded corners */
    border: none;
    /* Remove border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition */
}

/* Add hover effect to the button */
.btn-custom:hover {
    background-color: #FF0062;
    /* Darker shade on hover */
    transform: scale(1.1);
    /* Slightly increase size on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Darker shadow on hover */
}