* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}



/* ===== HEADER / HERO ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("../images/hero-bg.jpg") center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero .btn {
    padding: 15px 35px;
    font-size: 16px;
}
.hero-logo {
    width: 120px;
    margin-bottom: 20px;
}
.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 100;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #0a1f44;
}

.navbar .logo span {
    color: #ff9800;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #0a1f44;
    font-weight: 500;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #ff9800;
}
.navbar nav a.active {
    color: #ff9800;
    font-weight: bold;
}

.card-body h3 {
    margin-bottom: 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #0a1f44;
}

.logo img {
    height: 45px;
    width: auto;
}



.btn {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e68900;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

/* ===== PROJECT CARDS ===== */

/* GRID */
.projects {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px 60px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* IMAGE */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* PRICE BADGE */
.price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ff9800;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
}

/* CONTENT */
.card-body {
    padding: 20px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1e3c72;
}

.location {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}
/* ===== GALLERY ===== */
.gallery {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery img,
.gallery video {
    width: 100%;
    border-radius:0%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}
.contact-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.contact-item {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-6px);
}

.contact-item h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.contact-item p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================= */
/* MOBILE PROJECT SLIDER */
/* ============================= */

@media (max-width: 768px) {

    .projects {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .projects::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}



