  /* Custom News Ticker Animation */
        .news-ticker {
            overflow: hidden;
            white-space: nowrap;
            border-left: 1px solid #ddd;
            padding-left: 15px;
        }
        .ticker-content {
            display: inline-block;
            animation: ticker 30s linear infinite;
        }
        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        #call_svg{
            width: 25px;
            border-radius: 4px;
        } 
        #social_media_svg{
            width: 30px;
        }
        .navbar-custom {
            background-color: #f8f9fa; /* Light gray */
        }
        #logo_image{
            width: 115px;
        }
        /* Fixed height carousel */
        .fixed-height-carousel {
            height: 400px; /* Your specific height */
        }
        .fixed-height-carousel .carousel-item {
            height: 100%;
        }
        .fixed-height-carousel .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        /* Optional caption styling */
        .fixed-height-carousel .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            padding: 15px;
        }
        #order_button{
            background-color: aliceblue;
            cursor: pointer;
            border-radius: 5px;
             transition: background-color 0.3s;
        }
        #order_button:hover{
            background-color: #007bff;
        }
        #products_image{
            border-radius: 5px;
        }
        #first_header{
            background-color: #007bff;
            font-size: large;
            font-weight: 500;
        }
        #header_link{
            font-size: large;
            font-weight: 500;
        }
        #header_link1{
            font-size: large;
            font-weight: 500;
            color: #007bff;
            cursor: pointer;
        }
        #header_link1:hover{
            color: black;
        }
        #contacts_paragraph, #news_ticker_paragraph{
            padding-top: 5px;
            color: white;
        }
        #contacts_paragraph{
            padding-left: 50px;
            /* font-weight: 400; */
        }
        #footer{
            background-color: #007bff;
            font-size: large;
            font-weight: 500;
        }
        #footer_link, #footer_paragraph{
            text-decoration: none;
            color: white;
        }
        #social_media_svg{
            border-radius: 8px;
        }
        #copyright_paragraph, hr{
            color: white;
            padding-left: 250px;
        }
        /* Styles for phones (portrait and landscape) */


@media (max-width: 768px) {
    #copyright_paragraph {
        padding-left: 0px !important;
    }
}