* { margin: 0; padding: 0; box-sizing: border-box; } 

body { font-family: 'Poppins', sans-serif; background: #fff; color: #333; }


.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 50px; background: #333; color: #fff; position: sticky; top: 0; z-index: 1000; }

 .navbar nav a { color: #fff; margin-left: 20px; text-decoration: none; font-weight: 500; }

.hero { background-image: url("images/banner.jpg"); background-size: cover; background-position: center; height: 80vh;width: 100%; display: flex; align-items: center; justify-content: center; text-align: center; }

 .hero-text { background: rgba(0, 0, 0, 0.5); color: white; padding: 30px; border-radius: 10px; } 

 .hero-text h1 { font-size: 2.5rem; } 
 
 .hero-text p { font-size: 1.2rem; margin-top: 10px; }

.tile-types { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; padding: 40px; } 

.tile-card { width: 220px; text-align: center; transition: transform 0.3s; background: #fff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); padding-bottom: 20px; }

 .tile-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px 10px 0 0; } 

 .tile-card h2 { margin-top: 10px; font-size: 1.1rem; } 

 .tile-card p { font-size: 0.95rem; color: #555; padding: 0 10px; } 

 .tile-card:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); } 

 .tile-card .explore-btn { display: inline-block; margin-top: 10px; padding: 8px 18px; background-color: #007bff; color: white; text-decoration: none; border-radius: 20px; font-weight: bold; transition: background 0.3s; } 

 .tile-card .explore-btn:hover { background-color: #0056b3; }

footer { background: #222; color: #eee; text-align: center; padding: 30px 20px; margin-top: 50px; } 

footer a { color: #00e676; text-decoration: none; } footer a:hover { text-decoration: underline; }

.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; font-size: 24px; padding: 12px 15px; border-radius: 50%; text-decoration: none; z-index: 1000; }

.tiles-collection {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.tiles-collection h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  font-weight: 600;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.tile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
  text-align: center;
}

.tile-card:hover {
  transform: translateY(-5px);
}

.tile-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tile-card h3 {
  margin: 15px 0 5px;
  font-size: 1.1em;
}

.tile-card p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.tile-card a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: #007bff;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tile-card a:hover {
  background: #0056b3;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Make main section responsive and full screen height */
.main-container { /* replace with your actual section class or id */
    min-height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* centers content vertically */
    align-items: center;     /* centers content horizontally */
    background-size: cover;  /* scale image to cover without gaps */
    background-position: center; /* keep it centered */
    background-repeat: no-repeat;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .main-container {
        padding: 20px; /* small spacing inside on mobiles */
        min-height: 100vh;
    }
}
body {
    overflow-x: hidden;
}
