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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}
#contactFormSection{
  scroll-margin-top: 150px !important; 
}

/* ===== HERO ===== */
.hero{
    background:url("/images/exterior-bg.png") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}

.hero-content{
    background:#f2f2f2;
    padding:35px 45px;
    border-radius:22px;
    text-align:center;
    max-width:600px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 40px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}
.hero-btn{
    display:inline-block;
    padding:8px 22px;
    border:2px solid #333;
    border-radius:25px;
    text-decoration:none;
    color:#333;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}
@media(max-width:480px){

.hero{
    height:auto;
    padding:60px 15px;
}

.hero-content h1{
    font-size:22px;
}

.hero-btn{
    font-size:14px;
    padding:7px 18px;
}

}
.hero-btn:hover{
    background:#333;
    color:#fff;
}
/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.3; /* Slightly adjust line height for mobile */
        margin-top:40px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 28px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}
/* Icon Navigation Bar */
.icon-menu {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}
}

.expand-section {
  padding: 80px 20px;
  background: #fff;
}

/* CONTAINER */
.expand-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

/* IMAGE GROUP */
.expand-images {
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* MAIN IMAGE */
/* .image-main {
  width: 70%;
} */

.image-main img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

/* SMALL IMAGE */
.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

.image-small img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CONTENT */
.expand-content h1 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family:'Merriweather', serif;
}

.expand-content p {
  font-size: 18px;
  line-height: 1.7;
  color:black;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .expand-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expand-images {
    justify-content: center;
  }

  .image-main {
    width: 80%;
  }

  .image-small {
    width: 40%;
    right: 10%;
  }

  .expand-content {
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .image-main {
    width: 100%;
  }

  .image-small {
    position: relative;
    width: 60%;
    margin-top: -40px;
    right: auto;
    bottom: auto;
  }

  .expand-content h2 {
    font-size: 26px;
  }

  .expand-content p {
    font-size: 14px;
  }
}
.learn-m{
    background:none;
    border:1px solid black ;
    border-radius:10px;
    padding:10px;
}
.key-features{
  padding:30px 20px;
  background:#f5f5f5;
  text-align:center;
}

.key{
  max-width:1200px;
  margin:auto;
}

.section-title{
  font-size:32px;
  margin-bottom:10px;
}

.section-desc{
  max-width:720px;
  margin:auto;
  color:#555;
  line-height:1.6;
  margin-bottom:50px;
}

/* GRID */

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* PRODUCT CARD (your style) */

.product-card {
  position: relative;
  display: block;
  border-radius: 22px;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Floating label */

.product-card span {
  /* position: absolute; */
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background:#f5f5f5;
  color: #000;
  padding: 30px;
  border-radius: 16px;
  /* font-size:18px; */
  /* font-weight:600; */
  text-align:center;
}

/* text under card */

.feature-item p{
  margin-top:30px;
  font-size:14px;
  color:#555;
  line-height:1.6;
  padding:0 10px;
}

/* Tablet */

@media (max-width:1024px){

.product-grid{
  grid-template-columns:repeat(2,1fr);
}

.product-card img{
  height:200px;
}

}

/* Mobile */

@media (max-width:768px){

.product-grid{
  grid-template-columns:1fr;
}

.product-card img{
  height:200px;
}

.product-card span{
  font-size:14px;
  padding:12px 18px;
}

}