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

body {
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #000;
}

.logo {
  height: 60px;      /* controls logo size */
  width: auto;
}

.header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.header nav a:hover {
  color: #f4b400;
}

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS fixes giant hero image */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #f4b400;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* SECTIONS */
section {
  padding: 60px 40px;
}

section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* FOUNDER */
#founder img {
  max-width: 300px;   /* THIS fixes founder image size */
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  display: block;
}

/* CONTACT */
form {
  max-width: 400px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

form button {
  background: #f4b400;
  border: none;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0 5px;
}

.service-card p {
  font-size: 14px;
  color: #ccc;
}

/* GALLERY PAGE STYLING */

section {
  padding: 40px 60px;
}

section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  border-left: 5px solid #f5c542;
  padding-left: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}
.whatsapp-float {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}
