body {
    font-family: Arial, sans-serif;
}

.bg-maroon {
    background: #600529;
}


.text-maroon {
    color: #600529;
}

.bg-lite {
    background-color: #ab9275;
}

.vh-lg-100 {
    height: 100vh;
}
@media(max-width: 428px){
    .fs-sm-20{
        font-size: 20px;
    }
}

@media(max-width: 768px) {
    .vh-auto {
        height: auto !important;
    }

    .mt-103 {
        margin-top: 100px;
    }
}

.roounded-18 {
    border-radius: 18px !important;
}

.header {
    background: #600529;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-brand {
    width: 15%;
}

.navbar-brand img {
    width: 150px;
}

.header .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    margin-right: 15px;
}

.header .btn {
    background: #ab9275;
    color: #fff;
    font-weight: bold;
    margin-inline: 5px;
}

.navbar-toggler {
    border-color: white !important;
    /* Makes the button border white */
}

.navbar-toggler-icon {
    filter: invert(1);
    /* Converts the default black icon to white */
}

.enquiry-box {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 400px;
}

.title {
    font-family: serif;
    color: #600529;
}

.form-label {
    margin-bottom: .5rem;
    position: absolute !important;
    background: white !important;
    padding: 2px !important;
    top: -15px !important;
    left: 10px;
    font-size: .8rem;
    color: #600529;
    font-weight: bold;
}

.form-btn {
    letter-spacing: 0px;
    /* Ensure a base letter-spacing */
    transition: letter-spacing 0.3s ease-in-out;
}

.form-btn:hover {
    border: 1px solid #600529;
    letter-spacing: 1px;
    color: #600529 !important;

}

.project-highlights {
    padding: 50px 0;
}

.project-highlights h2 {
    font-weight: bold;
}

.project-highlights p {
    font-size: 1rem;
    color: #555;
}

.project-card{
    border-radius: 15px !important ;
}

.highlight-table {
    width: 100%;
    margin-top: 20px;
}

.highlight-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.project-img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.element-box {
    text-align: center;
    margin-top: 30px;
}

.element-icon {
    width: 80px;
    height: 80px;
    background-color: #600529;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.element-icon img {
    width: 60%;
}

.element-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.element-list {
    list-style: none;
    padding: 0;
    color: #444;
}

.element-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 5px;
}

.element-list li::before {
    content: "•";
    color: #842f3b;
    font-size: 1.2rem;
    margin-right: 8px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Creating different sizes for jumbled effect */
.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

.projects-section {
    /* padding: 50px 20px; */
    /* background-color: #f8f9fa; */
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #fff;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card .card-body {
    padding: 15px;
}

.project-card ul {
    padding-left: 20px;
}

.btn-know-more {
    background-color: white;
    color: #600529;
    font-weight: bold;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    /* Fixed height for all logos */
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensures logos fit inside without distortion */
    transition: transform 0.3s ease-in-out;
    /* Smooth transition on hover */
}

.partner-logo img:hover {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

.footer {
    background-color: #600529;
    /* Dark green shade */
    color: #fff;
    padding: 20px 0;
}

.footer-logo {
    max-width: 150px;
}

.footer p {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.6;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    /* padding-top: 15px; */
}

.footer-logo img {
    width: 150px;
}

/* Black Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 998;
}

/* Popup Form */
.popup-form {
    position: fixed;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: none;
    z-index: 999;
}