* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
}

.container {
  width: 90%;
  margin: auto;
}

.section {
  padding: 60px 0;
}

h2 {
  font-weight: bold;
  margin-bottom: 30px;
}

/* HEADER */
.header {
  background: #000;
  color: #f9c74f;
  padding: 15px;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('https://onclickwebdesign.com/wp-content/uploads/hero_1.jpg') no-repeat center/cover;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.hero h1 {
  font-size: 60px;
  font-weight: bold;
}

.hero h3 {
  margin: 10px 0;
}

button {
  background: #f9c74f;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
}

/* GRID */
.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid #ddd;
  padding: 10px;
}
img {
  width: 100%;
  border-radius: 10px;
}

/* BLUR */
.blur {
  filter: blur(7px);
}

/* ICON */
i {
  font-size: 30px;
  color: #f9c74f;
}

/* MAP */
iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .grid {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 35px;
  }
}

/* OWNERS */
.owners {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.owner-card {
  width: 250px;
  text-align: center;
}

.owner-card img {
  width: 100%;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .owners {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-right {
    text-align: center;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f9c74f;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu a:hover {
  color: #f9c74f;
}

/* WhatsApp Icon */
.whatsapp i {
  color: #25D366;
  font-size: 20px;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 100px; /* adjust based on header height */
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 1000;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
}

.popup-content {
  background: #fff;
  width: 400px; /* 🔥 size increase */
  padding: 25px;
  margin: 8% auto;
  text-align: center;
  border-radius: 10px;
}

.popup-content h3 {
  margin-bottom: 15px;
}

.popup-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-content button {
  width: 100%;
  padding: 12px;
  background: #f9c74f;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}
.popup-content {
  position: relative;
}

.logo img {
  height: 60px; 
  width: auto;   
  display: block;
  margin: 0 auto;
}


.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-text {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 30px;
}


.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;  
  border-radius: 8px;
}

.card {
  padding: 10px;  
  text-align: center;
}


/* ===== PERFECT RESPONSIVE FIX ===== */

/* base fix */
html, body {
  overflow-x: hidden;
}

/* images fix */
img {
  max-width: 100%;
  height: auto;
}

/* container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* flex layout */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col {
  flex: 1;
  min-width: 250px;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {

  .row {
    flex-direction: column;
  }

  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  p  { font-size: 14px; }

  section {
    padding: 15px;
  }

  .btn, button {
    width: 100%;
  }
}