<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Resetting default styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

footer {
    margin-top: 40px;
    background-color: #343a40; /* Background color for footer */
    padding: 20px 0; /* Padding for footer */
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    transition: top 0.3s;
}

.offcanvas {
    background-color: #212428; /* Dark background for the offcanvas */
    color: white; /* White text color */
    padding: 20px; /* Padding inside the offcanvas */
}

.offcanvas-header {
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space between title and button */
    align-items: center; /* Center items vertically */
}

.offcanvas-title {
    font-size: 18px; /* Title font size */
    font-weight: bold; /* Bold title */
    color: #ffffff; /* White title color */
}

.btn-close {
    background-color: white; /* Transparent background for close button */
    border: none; /* No border */
    font-size: 24px; /* Font size for close button */
    color: white; /* Close button text color */
    cursor: pointer; /* Pointer cursor for the button */
}

.btn-close:hover {
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent white on hover */
}

.btn-close:focus {
    outline: none; /* Remove outline on focus */
}

.navbar-brand {
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
}

.dark-bg {
    background-color: #212428; /* Set the desired background color */
    color: white; /* Optional: change text color to white for better contrast */
    padding: 10px; /* Optional: add some padding */
}

.btn {
    background-color: rgb(6, 40, 86);
    color: aliceblue;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.btn:hover {
    background-color: rgb(109, 154, 219);
    color: #ffffff;
}

/* Navbar toggler */
.navbar-toggler {
    background-color: rgba(0, 0, 0, 0);
    border: 2px;
    font-size: 24px;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

/* Navbar links */
.nav-link {
    color: rgb(255, 255, 255);
    font-weight: 1000;
    position: relative;
    font-size: 19px;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.941);
}

/* Custom nav links */
.custom-nav-links .nav-link {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
}

.custom-nav-links .nav-link:hover,
.custom-nav-links .nav-link.active {
    color: inherit;
}

@media (min-width: 991px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: rgba(99, 164, 239, 0.831);
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before {
        width: 100%;
        visibility: visible;
    }
}

.nav-link.active,
.nav-link:focus {
    background-color: #333333; /* Dark gray background */
    color: #000000 !important; /* White font color */
    border-radius: 5px; /* Optional: rounded corners */
}

/* Text colors */
.texta {
    color: rgba(255, 255, 255, 0.831);
}

.text {
    color: rgba(255, 255, 255, 0.801);
}

.cat {
    color: #000000c7;
}

.us {
    color: #000000d3;
}

/* Offcanvas styles */
.offcanvas {
    background-color: #212428; /* Change to your preferred background */
}


/* Heading styles */
h2 {
    font-size: 3.4rem;
    font-weight: bold;
    letter-spacing: -0.3px;
    line-height: 1.3;
    color: #000000d3;
}

/* Card styles */
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures even space distribution */
    margin-bottom: 20px; /* Add spacing between cards if needed */
}

.card img {
    height: 200px; /* Adjust as needed */
    object-fit: cover; /* This will ensure that the image is scaled properly */
}

.card-title {
    font-size: 2.2rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    font-weight: bold;
    color: white; /* Pure white */
    text-align: center; /* Center all text in the card body */
}

.card-body {
    flex-grow: 1; /* Makes the body stretch */
    text-align: center; /* Center all text in the card body */
}

/* Carousel */
.w-100-height {
    height: 80vh;
    width: 100%;
}

.carousel-item {
    min-height: 300px;
}

.carousel-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: rgb(0, 0, 0);
    z-index: 1;
}

.card-bottom {
    right: 0;
    margin-top: -178px;
}

/* Our mission card color */
.card-color {
    background: #2b2626;
}

/* Responsive styles */
@media only screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }

    .carousel-caption h5 {
        font-size: 30px;
        letter-spacing: 0;
        line-height: normal;
    }

    .carousel-caption p {
        padding: 10px 15px;
        font-size: 15px;
    }

    .card-bottom {
        display: none;
    }
}

.about h2 {
    font-size: 1.4rem;
    letter-spacing: -0.4px;
    line-height: 1.2;
    color: #000000;
}

.bg-footer {
    background-color: #000;
    padding: 50px 0 30px;
}

.bg-footer a {
    text-decoration: none;
    color: aqua;
}

/* Custom CSS for About Us section */
.about-section {
    color: black;
}

.about-section h2,
.about-section h5 {
    color: black;
}

.about-section p {
    color: black;
}

.about-section .card {
    background-color: black;
    padding: 10px; /* Add padding inside the cards */
}

.about-section .card-title,
.about-section .card-text {
    color: darkgray !important;
}
</pre></body></html>