@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Sedan:ital@0;1&display=swap');

body {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 800;
}
h1,h2,h3,h4,h5,h6 {
    color: black;
  }
p{
    text-align: justify;
    font-size: 22px;
}
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #000000;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
    font-weight: 800;
}
.navbar-dark .navbar-nav .nav-link:hover{
    color:red

}


.service .service-item img {
    transition: 0.5s;
}
.service .service-item img:hover {
    transition: 0.5s;
}

.service .service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 13px 0px #515151;
    border-radius: 10px;
}



.service-item {
    /* height: 320px; */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}
.service-item:hover {
    background: var(--primary);
}
.service .service-item:hover img {
    transform: scale(1.2);
}
.btn-primary {
    color: #000;
    background-color: #fe0078;
    border-color: #fe0078;
    margin-block: 5px;
    font-weight: bold;
    text-transform: uppercase;

}
 /* Floating Buttons Container */
        .floating-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .floating-buttons img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .floating-buttons img:hover {
            transform: scale(1.1);
        }

        /* Responsive: Adjust Button Sizes on Mobile */
        @media (max-width: 600px) {
            .floating-buttons img {
                width: 50px;
                height: 50px;
            }
        }

/* Reset some default styles */
body, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin: 10px 0;
    }
    
    .footer-social {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .footer-logo a {
        font-size: 20px;
    }

    .footer-links a,
    .social-icon {
        font-size: 14px;
    }
}





table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif
}

td,th {
    text-align: center;
    padding: 10px;
    border: 1px solid #000000;
    color: #ffffff !important

}

th {
    background-color: #8b0000 !important;
    
}

td {
    color: #000 !important;
    align-content: center

}

td a {
    color: #f5f40b
}

button {
    background-color: #e6e200;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer
}


