* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0D2B23;
  /* black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2s ease-in-out 2s forwards;
}

#splash-screen img {
  width: 300px;
  /* adjust size */
  animation: scaleIn 2s ease;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


header {
  background: linear-gradient(120deg, #05312b 100%);
  color: white;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #d4af37;
  /* golden shade */
}


.logo i {
  color: white;
  margin-right: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links a:hover {
  background: linear-gradient(120deg, #09665a 100%);

}

.whatsapp-btn {
  background: linear-gradient(120deg, #064d44 100%);
  color: white;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background: linear-gradient(120deg, #0b786a 100%);
}

.hero {
  background: linear-gradient(120deg, #064d44 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 15px 0;
  font-size: 1.2rem;
}

.hero-btn {
  background: white;
  color: #128C7E;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e0e0e0;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.light {
  background: #f9f9f9;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #064d44;

}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.testimonial {
  width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial img {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: #128C7E;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0d6e61;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  font-size: 24px;
  border-radius: 20px;
  text-decoration: none;

  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.social-icon:hover {
  background-color: #46867e;
  transform: scale(1.1);
}




footer {
  background: linear-gradient(120deg, #05312b 100%);
  color: white;
  text-align: center;
  padding: 15px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.service-box {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #064d44;
}

.our-work {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #ffffff;
}

.our-work h2 {
  font-size: 32px;
  color: linear-gradient(120deg, #064d44 100%);
  margin-bottom: 15px;
}

.our-work p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-box {
  background-color: #f9f9f9;
  /* Light soft tone */
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.about-box h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

.about-box p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.founder-box {
  background-color: #f9f9f9;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  /* ✅ changed from center to left */
}

.founder-box h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  /* ✅ keep heading centered */
}

.founder-box p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.signature {
  margin-top: 30px;
  font-style: italic;
  font-size: 18px;
  color: #333;
  text-align: center;
  /* ✅ keep signature centered */
}

.signature img {
  height: 40px;
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .cards,
  .testimonials {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}