* {
    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: -660px; 
        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 main */



.about-hero {
    position: relative;
    height: 70vh;
    background-image: url('./image/apartment.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    color: #fff;
    font-family: "Poppins", sans-serif;
}


.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.55);
}


.about-hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
}



@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        padding: 0 6%;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 55vh;
    }

    .about-hero-content h1 {
        font-size: 26px;
    }

    .about-hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}



/* section about */
.about-main {
    padding: 80px 10%;
    background: url("./image/teambg.webp") no-repeat center center/cover fixed;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.about-main-content {
    flex: 1;
}

.about-main-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-main-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 550px;
}

/* Stats Section */
.about-stats {
    margin-top: 35px;
    display: flex;
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid #d7e2f3;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #0077ff;
    box-shadow: 0 12px 25px rgba(0, 119, 255, 0.15);
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0077ff;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: #003366;
}


.about-main-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-main-img img {
    width: 110%;
    max-width: 650px;
    height: 450px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    object-fit: cover;
}


@media (max-width: 992px) {

    .about-main {
        padding: 70px 6%;
    }

    .about-container {
        gap: 40px;
    }

    .about-main-content h2 {
        font-size: 36px;
    }

    .about-main-content p {
        font-size: 16px;
    }

    .about-main-img img {
        width: 100%;
        height: 400px;
    }

    .about-stats {
        gap: 20px;
    }

    .stat-box {
        min-width: 110px;
        padding: 18px;
    }

    .stat-box h3 {
        font-size: 28px;
    }
}


@media (max-width: 768px) {

    .about-main {
        padding: 60px 5%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-main-content {
        order: 2;
    }

    .about-main-img {
        order: 1;
        justify-content: center;
    }

    .about-main-img img {
        max-width: 500px;
        height: 350px;
    }

    .about-main-content h2 {
        font-size: 32px;
    }

    .about-main-content p {
        max-width: 100%;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-box {
        min-width: 140px;
    }
}


@media (max-width: 576px) {

    .about-main {
        padding: 50px 20px;
    }

    .about-container {
        gap: 30px;
    }

    .about-main-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-main-content p {
        font-size: 15px;
    }

    .about-main-img img {
        width: 100%;
        height: 280px;
        border-radius: 12px;
    }

    .about-stats {
        gap: 15px;
    }

    .stat-box {
        min-width: 120px;
        padding: 15px;
    }

    .stat-box h3 {
        font-size: 24px;
    }
}

/* section choose */


.whychoose {
    padding: 80px 10%;
    background: url("./image/commit.webp") no-repeat center center/cover;
  background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
}

.whychoose-container {
    display: flex;
    align-items: center;
    gap: 50px;
}



.whychoose-content .subtitle {
    color: #d68a35;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.whychoose-content h2 {
    font-size: 34px;
    color: #0a3052;
    margin-bottom: 20px;
}

.whychoose-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
}

.why-item p {
    margin-bottom: 5px;
}
.why-item i {
    font-size: 20px;
    color: #d68a35;
}


@media (max-width: 900px) {
    .whychoose-container {
        flex-direction: column;
        text-align: center;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-item {
        justify-content: center;
    }

    .whychoose-image img {
        max-width: 100%;
    }
}

/* section company story */


.company-story {
    padding: 80px 5%;
    background: url("./image/teambg.webp") no-repeat center center/cover;
  background-attachment: fixed;
}

.story-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}


.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}


.story-img {
    flex: 1;
    text-align: center;
}

.story-img img {
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.12);
}


@media (max-width: 992px) {
    .story-container {
        flex-direction: column;
        text-align: center;
    }

    .story-content h2 {
        font-size: 30px;
    }

    .story-img img {
        max-width: 100%;
    }
}


/* section core values */


.core-values {
    padding: 80px 5%;
    background: url("./image/back1.webp") no-repeat center center/cover fixed;  
    text-align: center;
}


.core-values h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffcc66;
    margin-bottom: 50px;
}


.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.value-item {
    background: linear-gradient(135deg, rgb(157, 236, 157), rgb(230, 195, 216));
    padding: 30px 22px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item i {
    font-size: 40px;
    color: #b30909;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.12);
    border-color: #0c6efd;
}


/* section testimonials */

.testimonials {
    padding: 70px 5%;
    background: #f0f4f8;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.review {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0e0e0;
}

.client-info h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.client-info span {
    font-size: 14px;
    color: #777;
}


.swiper-pagination-bullet {
    background: #333 !important;
    width: 10px;
    height: 10px;
}


/* 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;
    }
}
