* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Noto Sans Tamil", sans-serif;
    background: #f8faf8;
    color: #222;
    line-height: 1.7
}


.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/c14.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.08);
    z-index: -1;
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;



    z-index: -1;
}

.overlay {
    color: white;
    padding: 20px;
}

.hero {
    background-attachment: fixed;
}

.overlay {
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    /* max-width: 700px; */
}

.overlay {
    color: #fff;
    padding: 20px
}

h1 {
    font-size: 2.5rem !important
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
    color: brown;
    text-align: center;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    background: #1b5e20;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block
}

.whatsapp {
    background: #25d366
}

.container {
    padding: 30px 20px;
    max-width: 1200px;
    margin: auto
}

.alt {
    background: #eef8ee
}

h2 {
    text-align: center;
    margin-bottom: 25px
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    justify-content: center;


}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08),

}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px
}

.note {
    text-align: center;
    margin-top: 15px
}

.contact {
    text-align: center
}

.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex
}

.sticky a {
    flex: 1;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    color: #fff;
    background: #1b5e20;

}

.sticky a:last-child {
    background: #25d366;
    border-radius: 0px;
}

@media(min-width:768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr)
    }

    h1 {
        font-size: 3.2rem
    }
}

.map-container {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
    width: 100%;
}