    /*===== GOOGLE FONTS =====*/
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    /*===== VARIABLES CSS =====*/
    :root {
        --header-height: 3rem;
        --font-semi: 600;
        
        /*===== New Color Scheme Based on Business Card =====*/
        --first-color: var(--accent-color)      /* Dark blue (primary) - from card text */
        --second-color: #D4A76A;      /* Golden brown (accent) - from card highlights */
        --dark-color: var(--accent-color)       /* Very dark blue (for headings) */
        --light-color: #F5F5F5;       /* Light gray (backgrounds) */
        --text-color: #333333;        /* Dark gray (main text) */
        --white-color: #FFFFFF;       /* White */
        --accent-color: #B8860B;      /* Gold accent (buttons, highlights) */
        
        /*===== Font & Typography =====*/
        --body-font: 'Poppins', sans-serif;
        --big-font-size: 2rem;
        --h2-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --smaller-font-size: 0.875rem;
        
        /*===== Margins =====*/
        --mb-2: 1rem;
        --mb-4: 2rem;
        --mb-5: 2.5rem;
        --mb-6: 3rem;
        
        /*===== z index =====*/
        --z-back: -10;
        --z-fixed: 100;
    }

    @media screen and (min-width: 968px) {
        :root {
            --big-font-size: 3.5rem;
            --h2-font-size: 2rem;
            --normal-font-size: 1.1rem;
            --smaller-font-size: .9rem;
        }
    }

    /*===== BASE =====*/
    *,::before,::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: var(--header-height) 0 0 0;
        font-family: var(--body-font);
        font-size: var(--normal-font-size);
        color: var(--text-color);
        background-color: var(--white-color);
        line-height: 1.6;
    }

    h1, h2, h3, h4, p {
        margin: 0;  
        color: var(--text-color);
    }

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    a {
        text-decoration: none;
        color: var(--dark-color);
    }

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

    /*===== CLASS CSS ===== */
    .section-title {
        position: relative;
        font-size: var(--h2-font-size);
        color: var(--dark-color);
        margin-top: var(--mb-2);
        margin-bottom: var(--mb-4);
        text-align: center;
    }

    .section-title::after {
        position: absolute;
        content: '';
        width: 80px;
        height: 4px;
        left: 0;
        right: 0;
        margin: auto;
        top: 2.2rem;
        background-color: var(--first-color);
        border-radius: 2px;
    }

    .section {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    /* Typewriter effect */
    #typewriter-text {
        display: inline-block;
    }

    .typewriter-cursor {
        display: inline-block;
        margin-left: 3px;
        width: 3px;
        height: 1em;
        background-color: var(--first-color);
        animation: blink-caret 0.75s step-end infinite;
        vertical-align: middle;
    }

    @keyframes blink-caret {
        from, to { opacity: 0 }
        50% { opacity: 1 }
    }

    /*===== LAYOUT =====*/
    .bd-grid {
        max-width: 1200px;
        display: grid;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1.5rem;
    }

    .l-header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: var(--z-fixed);
        background-color: var(--white-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /*===== NAV =====*/
    .nav {
        height: var(--header-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: var(--font-semi);
        padding: 0 1.5rem;
    }

    .nav {
        background-color: var(--white-color);
    }

    .nav__logo {
        color: var(--dark-color);
    }

    @media screen and (max-width: 767px) {
        .nav__menu {
            position: fixed;
            top: var(--header-height);
            right: -100%;
            width: 80%;
            height: 100vh;
            padding: 2rem;
            background-color: var(--white-color);
            transition: .5s;
            z-index: var(--z-fixed);
            box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        }
    }

    .nav__item {
        margin-bottom: var(--mb-4);
    }

    .nav__link {
        position: relative;
        color: var(--text-color);
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav__link:hover {
        color: var(--accent-color);
    }

    .nav__link:hover::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 3px;
        left: 0;
        top: 2rem;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    .nav__logo {
        color: var(--dark-color);
        font-weight: 700;
        font-size: 1.2rem;
    }

    .nav__toggle {
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /*Active menu*/
    .active-link {
        color: var(--accent-color);
    }

    .active-link::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 3px;
        left: 0;
        top: 2rem;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    /*=== Show menu ===*/
    .show {
        right: 0;
    }

    /*===== HOME =====*/
    /* Update the CSS for the home section: */
    .home {
        position: relative;
        row-gap: 3rem;
        padding: 6rem 0 4rem;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        background-image: url('../img/construction.jpg');
        color: var(--white-color);
        text-align: center;
        min-height: 100vh;
    }

    .home__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(26, 62, 114, 0.7); /* Dark blue with transparency */
        z-index: 0;
    }

    .home__data {
        position: relative;
        z-index: 1;
    }

    .home__title {
        font-size: var(--big-font-size);
        margin-bottom: var(--mb-4);
        line-height: 1.2;
        color: var(--white-color);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .home__text {
        font-size: 1.2rem;
        margin-bottom: var(--mb-5);
        color: var(--white-color);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .home__social-icon {
        font-size: 1.8rem;
        color: var(--white-color);
        transition: all 0.3s ease;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .home__social-icon:hover {
        color: var(--accent-color);

        transform: translateY(-5px);
    }

    /*BUTTONS*/
    .button {
        display: inline-block;
            background-color: var(--accent-color);

        color: var(--white-color);
        padding: 1rem 2.5rem;
        font-weight: var(--font-semi);
        border-radius: 4px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    }

    .button:hover {
            background-color: var(--dark-color);

        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(26, 101, 158, 0.3);
    }

    /* ===== ABOUT =====*/
    .about__container {
        row-gap: 3rem;
        text-align: center;
    }

    .about__subtitle {
        margin-bottom: var(--mb-2);
        color: var(--first-color);
        font-size: 1.5rem;
        font-weight: 600;
    }

    .about__text {
        margin-bottom: var(--mb-4);
        color: var(--text-color);
        text-align: left;
    }

    .about__stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .stat__item {
        background-color: var(--light-color);
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        min-width: 150px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .stat__item:hover {
        transform: translateY(-5px);
    }

    .stat__item h3 {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
    }

    .stat__item p {
        color: var(--text-color);
        font-size: 1rem;
    }

    @media screen and (min-width: 768px) {
        .about__container {
            grid-template-columns: 1fr;
            text-align: left;
        }
        
        .about__text {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* ===== SERVICES =====*/
    .services__container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;

    }

    .services__item {
        background: var(--white-color);
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .services__item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-color);

    }

    .services__icon {
        font-size: 3rem;
        color: var(--accent-color);

        margin-bottom: 1.5rem;
    }

    .services__title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: var(--dark-color);

    }

    .section-title::after {
        background-color: var(--accent-color);
    }

    .services__text {
        color: var(--text-color);
        font-size: 1rem;
    }

    /* ===== PROJECTS =====*/
    .work__container {
        row-gap: 2rem;
        margin-top: 3rem;
    }

    .work__img {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        height: 250px;
    }

    .work__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s;
    }

    .project__overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 1.5rem;
        color: white;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .work__img:hover .project__overlay {
        transform: translateY(0);
    }

    .project__overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .project__overlay p {
        font-size: 0.9rem;
        color: var(--second-color);
    }

    .work__img:hover img {
        transform: scale(1.1);
    }

    /* ===== TESTIMONIALS =====*/
    .testimonials__container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .testimonial__item {
        background: var(--white-color);
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .testimonial__item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .testimonial__content {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .quote__icon {
        font-size: 3rem;
        color: var(--accent-color);
        opacity: 0.2;
        position: absolute;
        top: -1rem;
        left: -0.5rem;
    }

    .testimonial__text {
        color: var(--text-color);
        font-style: italic;
        position: relative;
        z-index: 1;
    }

    .testimonial__author {
        display: flex;
        flex-direction: column;
    }

    .testimonial__author h4 {
        color: var(--dark-color);
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .testimonial__author p {
        color: var(--first-color);
        font-size: 0.9rem;
    }

    /* ===== CONTACT =====*/
    .contact__container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }

    .contact__info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .info__item {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--light-color);
        padding: 1.5rem;
        border-radius: 8px;
    }

    .info__item i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    .contact__form {
        display: grid;
        gap: 1.5rem;
    }

    .contact__input {
        width: 100%;
        font-size: var(--normal-font-size);
        font-weight: var(--font-semi);
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #ddd;
        outline: none;
        background-color: var(--white-color);
        transition: border 0.3s;
    }

    .contact__input:focus {
        border-color: var(--first-color);
    }

    .contact__input::placeholder {
        color: #999;
    }

    .contact__button {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    @media screen and (min-width: 768px) {
        .contact__container {
            grid-template-columns: 1fr 1fr;
        }
        
        .contact__info {
            margin-bottom: 0;
        }
    }

    /* ===== FOOTER =====*/
    .footer {
        background-color: var(--dark-color);
        color: var(--white-color);
        padding: 4rem 0 2rem;
    }

    .footer__container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .footer__title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        color: var(--white-color);
        position: relative;
    }

    .footer__title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
    }

    .footer__icon:hover {
        color: var(--accent-color);
    }

    .footer__about p {
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.8);
    }

    .footer__links ul li {
        margin-bottom: 1rem;
    }

    .footer__links ul li a {
        color: rgba(255,255,255,0.8);
        transition: color 0.3s;
    }

    .footer__links ul li a:hover {
        color: var(--first-color);
    }

    .footer__services ul li {
        margin-bottom: 1rem;
        color: rgba(255,255,255,0.8);
    }

    .social__icons {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer__icon {
        font-size: 1.5rem;
        color: var(--white-color);
        transition: all 0.3s ease;
    }

    .footer__icon:hover {
        color: var(--first-color);
        transform: translateY(-3px);
    }

    .footer__newsletter {
        display: flex;
        margin-top: 1rem;
    }

    .footer__newsletter input {
        flex: 1;
        padding: 0.8rem;
        border: none;
        border-radius: 4px 0 0 4px;
        outline: none;
    }

    .footer__newsletter button {
        padding: 0 1.2rem;
    background-color: var(--accent-color);
        color: white;
        border: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .footer__newsletter button:hover {
        background-color: #e05a2b;
    }

    .footer__bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer__copy {
        font-size: var(--smaller-font-size);
        color: rgba(255,255,255,0.6);
    }

    /* ===== MEDIA QUERIES =====*/
    @media screen and (max-width: 320px) {
        .home {
            row-gap: 2rem;
        }
        
        .stat__item {
            min-width: 120px;
        }
    }

    @media screen and (min-width: 576px) {
        .home {
            padding: 8rem 0 4rem;
        }
        
        .about__stats {
            justify-content: center;
        }
        
        .work__container {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    @media screen and (min-width: 768px) {
        body {
            margin: 0;
        }
        
        .section {
            padding-top: 6rem;
            padding-bottom: 4rem;
        }
        
        .section-title {
            margin-bottom: var(--mb-6);
        }
        
        .section-title::after {
            width: 100px;
            top: 3rem;
        }
        
        .nav {
            height: calc(var(--header-height) + 1.5rem);
        }
        
        .nav__list {
            display: flex;
            padding-top: 0;
        }
        
        .nav__item {
            margin-left: var(--mb-6);
            margin-bottom: 0;
        }
        
        .nav__toggle {
            display: none;
        }
        
        .home {
            padding: 10rem 0 4rem;
        }
        
        .home__data {
            text-align: left;
        }
        
        .home__social {
            justify-content: flex-start;
        }
        
        .about__container {
            padding-top: 2rem;
        }
        
        .work__container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media screen and (min-width: 992px) {
        .home {
            padding: 12rem 0 4rem;
        }
        
        .home__title {
            font-size: 4rem;
        }
        
        .work__container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Add this to your CSS */
    .nav__logo-container {
        display: flex;
        align-items: center;
    }

    .nav__logo-img {
        height: 40px; /* Adjust as needed */
        width: auto;
        margin-right: 10px;
    }

    .nav__logo-text {
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--dark-color);
    }

    /* For smaller screens, you might want to adjust the logo size */
    @media screen and (max-width: 768px) {
        .nav__logo-img {
            height: 30px;
        }
        .nav__logo-text {
            font-size: 1rem;
        }
    }

    /*===== MAIN PROJECT =====*/
    .main-project {
        background-color: var(--light-color);
    }

.main-project__name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c59d5f; /* Gold-ish accent, stands out */
    margin-bottom: 0.5rem;
    text-transform: uppercase; /* optional: makes it bold in style */
    letter-spacing: 1px; /* optional: spacing for luxury feel */
}


    .main-project__container {
        display: grid;
        gap: 2rem;
    }

    .main-project__header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .main-project__title {
        font-size: 2rem;
        color: var(--dark-color);
        margin-bottom: 0.5rem;
    }

    .main-project__tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color); /* make it stand out */
    margin-bottom: 0.5rem;
}   

    .main-project__location {
        color: var(--accent-color);
        font-size: 1.2rem;
        font-weight: 500;
    }

    .main-project__gallery {
        display: grid;
        gap: 1rem;
    }

    .gallery__main {
        height: 500px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .main-project__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s ease;
        display: none;
    }

    .main-project__img.active-img {
        display: block;
    }

    .gallery__thumbnails {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .thumbnail-img {
        width: 100px;
        height: 70px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .thumbnail-img:hover, .thumbnail-img.active-thumb {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .main-project__details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .details__item {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--white-color);
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .details__item i {
        font-size: 1.8rem;
        color: var(--accent-color);
    }

    .details__item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: var(--dark-color);
    }

    .details__item p {
        font-size: 0.9rem;
        color: var(--text-color);
    }

    .main-project__description {
        background: var(--white-color);
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .main-project__description h4 {
        font-size: 1.3rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

    .main-project__description p {
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .project__features {
        margin-top: 2rem;
    }

    .project__features h4 {
        margin-bottom: 1rem;
    }

    .project__features ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .project__features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .project__features i {
        color: var(--accent-color);
    }

    .main-project__button {
        display: block;
        margin: 2rem auto 0;
        text-align: center;
        max-width: 300px;
    }

    @media screen and (min-width: 768px) {
        .main-project__gallery {
            grid-template-columns: 1fr 100px;
        }
        
        .gallery__thumbnails {
            flex-direction: column;
            overflow-y: auto;
            overflow-x: hidden;
            height: 500px;
        }
        
        .thumbnail-img {
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
        }
    }

    @media screen and (min-width: 992px) {
        .main-project__container {
            grid-template-columns: 1fr 1fr;
        }
        
        .main-project__header {
            grid-column: 1 / -1;
        }
        
        .main-project__gallery {
            grid-column: 1;
            grid-row: 2;
        }
        
        .main-project__details {
            grid-column: 2;
            grid-row: 2;
            align-content: start;
        }
        
        .main-project__description {
            grid-column: 1 / -1;
        }
        
        .main-project__button {
            grid-column: 1 / -1;
        }
    }


