/* ---------- GENERAL STYLES ---------- */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  background: url("images/hero-bg.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.logo {
  width: 140px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.subtitle {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.location {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: #fff;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.founder-photo {
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.founder-info {
  flex: 1;
}

.founder-info h3 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}

.title {
  color: #777;
  font-style: italic;
  margin-bottom: 15px;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  background: #f8f8f8;
  text-align: center;
}

.service-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.service-list li {
  padding: 8px 0;
  font-size: 1.1rem;
}

/* ---------- PORTFOLIO ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ---------- VISION & TEAM ---------- */
.vision {
  background: #fff;
  text-align: center;
}

.team {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  max-width: 250px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: #f8f8f8;
  text-align: center;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #1a73e8;
  padding-left: 15px;
  margin: 20px auto;
  max-width: 700px;
}

/* ---------- CONTACT ---------- */
.contact {
  background: #fff;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #145ab6;
}

/* ---------- MAP ---------- */
.map-container iframe {
  border-radius: 10px;
}

/* ---------- WHATSAPP BUTTON ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-btn img {
  width: 24px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* ---------- FOOTER ---------- */
footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 30px 10px;
}

footer p, footer a {
  color: #ccc;
  font-size: 0.95rem;
}

footer .endorsement {
  margin-top: 10px;
  font-weight: bold;
  color: #1a73e8;
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    align-items: center;
  }

  .founder-photo {
    width: 100%;
    height: auto;
  }

  .team {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item img {
    height: 200px;
  }
}
