body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 10px 0; /* Padding adjusted to zero on the sides */
    width: 100%; /* Ensure it spans the full width of the viewport */
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.navbar .logo {
    font-size: 1.5em;
    color: #fff;
}

.navbar img {
    height: auto;
    width: auto;
    max-height: 50px; /* Adjust based on your preference */
}

.menu {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Space between logo and menu */
    text-transform: uppercase;
}


.menu a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px; /* Horizontal spacing between links */
    padding: 10px 10px; /* Padding for clickable area */
    font-size: 16px; /* Font size for links */
}

.hero {
    position: relative;
    background: url('images/IMG_5445.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.market-hero {
    position: relative;
    background-color: #000;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.about-hero {
    position: relative;
    background: url('images/about-us.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 background-color: rgba(0, 0, 0, 0.6);
}

.projects-hero {
    position: relative;
    background: url('images/IMG_6190.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

/* Projects Display Grid */
.projects-display {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    background-color: #000;
}

/* Card variations */
.project-card {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

/* Large card (spans 2 columns) */
.project-card.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* Regular card */
.project-card.regular {
    aspect-ratio: 1/1;
}

/* Wide card (spans 2 columns) */
.project-card.wide {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.project-card:hover img {
    opacity: 0.7;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.project-info h3 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-display {
        grid-template-columns: 1fr;
    }
    
    .project-card.large,
    .project-card.regular,
    .project-card.wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
}

.hero-content h1 {
    position: absolute;
    font-size: 65px;
    line-height: 65px;
    font-weight: 700;
    left: 50px;
    text-wrap: nowrap;
    text-transform: uppercase;
    z-index: 2;
}

.info-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    width: 300px; /* Adjust based on content */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.info-card h2, .info-card p {
    color: #333;
}

.info-card .btn {
    background-color: red;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block; /* Block level for full width */
    text-align: center;
    margin-top: 10px;
}

.info-card .sub-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

.contact-btn {
    background-color: #E1262D; /* Red background */
    color: white; /* White text */
    padding: 10px 30px; /* Increased horizontal padding from 15px to 30px */
    border-radius: 2px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    font-weight: 600; /* Bold text */
    font-size: 10px; /* Added this line to decrease font size */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.contact-btn:hover {
    background-color: darkred; /* Darker red on hover for better interaction feedback */
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.offer-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    gap: 50px;
}

.offer-block.reverse {
    flex-direction: row-reverse;
}

.offer-content {
    flex: 1;
    padding: 20px;
}

.offer-image {
    flex: 1;
}

.offer-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.emphasis {
    font-weight: 100;
}

.offer-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-block {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .offer-block.reverse {
        flex-direction: column;
    }

    .offer-content, .offer-image {
        width: 100%;
    }

    .offer-content h2 {
        font-size: 2rem;
    }
}

.map-section {
    background-color: #333333;
    padding: 80px 0;
    color: white;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 30px; /* Space between line and heading */
}

.map-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.map-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.map-content .emphasis {
    font-weight: 100;
}

.map-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    width: 100%;
    margin-bottom: 15px;
}

.map-container {
    width: 100%;
    margin: 40px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }

    .map-content {
        padding: 0 20px;
    }

    .map-content h2 {
        font-size: 2rem;
    }

    .map-content p {
        font-size: 1rem;
    }

    .map-container {
        padding: 0 10px;
    }
}

.menu a.active {
    color: #900103;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 0px 20px;
}

.vision-section {
    margin-bottom: 60px;
}

.vision-section h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
}

.vision-section h2 .light-text {
    font-weight: 300;
    margin-right: 15px;
}

.vision-text {
    max-width: 1200px;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 40px 20px;
    }

    .vision-section h2 {
        font-size: 2rem;
    }

    .vision-text p {
        font-size: 1rem;
    }
}

.contact-locations {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
}

.location-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Aligns content to the right */
}

.location {
    padding: 20px;
    width: fit-content; /* Makes container fit content width */
}

.location h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.address p {
    margin: 5px 0;
    line-height: 1.4;
    color: #fff;
    text-align: left; /* Aligns text to the right */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-locations {
        padding: 40px 20px;
    }

    .location {
        text-align: center;
    }
    
    .address p {
        text-align: center; /* Centers text on mobile */
    }
}

.main-footer {
    background-color: #000;
    padding: 20px;
    color: #fff;
    position: relative;
}

.footer-separator {
    width: 100%;
    height: 1px; /* Thin line */
    background-color: #fff;
    margin-bottom: 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-logo img {
    height: auto;
    width: 100rem;
    max-width: 150px;
}

.footer-text p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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