@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
}
html{
    scroll-behavior: smooth;
}

.top-bar {
    background: #aa8905;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease-in-out;
}
.top-bar span {
    font-weight: bold;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.1; }
}



.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
}
.logo img{
    height: 70px;
}
.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
}
.nav-links li {
    margin: 0 10px;
}
.nav-links a{
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.nav-links a:hover {
    background: #c49c00;
    color: #000;
    letter-spacing: 2px;
    box-shadow: 0px 4px 10px rgba(228, 255, 78, 0.5);
    transform: scale(1.1);
}
.menu-toggle{
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: none;
}
.menu-toggle.active {
    transform: rotate(90deg);
}



/* Hero section starts */

.hero {
    height: 90vh;
    background: url('../Images/commercial\ porperty\ 2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #c49c00;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #ffffff;
    letter-spacing: 1px;
}

/* Hero section ends */





/* Industry section starts */

.industries {
    text-align: center;
    padding: 60px 5%;
    background: #121212;
}

.industries h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c49c00;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.industries h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #c49c00;
    margin: 10px auto 20px;
}

.industries-description {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.industry-category {
    margin-bottom: 50px;
}

/* Updated grid layout */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 20px; /* Space between cards */
    justify-content: center;
    margin: 0 auto; /* Center the cards */
}

.card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(233, 230, 230, 0.6);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 204, 0, 0.3);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h4 {
    font-size: 1.8rem;
    color: #c49c00;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: left;
}


/* Industry section ends */



/* Quote Section starts */

.quote-section {
    background-color: #202020; 
    padding: 80px 10%;
    color: #fff;
}
.quote-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.quote-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    background: linear-gradient(45deg, #c49c00 0%, #e6b906 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quote-section h4::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background-color: #e6b906;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #ddd;
}
.quote-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
    flex-wrap: nowrap;
}
.steps-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #be9a09;
    z-index: 1;
}
.step {
    background: linear-gradient(45deg, #db3627, rgb(228, 192, 51));
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(184, 182, 182, 0.404);
    text-align: center;
    width: 22%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.step:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.step-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}
.step p {
    font-size: 1.2rem;
    font-weight: 500;
}
.step a {
    color: #be0808;
    text-decoration: none;
    font-weight: bold;
}
.step a:hover {
    text-decoration: underline;
}

/* Quote Section ends */




/* Footer Section starts */

footer {
    background: linear-gradient(135deg, #0e1d25, #236281);
    color: #ffffff;
    padding: 60px 8%;
    /* border-top-left-radius: 120px;
    border-bottom-right-radius: 120px; */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    color: #e0b60a;
    display: inline-block; 
    text-align: center; 
    width: 100%; 
}
.footer-column p i{
    margin-right: 8px;
    color: #e0b60a;
}
.footer-column h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #a58503;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.footer-column p {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}
.footer-column img {
    width: 160px;
    margin-bottom: 15px;
}
.quick-links {
    text-align: center; 
}
.quick-links h3 {
    position: relative;
    display: inline-block;
}
.quick-links h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #a58503;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}



.latest-blogs {
    margin-left: -15px; 
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}
.social-icons a {
    color: #d1a909;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
}
.social-icons a:hover {
    color: #c49e08;
    transform: scale(1.2);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.footer-column ul li a:hover {
    color: #c49c00;
    text-decoration: underline;
}
.blog-post {
    margin-bottom: 12px;
}
.blog-post a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
}
.blog-post a:hover {
    color: #c49c00;
}
.blog-post span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.658);
    margin-top: 3px;
}
.map-container {
    margin-top: 20px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: none;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 50px; /* Added space to separate from columns */
    position: relative;
}
.footer-bottom::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px; /* Space between the line and copyright */
}
.footer-bottom p {
    font-size: 1rem;
    color: rgb(255, 255, 255);
}


/* Footer Section ends */















@media screen and (max-width: 991px){

    .top-bar {
        font-size: 14px;
        padding: 10px 5%;
        gap: 10px;
    }

    .logo img {
        height: 60px;
    }
    .nav-links a {
        font-size: 18px;
    }

    
}


@media screen and (max-width: 768px){

    .top-bar {
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 8px 5%;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001; /* Ensure it stays above */
    }
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%; 
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        gap: 15px;
        transition: left 0.4s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        border-radius: 10px;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .nav-links.active {
        left: 0;
        opacity: 1;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .menu-toggle.rotated {
        transform: rotate(90deg);
        transition: transform 0.3s ease-in-out;
    }
    .nav-links a {
        font-size: 18px;
        padding: 10px 15px;
        border-radius: 5px;
        transition: background 0.3s ease-in-out;
    }
    .nav-links a:hover {
        background: #b99503;
        color: #fff;
        box-shadow: 0px 4px 10px rgba(228, 255, 78, 0.5);
    }


    .hero {
        height: 70vh; 
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 2rem; 
    }
    .hero p {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }



    .industry-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .industries h2 {
        font-size: 2rem;
    }
    .industry-category h3 {
        font-size: 1.7rem;
    }


    .quote-section {
        padding: 60px 5%;
    }
    .quote-section h4 {
        font-size: 2rem;
    }
    .quote-section .description {
        font-size: 1rem;
        max-width: 90%;
    }
    .quote-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .steps-line {
        display: none;
    }
    .step {
        width: 80%;
        padding: 25px;
    }
    .step-icon {
        font-size: 2rem;
    }
    .step p {
        font-size: 1rem;
    }



    .footer-container {
        grid-template-columns: 1fr; /* Single column layout */
        text-align: center;
    }
    .footer-column {
        align-items: center;
    }
    .footer-column ul {
        padding: 0;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .map-container iframe {
        height: 250px;
    }
    .footer-bottom p{
        font-size: 1rem;
    }
}


@media screen and (max-width: 576px) {
   
    .top-bar {
        font-size: 12px;
        padding: 6px 5%;
        text-align: center;
    }


    .hero {
        height: 65vh;
        padding: 0 10px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .cta-button {
        font-size: 14px;
        padding: 8px 18px;
    }



    .industry-cards {
        grid-template-columns: 1fr;
    }
    .industries h2 {
        font-size: 1.8rem;
    }
    .industry-category h3 {
        font-size: 1.5rem;
    }
    .card-content h4 {
        font-size: 1.5rem;
    }
    .card-content p {
        font-size: 1rem;
        text-align: center;
    }
    


    .quote-section {
        padding: 40px 3%;
    }
    .quote-section h4 {
        font-size: 1.5rem;
    }
    .quote-section .description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .quote-steps {
        flex-direction: column;
        gap: 25px;
    }
    .steps-line {
        display: none;
    }
    .step {
        width: 80%;
        padding: 20px;
    }
    .step-icon {
        font-size: 1.8rem;
    }
    .step p {
        font-size: 0.95rem;
    }



    .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .footer-column h3 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom {
        margin-top: 30px;
    }
    .footer-bottom p{
        font-size: 0.9rem;
    }
}