﻿/*css*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter',sans-serif;
    color: #111827;
    overflow-x: hidden;
}

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

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* TOP BAR */
.top-bar {
    background: #111827;
    color: #fff;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
}

.top-left,
.top-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .top-left span {
        color: #e5e7eb;
    }

    .top-right a {
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }

        .top-right a:hover {
            color: #ff6b00;
        }

.top-contact {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
}

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        text-decoration: none;
        color: #111827;
        font-weight: 600;
    }

.header-buttons {
    display: flex;
    gap: 12px;
}

.call-btn {
    border: 2px solid #ddd;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #111827;
}

.quote-btn {
    background: #ff6b00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mega-menu {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

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

    .mega-column h4 {
        color: #ff6b00;
        margin-bottom: 15px;
    }

    .mega-column a {
        margin-bottom: 10px;
    }

.hero {
    padding-top: 200px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    background: #fff3eb;
    color: #ff6b00;
    padding: 10px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Poppins',sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero h1 span {
        color: #ff6b00;
    }

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-primary {
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
}

.hero-secondary {
    border: 2px solid #ddd;
    color: #111827;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
}

.hero-image img {
    border-radius: 25px;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }




/* CLIENTS SECTION */
.clients-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollClients 30s linear infinite;
}

.client-logo {
    width: 220px;
    min-width: 220px;
    margin: 0 15px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

    .client-logo img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin: 0 auto 15px;
    }

    .client-logo span {
        display: block;
        font-weight: 600;
        color: #111827;
    }
.logo-track:hover {
    animation-play-state: paused;
}
@keyframes scrollClients {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* TRUST BAR */
.trust-bar {
    background: #111827;
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    text-align: center;
}

    .trust-item h3 {
        color: #ff6b00;
        font-size: 42px;
        margin-bottom: 10px;
        font-family: 'Poppins',sans-serif;
    }


    .trust-item p {
        color: #ffffff;
        margin-top: 10px;
        font-size: 16px;
    }



/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

    .section-header span {
        color: #ff6b00;
        font-weight: 600;
    }

    .section-header h2 {
        font-size: 42px;
        margin: 15px 0;
        font-family: 'Poppins',sans-serif;
    }

    .section-header p {
        color: #666;
        line-height: 1.8;
    }

/* SERVICES */

.services {
    padding: 100px 0;
    background: #f8f9fb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-8px);
    }

    .service-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.service-content {
    padding: 25px;
}

    .service-content h3 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .service-content p {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .service-content a {
        text-decoration: none;
        color: #ff6b00;
        font-weight: 600;
    }



/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.about-content span {
    color: #ff6b00;
    font-weight: 600;
}

.about-content h2 {
    font-size: 42px;
    margin: 15px 0 20px;
    font-family: 'Poppins',sans-serif;
    line-height: 1.2;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    background: #f8f9fb;
    padding: 15px;
    border-radius: 12px;
    font-weight: 500;
}

.about-btn {
    display: inline-block;
    margin-top: 10px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
}

/* WHY CHOOSE US */

.why-choose {
    padding: 100px 0;
    background: #f8f9fb;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .3s;
}

    .why-card:hover {
        transform: translateY(-8px);
    }

.why-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* PORTFOLIO */
.portfolio {
    padding: 100px 0;
    background: #ffffff;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    background: #f3f4f6;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: #ff6b00;
        color: #fff;
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

    .portfolio-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .5s;
    }

    .portfolio-item:hover img {
        transform: scale(1.08);
    }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.1) );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
}

    .portfolio-overlay h3 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .portfolio-overlay p {
        opacity: .9;
    }





/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: #f8f9fb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .3s;
}

    .review-card:hover {
        transform: translateY(-8px);
    }

.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
}

.review-top h4 {
    margin-bottom: 5px;
}

.review-top span {
    color: #666;
    font-size: 14px;
}

.review-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    color: #666;
    line-height: 1.8;
}

.google-rating {
    margin-top: 70px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.rating-number {
    font-size: 60px;
    font-weight: 800;
    color: #ff6b00;
    font-family: 'Poppins',sans-serif;
}

.large-stars {
    font-size: 28px;
}

/* PROCESS SECTION */
.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: #f8f9fb;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}

    .process-card:hover {
        transform: translateY(-8px);
    }

.process-number {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.process-card h3 {
    margin-bottom: 15px;
}

.process-card p {
    color: #666;
    line-height: 1.8;
}

/* SERVICE AREAS */

.service-areas {
    padding: 100px 0;
    background: #f8f9fb;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    margin-top: 50px;
}

.area-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    transition: .3s;
    cursor: pointer;
}

    .area-card:hover {
        background: #ff6b00;
        color: #fff;
        transform: translateY(-5px);
    }





/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

    .contact-card h3 {
        margin-bottom: 10px;
    }

    .contact-card p {
        color: #666;
        line-height: 1.8;
    }

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    margin-bottom: 20px;
}

.contact-form button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}



/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 25px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding: 25px;
    background: #f8f9fb;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA */

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: #ff6b00;
    color: #fff;
}

    .cta-section h2 {
        font-size: 52px;
        margin-bottom: 20px;
        font-family: 'Poppins',sans-serif;
    }

    .cta-section p {
        font-size: 18px;
        margin-bottom: 35px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.cta-primary {
    background: #fff;
    color: #ff6b00;
}

.cta-secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* FOOTER */

.footer {
    background: #111827;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 20px;
}

.footer p {
    color: #d1d5db;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    text-decoration: none;
    color: #d1d5db;
}

    .footer a:hover {
        color: #ff6b00;
    }

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    color: #9ca3af;
}



/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.call-float,
/*.whatsapp-float {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: .3s ease;
}*/
.whatsapp-float {
    background: #25D366;
}

    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }

    .call-float:hover,
    .whatsapp-float:hover {
        transform: translateY(-5px);
    }

/* MOBILE */

@media(max-width:768px) {

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .call-float,
    .whatsapp-float {
        width: 58px;
        height: 58px;
    }
}

/*```css*/
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}


.call-float {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ff6b00;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

    .whatsapp-float img {
        width: 34px;
    }



/*lightbox*/
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    .lightbox.active {
        display: flex;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 90vh;
        border-radius: 20px;
    }

#closeLightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}




/* MOBILE */
@media(max-width:991px) {
    .cta-section h2 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* MOBILE */
@media(max-width:991px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


/* MOBILE */
@media(max-width:991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        text-align: center;
    }
}




/* MOBILE */
@media(max-width:991px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* RESPONSIVE */
@media(max-width:991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}




/* MOBILE */
@media(max-width:991px) {
    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }
}



@media(max-width:991px) {
    .mobile-menu-btn {
        display: block;
    }
    .top-bar {
        display: block;
    }

    .top-bar-wrapper {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }
    .top-left {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-right {
        justify-content: center;
    }
    .top-left span:nth-child(3) {
        display: none;
    }

    /*header {
        top: 75px;
    }*/

    .hero {
        padding-top: 220px;
    }
    .header-buttons {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #fff;
        flex-direction: column;
        padding: 40px;
        transition: .4s;
    }

        .nav-menu.active {
            left: 0;
        }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    

        .hero h1 {
            font-size: 42px;
        }

    .mega-menu {
        display: none;
    }
}
