* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    width: 100%;
    background: #0d1625;
    padding: 15px 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 80px;
}


.header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo img {
    width: 150px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #00aaff;
}


.loginbtn {
    background: #007bff;
    border: none;
    padding: 3px 18px;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.loginbtn:hover {
    background: #005fcc;
    transform: scale(1.05);
}


.menu-icon {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}


@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: -600px; 
        left: 0;
        width: 100%;
        background: #0d1625;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 0 30px 0;
        transition: 0.4s ease;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
    }

    .nav-links.active {
        top: 60px; 
    }

    .nav-links li a {
        font-size: 18px;
    }

    .loginbtn {
        font-size: 18px;
        padding: 10px 28px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 130px;
    }

    .nav-links li a {
        font-size: 17px;
    }
}

/* section hero */

.service-hero {
    position: relative;
    height: 75vh;
    background: url("./image/glof.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7%;
}


.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}


.service-hero-content {
    position: relative;
    max-width: 700px;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}


@media (max-width: 768px) {
    .service-hero {
        height: 60vh;
    }
    .service-hero-content h1 {
        font-size: 34px;
    }
    .service-hero-content p {
        font-size: 16px;
    }
}


/* section gallery */

.property-category {
    padding: 70px 7%;
    background: url("./image/background.webp") no-repeat center center/cover fixed;
    font-family: 'Poppins', sans-serif;
}

.pc-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #1e2a47;
    margin-bottom: 8px;
}

.pc-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 45px;
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pc-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .3s ease;
}

.pc-card:hover {
    transform: translateY(-5px);
}

.pc-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.pc-card h3 {
    position: absolute;
    top: 15px;
    left: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
}


.pc-card span {
    position: absolute;
    bottom: 15px;
    left: 18px;
    background: rgba(0, 0, 0, 0.65);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}


@media (max-width: 992px) {
    .pc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .pc-grid {
        grid-template-columns: 1fr;
    }

    .pc-card img {
        height: 180px;
    }
}


/* section step */

.service-flow {
    background: linear-gradient(135deg, blue, aqua, blue);
}

.timeline-wrapper {
    border-left: 2px solid #dcdcdc;
    padding-left: 40px;
    position: relative;
}

.timeline-step {
    position: relative;
    padding-bottom: 40px;
}

.step-number {
    position: absolute;
    left: -65px;
    top: 0;
    background: #ffffff;
    border: 2px solid #dcdcdc;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #111;
}

.step-content p {
    margin: 0;
    line-height: 1.7;
}


@media (max-width: 992px) {

    .timeline-wrapper {
        padding-left: 30px;
        border-left: 2px solid #e2e2e2;
    }

    .step-number {
        left: -55px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step-content h4 {
        font-size: 19px;
    }

    .step-content p {
        font-size: 15px;
    }
}



@media (max-width: 768px) {

    .timeline-wrapper {
        padding-left: 25px;
    }

    .step-number {
        left: -48px;
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}



@media (max-width: 576px) {

    .service-flow {
        padding: 40px 0;
    }

    .timeline-wrapper {
        padding-left: 20px;
    }

    .step-number {
        left: -42px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .step-content h4 {
        font-size: 17px;
    }

    .step-content p {
        font-size: 14px;
    }
}



@media (max-width: 450px) {

    .step-number {
        left: -38px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }
}


/* section features */


.featured-services {
    padding: 60px 20px;
    background: url("./image/background.webp") no-repeat center center/cover fixed;
    font-family: 'Poppins', sans-serif;
}

.featured-services .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.service-card {
    background: linear-gradient(135deg, rgb(0, 255, 85), aqua, rgb(0, 255, 34));
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: .3s ease;
    text-align: left;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}


.service-card .icon {
    height: 55px;
    width: 55px;
    background: linear-gradient(135deg, #0f6cff, #06c6a7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-card .icon i {
    font-size: 24px;
    color: #fff;
}


.service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}


@media (max-width: 960px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}



.service-area-section {
    background: url("./image/commit.webp") no-repeat center center/cover fixed;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-area-list {
    list-style: none;
    padding: 0;
}

.service-area-list li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #333;
}

.service-area-list li i {
    font-size: 20px;
    color: #0d6efd;
    margin-right: 10px;
}

.coverage-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

/* Footer Section */
.footer {
    background: #0d1b2a;
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 8%;
}

/* About Section */
.footer-about {
    flex: 1;
    min-width: 260px;
}

.footer-about img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #dfe6ee;
    max-width: 320px;
}


.footer h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffcc66;
    font-weight: 600;
}


.footer-links,
.footer-support {
    flex: 1;
    min-width: 200px;
}

.footer-links ul,
.footer-support ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-support li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-support a {
    color: #dfe6ee;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-support a:hover {
    color: #ffcc66;
    padding-left: 5px;
}


.footer-contact {
    flex: 1;
    min-width: 260px;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #dfe6ee;
}

.social-icon {
    margin-top: 10px;
}

.social-icon a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color:  #dfe6ee;
    background: rgba(13, 6, 230, 0.1);
    padding: 10px 12px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-icon a:hover {
    background: #ffcc66;
    color: #0d1b2a;
}


.footer-bottom {
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
    background: #0a1622;
    font-size: 14px;
    color: #c8d2dc;
}

.footer-bottom p {
    margin: 0;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about p {
        max-width: 100%;
    }

    .social-icon a {
        margin: 0 8px;
    }
}
