body {
    font-family: 'Poppins', sans-serif;
    background: #E7DFDD;
}
.navbar {
    background: #C5B2B4;
}
.navbar .nav-link {
    color: #000 !important;
    transition: 0.3s;
}
.navbar .nav-link:hover {
    color: #000 !important;
    transform: translateY(-2px);
}
/* HERO SECTION */
.hero {
    position: relative;
    min-height: 60vh; /* responsive height */
    background: url('../images/hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    padding: 60px 20px;
    vertical-align: middle;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* TEXT RESPONSIVENESS */
.hero h1 {
    font-weight: 700;
    font-size: 48px;
}

.hero p {
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero {
        min-height: 45vh;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 24px;
    }
}
.section {
    padding: 70px 0;
}
.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}
/* ABOUT */
.about-img {
    border-radius: 12px;
}

/* CARDS */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    height: 180px;
    object-fit: cover;
}
/* ICON */
.icon-circle {
    width: 50px;
    height: 50px;
    background: #C5B2B4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* SERVICES BG */
/* .services {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url('images/bg-pattern.jpg');
    background-size: cover;
} */
/* FOOTER */
footer {
    background: #C5B2B4;
    padding: 20px 0;
}
.footer-link {
    text-decoration: none;
    color: #333;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #000;
    padding-left: 5px;
}

/* CONTACT BOX */
.contact-box {
    background: #F8F5F5;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* PERFECT CIRCLE ICON */
.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #000;
    border-radius: 50%;
    flex-shrink: 0;
}

/* FORM */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-custom {
    background: #C5B2B4;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-custom:hover {
    background: #b49ea0;
}

/* CARD */
.card-custom {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
}

/* MAP */
.map iframe {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    min-height: 350px;
}
