* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f9fb;
    color: #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.btn {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .5);
}



.section {
    padding: 120px 8%;
}

.dark {
    background: #0f172a;
    color: white;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Service Card Styling */

.card {
    position: relative;
    overflow: hidden;

    background: white;
    padding: 35px;
    border-radius: 20px;
    color: black;

    cursor: pointer;

    transition: .4s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.card::before {
    content: "Click to View Service in detail";
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, .65);

    color: white;
    font-size: 1.2rem;
    font-weight: 600;

    opacity: 0;
    transition: .4s ease;
}

.card:hover::before {
    opacity: 1;
}



/* Auto attention animation */

.gallery-item.attention,
.card.attention {
    animation: tiltAttention 1.5s ease-in-out 2;
}

@keyframes tiltAttention {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-4deg) scale(1.03);
    }

    50% {
        transform: rotate(4deg) scale(1.03);
    }

    75% {
        transform: rotate(-2deg) scale(1.03);
    }
}

/* Auto show overlay */

.card::before {
    content: "Click to View Service in detail";
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .65);

    color: white;
    font-size: 1.2rem;
    font-weight: 600;

    opacity: 0;
    transition: .4s;
}

.card.show-overlay::before {
    opacity: 1;
}

.card:hover::before {
    opacity: 1;
}


/* Project attention animation */

.gallery-item.attention,
.card.attention {
    transform-origin: top center;
    animation: swingAttention 1.5s ease-in-out 2;
}

@keyframes swingAttention {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }
}

/* Auto overlay */

.gallery-item.show-overlay::before {
    opacity: 1;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 250px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            #d4af37,
            #f1c40f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: .4s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}




footer {
    text-align: center;
    padding: 30px;
    background: black;
    color: white;
}


.project-details {
    display: none;
    margin-top: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.nav-links a {
    position: relative;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #d4af37;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 15px auto;
    border-radius: 20px;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: 'Click to View Projects in detail';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover::before {
    opacity: 1;
}

.stat-card h3 {
    font-size: 3rem;
    color: #d4af37;
}

.section p {
    line-height: 1.8;
}


.service-details {
    display: none;
    margin-top: 40px;
    background: white;
    color: black;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    animation: fadeIn .4s ease;
}

.service-details h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.service-details ul {
    margin-top: 15px;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 10px;
}



.project-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.project-image {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.project-text {
    flex: 1;
}

.project-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.project-text p {
    line-height: 1.8;
}



.comparison-section {
    margin-top: 30px;
}

.comparison-group {
    margin-bottom: 40px;
}

.comparison-group h4 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.comparison-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.comparison-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: .3s;
}

.comparison-images img:hover {
    transform: scale(1.03);
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 40px auto 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;

    background: white;
    color: #222;

    transition: .3s;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}


.quote-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 9999;

    justify-content: center;
    align-items: center;
}

.quote-content {
    width: 90%;
    max-width: 700px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.quote-form input,
.quote-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.quote-form textarea {
    min-height: 150px;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
}


.service-project {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.service-project.reverse {
    flex-direction: row-reverse;
}

.service-project img {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.service-project-text {
    width: 50%;
}

.service-project-text h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-project-text p {
    line-height: 1.8;
}

.service-project img,
.service-project-text {
    width: 100%;
}

.service-section {
    display: none;
    margin-top: 50px;
}


.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-image {
    flex: 0 0 450px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}


.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}



/*If you dont like the default styling remove the code below*/

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 6px;
}


.service-section {
    display: none;
    margin-top: 50px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 450px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.service-description {
    flex: 1;
}

.service-description h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.service-description p {
    line-height: 1.8;
}

@media(max-width:768px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .service-image {
        flex: auto;
        width: 100%;
    }

}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 450px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.service-description {
    flex: 1;
}

.service-description h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.service-description p {
    line-height: 1.8;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    border: 2px solid rgb(8, 253, 8);
}


.service-section {
    display: none;
    margin-top: 30px;
}

.service-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-section {
    display: none;
}

.service-section.active {
    display: block;
}

/* CONTACT SECTION */

#contact {
    background: #0f0f0f;
}

#contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

/* BOTH PANELS */

.contact-info,
.contact-wrapper form {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(117, 138, 0, 0.2);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

/* LEFT PANEL */

.contact-info h3 {
    color: #758a00;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item:last-child {
    border-bottom: none;
}

/* FORM */

.contact-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-wrapper form input,
.contact-wrapper form textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #2f2f2f;
    background: #171717;
    color: white;
    font-size: 1rem;
    transition: all .3s ease;
}

.contact-wrapper form input::placeholder,
.contact-wrapper form textarea::placeholder {
    color: #888;
}

.contact-wrapper form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-wrapper form input:focus,
.contact-wrapper form textarea:focus {
    outline: none;
    border-color: #758a00;
    box-shadow: 0 0 15px rgba(117, 138, 0, .3);
}

/* BUTTON */

.contact-wrapper form .btn {
    background: linear-gradient(135deg,
            #758a00,
            #9ab500);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.contact-wrapper form .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(117, 138, 0, .35);
}

/* CARD HOVER */

.contact-info:hover,
.contact-wrapper form:hover {
    transform: translateY(-5px);
    transition: .3s;
}

/* MOBILE */

@media (max-width: 900px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-wrapper form {
        padding: 30px;
    }

    #contact h2 {
        font-size: 2.2rem;
    }
}

/* WhatsApp Button */

.whatsapp-btn {
    position: fixed;
    left: 25px;
    bottom: 43px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    z-index: 999;
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Card Animation */


.card {
    position: relative;
    cursor: pointer;
    padding-bottom: 45px;
    transition: all 0.35s ease;
    border: 1px solid rgba(117, 138, 0, 0.2);
    animation: softGlow 3s infinite;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #758a00;
    box-shadow: 0 10px 30px rgba(117, 138, 0, 0.25);
}

.card::after {
    content: "Click to view service details →";
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #758a00;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@keyframes softGlow {
    0% {
        box-shadow: 0 0 0 rgba(117, 138, 0, 0);
    }

    50% {
        box-shadow: 0 0 18px rgba(117, 138, 0, 0.18);
    }

    100% {
        box-shadow: 0 0 0 rgba(117, 138, 0, 0);
    }
}

footer {
    color: white;
}

footer p {
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #ddd;
}


/* SERVICE IMAGES */

.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.service-description {
    flex: 1;
}


/* ===========================
   HERO SECTION
=========================== */

.hero {
    position: relative;
    min-height: 100vh;
    background: url("images/car2.png") center center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.75) 35%,
            rgba(0, 0, 0, 0.45) 65%,
            rgba(0, 0, 0, 0.15) 100%);

    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 8% 60px;
}

.hero-content {
    max-width: 850px;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 25px;

    animation: slideUp .8s ease;
}

.hero-line {
    width: 90px;
    height: 5px;
    background: #d4af37;
    border-radius: 10px;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    max-width: 700px;
    margin-bottom: 50px;

    animation: slideUp 1s ease;
}

/* ===========================
   FEATURES
=========================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-bottom: 45px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;

    min-width: 250px;
    flex: 1;

    padding: 22px;

    background: rgba(11, 0, 0, 0.384);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    transition: all .3s ease;
}

.feature:hover {
    transform: translateY(-6px);

    border-color: #d4af37;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .3);
}

.feature i {
    font-size: 2rem;
    color: #d4af37;
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: white;
}

.feature p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .75);
}

/* ===========================
   BUTTON
=========================== */

.hero .btn {
    background: linear-gradient(135deg,
            #d4af37,
            #f1c40f);

    color: #111;
    padding: 18px 40px;
    border-radius: 60px;

    font-weight: 700;
    font-size: 1rem;

    box-shadow:
        0 15px 35px rgba(212, 175, 55, .35);

    transition: .3s ease;
}

.hero .btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(212, 175, 55, .5);
}

/* ===========================
   ANIMATION
=========================== */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   TABLET
=========================== */

.hero-overlay {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px 30px;

    text-align: center;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .hero {
        text-align: center;
    }

    .hero-overlay {
        justify-content: center;
        padding: 120px 25px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-line {
        margin: 0 auto 25px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .feature {
        text-align: left;
    }

    .hero .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .service-image,
    .service-description {
        width: 100%;
    }

    .service-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .service-description {
        text-align: center;
    }
}

/* Footer */
.cta-footer {
    background:
        linear-gradient(rgba(0, 0, 0, 0.929),
            rgba(0, 0, 0, .75)),
        url("images/footer-bg.jpg");

    background-size: cover;
    background-position: center;

    padding: 40px 8%;
}

.cta-content {
    max-width: 1300px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-text p {
    color: #ddd;
    font-size: 1rem;
}

.cta-btn {
    background: #d4af37;
    color: #111;

    text-decoration: none;

    padding: 18px 40px;
    border-radius: 50px;

    font-weight: 700;
    font-size: 1rem;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: .3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, .35);
}

.cta-btn span {
    font-size: 1.2rem;
}

/*Footer display*/

.quote-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;

    justify-content: center;
    align-items: center;

    padding: 20px;
}

.quote-modal.active {
    display: flex;
}

.quote-content {
    background: #fff;
    width: 100%;
    max-width: 700px;

    padding: 40px;
    border-radius: 20px;

    position: relative;

    max-height: 90vh;
    overflow-y: auto;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.quote-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 2rem;
    cursor: pointer;

    color: #666;
    transition: .3s;
}

.close-btn:hover {
    color: #d4af37;
}

.quote-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-content input,
.quote-content select,
.quote-content textarea {
    width: 100%;

    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;

    font-size: 1rem;
    font-family: inherit;

    transition: .3s;
}

.quote-content input:focus,
.quote-content select:focus,
.quote-content textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}

.quote-content textarea {
    resize: vertical;
}

.quote-content .btn {
    width: 100%;
    margin-top: 10px;

    background: #d4af37;
    color: #111;

    border: none;
    cursor: pointer;

    padding: 16px;
    border-radius: 50px;

    font-weight: 600;
    font-size: 1rem;

    transition: .3s;
}

.quote-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, .3);
}


/* Responsive Styles to mobile*/

@media (max-width: 768px) {

    .navbar {
        display: flex;

        justify-content: center;
        align-items: center;

        gap: 15px;

        padding: 20px 5%;

        position: relative;
    }



    .logo img {
        width: 180px;
        height: auto;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        gap: 15px 25px;

        width: 100%;

        padding: 0;
        margin: 0;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
    }

    .navbar .btn {
        width: 220px;
        text-align: center;
    }
}


/*Loading page*/


#loader {
    position: fixed;
    inset: 0;

    background: #111;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;

    transition: opacity 0.6s ease,
        visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-content img {
    width: 180px;
    margin-bottom: 25px;
}

.spinner {
    width: 60px;
    height: 60px;

    border: 4px solid rgba(255, 255, 255, .15);
    border-top: 4px solid #d4af37;

    border-radius: 50%;

    margin: auto;

    animation: spin 1s linear infinite;
}

.loader-content p {
    margin-top: 20px;
    color: white;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   MOBILE FIXES - SERENE MMS
=================================== */

@media (max-width: 768px) {

    /* NAVBAR */

    .navbar {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        padding: 12px 15px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;

        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(10px);

        z-index: 9999;
    }

    .logo img {
        height: 55px;
        width: auto;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;


        justify-content: center;
        gap: 10px 18px;

        width: 100%;
    }

    .nav-links a {
        font-size: .9rem;
    }

    .navbar .btn {
        width: 200px;
        padding: 12px;
    }


    /* HERO */

    .hero {
        min-height: 100vh;
    }

    .hero-overlay {

        min-height: 100vh;

        display: flex;
        align-items: center;
        justify-content: center;

        padding:
            180px 20px 40px;

        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {

        font-size: 2.3rem;
        line-height: 1.15;

        margin-bottom: 20px;
    }

    .hero-line {
        margin: 0 auto 20px;
    }

    .hero-content p {

        font-size: 1rem;
        line-height: 1.7;

        margin-bottom: 30px;
    }

    .hero-features {

        display: flex;
        flex-direction: column;

        gap: 15px;

        margin-bottom: 30px;
    }

    .feature {

        min-width: 100%;
        padding: 16px;

        text-align: left;
    }

    .feature i {
        font-size: 1.5rem;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature p {
        font-size: .85rem;
    }

    .hero .btn {

        width: 100%;
        max-width: 280px;

        padding: 15px;
    }
}

/* ABOUT */

@media (max-width:768px) {

    /* ABOUT */

    .about-content {
        flex-direction: column;
    }

    /* SERVICES */

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .service-image,
    .service-description {
        width: 100%;
        flex: auto;
    }

    .service-image img {
        width: 100%;
        height: auto;
    }

    .service-description {
        text-align: center;
    }

    /* PROJECTS */

    .comparison-images {
        grid-template-columns: 1fr;
    }

    .comparison-images img {
        height: auto;
    }

    /* CONTACT */

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-wrapper form {
        width: 100%;
    }

    /* CTA FOOTER */

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    /* WHATSAPP */

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 30px;
        left: 15px;
        bottom: 20px;
    }

}

.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

/* Mobile only */
@media (max-width:768px) {

    .logo {
        transition: opacity .3s ease,
            transform .3s ease;
    }

    .logo.hide-logo {
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
    }

}

@media (max-width:768px) {

    .navbar {
        transition: all .3s ease;
    }

}

@media (max-width:768px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

}


/* Permanent green glow */

.card.attention-finished,
.gallery-item.attention-finished {
    border: 2px solid #758a00;

    box-shadow:
        0 0 10px rgba(117, 138, 0, 0.4),
        0 0 25px rgba(117, 138, 0, 0.3),
        0 0 40px rgba(117, 138, 0, 0.15);

    animation: greenGlow 2s ease-in-out infinite;
}

@keyframes greenGlow {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(117, 138, 0, 0.3),
            0 0 20px rgba(117, 138, 0, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(117, 138, 0, 0.6),
            0 0 40px rgba(117, 138, 0, 0.4);
    }
}


/* CSS after chnages */

.support-list {
    margin-top: 18px;
    padding-left: 22px;
    text-align: left;
    color: #555;
    line-height: 1.8;
}

.support-list li {
    margin-bottom: 8px;
}

.stat-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content {
    max-width: 850px;
}

.hero-overlay>.btn {
    margin-top: 30px;
}


#construction {
    background: #0f172a;
    color: white;

    padding: 60px 8%;
    margin-top: 40px;
}

#construction h3 {
    color: #d4af37;
}

#construction p {
    color: #ddd;
}

#construction .service-image img {
    border-radius: 20px;
}


@media (max-width:768px) {

    .navbar {
        transition: all .3s ease;
    }

    .logo,
    .navbar .btn {
        transition: opacity .3s ease,
            transform .3s ease;
    }

}



@media (max-width:768px) {

    .navbar {

        display: flex;
        justify-content: center;
        align-items: center;

    }

    .nav-links {

        width: 100%;
        display: flex;
        justify-content: space-evenly;

    }

}


/* =========================================
   MOBILE NAVBAR IMPROVEMENT
========================================= */

@media (max-width:768px) {

    /* Give more space at the top */
    .navbar {
        padding-top: 20px;
        padding-bottom: 20px;
        transition: all .35s ease;
    }

    /* Bigger logo spacing */
    .logo {
        margin-bottom: 15px;
        transition: all .35s ease;
    }

    /* Quote button spacing */
    .navbar .btn {
        margin-top: 15px;
        transition: all .35s ease;
    }

    /* Hero starts below navbar */
    .hero {
        padding-top: 180px;
    }

}


@media (max-width:768px) {

    .navbar {
        transition: all .3s ease;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .navbar .btn {
        margin-top: 15px;
    }

}

@media (max-width:768px) {

    .navbar {
        transition: all .35s ease;
    }

    .logo,
    .navbar .btn {
        transition: all .35s ease;
    }

    .navbar.hide-logo {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar.hide-logo .logo,
    .navbar.hide-logo .btn {

        display: none;

    }

}


/*Emplyment css*/


#employment {

    background: #f8fafc;

}

#employment h2 {

    text-align: center;

    color: var(--heading-color);

    margin-bottom: 20px;

}

.employment-intro {

    max-width: 900px;

    margin: 0 auto 60px;

    text-align: center;

    color: var(--text-color);

    line-height: 1.8;

}

.employment-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

    margin-bottom: 60px;

}

.employment-card {

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    text-align: center;

    transition: .3s;

    border: 1px solid rgba(0, 0, 0, .08);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.employment-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.employment-card i {

    color: #758a00;

    font-size: 45px;

    margin-bottom: 20px;

}

.employment-card h3 {

    color: #1f2937;

    margin-bottom: 10px;

}

.employment-benefits {

    background: white;

    padding: 45px;

    border-radius: 20px;

    border: 1px solid rgba(0, 0, 0, .08);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.employment-benefits h3 {

    color: #758a00;

    margin-bottom: 25px;

}

.employment-benefits li {

    padding: 15px 0;

    border-bottom: 1px solid #eee;

}

.employment-benefits li:last-child {

    border: none;

}

.employment-benefits li::before {

    content: "✓";

    color: #758a00;

    font-weight: bold;

    margin-right: 10px;

}

/* Apply now button css */

.apply-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 30px;

    padding: 16px 38px;

    background: linear-gradient(135deg, #758a00, #95ad00);

    color: #fff;

    font-weight: 600;
    font-size: 1rem;

    border-radius: 50px;

    text-decoration: none;

    box-shadow: 0 12px 30px rgba(117, 138, 0, .35);

    transition: all .35s ease;

}

.apply-btn i {

    transition: .35s;

}

.apply-btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(117, 138, 0, .45);

    background: linear-gradient(135deg, #869d00, #a9c500);

}

.apply-btn:hover i {

    transform: translateX(5px);

}

.apply-btn:active {

    transform: scale(.97);

}

@media (max-width:768px) {

    .apply-btn {

        width: 100%;
        padding: 18px;

    }

}


.navbar {
    transition: all .35s ease;
}

.nav-links,
.navbar .btn {
    transition: all .35s ease;
}

.navbar.compact {

    padding: 12px 8%;

}

.navbar.compact .nav-links,
.navbar.compact .btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
}

.navbar.compact .logo {

    margin: 0 auto;

}


.navbar.compact {

    padding: 10px 8%;

}

.navbar.compact .logo img {

    height: 45px;

}


/* =========================================
   MOBILE AUTO HIDE NAVBAR
========================================= */

@media (max-width:768px) {

    .navbar {
        transition: transform .35s ease;
    }

    .navbar.hide-navbar {
        transform: translateY(-100%);
    }

}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 8%;
    /* Was 18px */

    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);

    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);

    z-index: 9999;

    transition: all .35s ease;
}

.logo {
    transition: all .35s ease;
}

.logo.hide-logo {
    opacity: 0;
    transform: scale(0);
    width: 0;
    margin: 0;
    overflow: hidden;
}

.navbar {
    transition: all .35s ease;
}

.navbar.compact {

    padding: 8px 8%;

}