* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

.quote-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #4878c7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.hero h1 {
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
}

.trust-line {
    margin-top: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #555555;
}

/* Process */
.process {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding: 80px 50px;
    background-color: #ffffff;
}

.process-header {
    flex: 0 0 220px;
}

.process-header h2 {
    font-size: 36px;
    color: #000000;
    line-height: 1.2;
    border-left: 5px solid #4878c7;
    padding-left: 15px;
    margin-bottom: 15px;
}

.process-header p {
    font-size: 14px;
    color: #555555;
    padding-left: 20px;
    max-width: 250px;
}

.process-flow {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.process-card {
    background-color: #f9f9f9;
    padding: 25px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    width: 160px;
    text-align: center;
    cursor: pointer;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.process-number {
    font-size: 26px;
    font-weight: bold;
    color: #4878c7;
    margin-bottom: 8px;
}

.process-card h3 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 6px;
}

.process-card p {
    font-size: 12px;
    color: #999999;
}

.arrow {
    font-size: 22px;
    color: #4878c7;
    font-weight: bold;
}

/* Modal Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #555555;
}

.modal-number {
    font-size: 30px;
    font-weight: bold;
    color: #4878c7;
    margin-bottom: 10px;
}

.modal-box h3 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.modal-box p {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
}

/* Page Hero (used on About, Services, Projects, Contact) */
.page-hero {
    text-align: center;
    padding: 70px 20px;
    background-color: #f5f5f5;
}

.page-hero h1 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    color: #555555;
}

/* About Content */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-text h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background-color: #f9f9f9;
    text-align: center;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-box h3 {
    font-size: 32px;
    color: #4878c7;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    color: #555555;
}

/* Why Choose Us - Flip Cards */
.why-choose {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.flip-card {
    background-color: transparent;
    height: 160px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

.flip-card-front {
    background-color: #ffffff;
}

.flip-card-front h3 {
    font-size: 17px;
    color: #000000;
}

.flip-card-back {
    background-color: #4878c7;
    transform: rotateY(180deg);
}

.flip-card-back p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
}

/* View Button */
.view-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #4878c7;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* About Intro (Home page) */
.about-intro {
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f5f5;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000000;
}

.about-intro p {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Gallery */
.gallery {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.gallery h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #333333;
}

/* Services */
.services {
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-weight: bold;
    color: #000000;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Reviews */
.reviews {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.reviews h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000000;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background-color: #f9f9f9;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stars {
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #444444;
    font-style: italic;
    margin-bottom: 15px;
}

.review-name {
    font-weight: bold;
    color: #000000;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 70px 20px;
    background-color: #4878c7;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 25px;
}

.final-cta .quote-btn {
    background-color: #ffffff;
    color: #4878c7;
}
/* Services Detail Page */
.services-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-number {
    font-size: 34px;
    font-weight: bold;
    color: #4878c7;
    flex: 0 0 60px;
}

.service-detail-text h2 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 10px;
}

.service-detail-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}
/* Projects Gallery Page */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.project-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.project-item:hover {
    transform: translateY(-6px);
}

.project-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 15px 18px;
}

.project-info h3 {
    font-size: 17px;
    color: #000000;
    margin-bottom: 5px;
}

.project-info p {
    font-size: 13px;
    color: #888888;
}

/* Hidden by default */



DETAILS OF BUTTON FOR HIDING



/* Style for your project images so they show a pointer cursor */
.project-item img.zoomable-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Fullscreen modal popup container */
#imageModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
    justify-content: center;
    align-items: center;
}

/* The enlarged image inside the popup */
#imageModal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

/* The Close Button to make it small again */
#imageModal .close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100000;
}

#imageModal .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================
   MOBILE RESPONSIVE STYLES
   ============================ */

/* Hamburger icon - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 2px;
}

@media (max-width: 900px) {

    /* Header / Navigation */
    .header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        order: 3;
        margin-top: 15px;
    }

    nav.nav-open {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        padding: 8px 0;
        border-bottom: 1px solid #eeeeee;
    }

    .header .quote-btn {
        margin-left: auto;
        margin-right: 15px;
        font-size: 13px;
        padding: 8px 14px;
    }

    /* Hero */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .trust-line {
        font-size: 12px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    /* Process section */
    .process {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
    }

    .process-header {
        flex: none;
    }

    .process-header h2,
    .process-header p {
        padding-left: 0;
        text-align: center;
        margin: 0 auto 10px auto;
    }

    .process-flow {
        justify-content: center;
    }

    .process-card {
        width: 130px;
    }

    .arrow {
        display: none;
    }

    /* About stats */
    .about-stats {
        flex-direction: column;
    }

    /* Service detail cards */
    .service-detail-card {
        flex-direction: column;
        gap: 10px;
    }

    /* Modal box */
    .modal-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 24px;
    }

    .logo {
        font-size: 18px;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-card {
        width: 100%;
    }

    .gallery-item img,
    .project-item img {
        height: 180px;
    }

    .final-cta h2 {
        font-size: 24px;
    }
}
/* Contact Minimal Style */
.contact-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 20px;
}
.contact-minimal-left {
    flex: 1;
    min-width: 280px;
}
.contact-minimal-left h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    color: #4878c7;
    margin-bottom: 15px;
    font-weight: normal;
}
.contact-minimal-left h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    color: #4878c7;
    margin-bottom: 20px;
    font-weight: normal;
    font-style: italic;
}
.contact-minimal-left p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 300px;
}
.contact-minimal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.contact-minimal-item a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}
.contact-minimal-item a:hover {
    color: #4878c7;
    border-color: #4878c7;
}
.contact-minimal-item p {
    color: #000000;
    margin: 0;
}
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
}
.social-icons a:hover {
    background-color: #4878c7;
}
.contact-minimal-right {
    flex: 1.3;
    min-width: 300px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-group {
    flex: 1;
}
.contact-form label {
    display: block;
    font-size: 12px;
    color: #444444;
    margin-bottom: 6px;
    margin-top: 18px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}
.contact-form textarea {
    resize: vertical;
}
.send-btn {
    margin-top: 30px;
    background-color: #4878c7;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    float: right;
}
.send-btn:hover {
    background-color: #3a63a8;
}
