<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    /*background-color: #38b6ff;*/
}

header {
    min-height: 140px;
    background-color: #2f92e7;
    padding: 20px 10px;
}

header img {
    max-height: 90px;
}

@media (min-width: 767.99px) {
    .h_i_l {
        float: left;
    }

    .h_i_r {
        float: right;
    }
}


@media (min-width: 575.99px) and (max-width: 767.98px) {
    header {
        min-height: 100px;
    }

    .h_i_l {
        max-height: 60px;
        float: left;
    }

    .h_i_r {
        max-height: 60px;
        float: right;
    }
}

@media (max-width: 575.98px) {
    header {
        padding: 10px 5px;
    }

    .h_i_l {
        max-height: 60px;
        max-width: 90%;
        margin-right: auto !important;
        margin-left: auto !important;
        display: block !important;
        padding: 5px 2px;
    }

    .h_i_r {
        max-height: 60px;
        max-width: 90%;
        margin-right: auto !important;
        margin-left: auto !important;
        display: block !important;
        padding: 5px 2px;
    }
}



.navbar {
    background-color: #ffd700;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #161616;
    padding: 1rem;
    font-weight: 600;
}

.nav-item {
    padding: 0 .25rem;
}

.nav-link {
    padding: 1rem 1.5rem !important;
}

.navbar-nav .nav-link:hover {
    background-color: #f8c100;
}

.dropdown-menu {
    background-color: #ffd700;
    border: none;
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: #000;
}

.dropdown-item:hover {
    background-color: #f8c100;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

/* If you want equal spacing between items, add this */
.nav-item {
    text-align: center;
}



.intro_area {
    font-weight: 600;
    background-color: #fff;
    color: #161616;
    min-height: 300px;
    text-align: center;
    background-image: url(Images/bg1.jpg);
    background-size: cover;
}

.intro_area .boxarea{
    background: #25252586;
    padding: 5px 20px;
    border-radius: 30px;
}

.intro_area h2 {
    font-weight: 700;
    color: #fff;
}
.intro_area h3 {
    font-weight: 600;
    color: #fff;
}
.intro_area p {
    text-align: justify;
    color: #d1d1d1;
}




/* Remove any default margins/paddings */
/* 
 body,
 html {
     margin: 0;
     padding: 0;
     width: 100%;
     overflow-x: hidden;
 }
     */

/* Full width carousel styles */
.carousel {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Responsive heights for carousel items */
.carousel-item {
    /* Default height for large screens */
    height: 500px;
}

/* Medium devices (tablets) */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 400px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 767.98px) {
    .carousel-item {
        height: 300px;
    }
}

/* Extra small devices (portrait phones) */
@media (max-width: 575.98px) {
    .carousel-item {
        height: 200px;
    }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive caption styles */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

/* Adjust caption text size for mobile */
@media (max-width: 767.98px) {
    .carousel-caption h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .carousel-caption {
        padding: 10px;
    }
}

/* Hide caption on very small screens */
@media (max-width: 575.98px) {
    .carousel-caption p {
        display: none;
    }

    .carousel-caption {
        padding: 5px;
    }
}

















.project-details-area{
    background: url('Images/bg4.png') center/cover;
    background-color: #ececec;
}
.project-details-h1 {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 24px;
}
.project-details {
    margin-left: 20px;
}
.project-details p {
    margin-bottom: 10px;
}
.bullet {
    color: #666;
    margin-right: 8px;
}


















.gallery-container {
    padding: 1rem;
}
.gallery-container h2{
    padding-top: 2rem;
    font-weight: 700;
}
.gallery-item {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 2rem;
}

/* Filter buttons styling */
.filter-buttons {
    margin-bottom: 2rem;
}

.filter-buttons .btn {
    margin: 0.25rem;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 180px;
    }
}



footer a{
    color: #fff;
    text-decoration: none;
}
.footer-top {
    background: url('Images/bg2.jpg') center/cover;
    padding: 40px 0;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    color: white;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-bottom {
    background-color: #003366;
    color: white;
    padding: 15px 0;
}

.footer-contact {
    margin-bottom: 10px;
}

.footer-contact strong {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .footer-contact {
        margin: 5px 0;
    }
}</pre></body></html>