html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.7;
}

/* HEADER */
header {
  background: #0b2038;
  color: white;
  padding: 15px 20px;
  position: relative;
  z-index: 10;
}
.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.nav-logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #f8c84d;
}
.call-tab {
  background: #f8c84d;
  color: #0b2038;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.call-tab:hover {
  background: #ffd765;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #f8c84d;
}

/* HERO (fixed image, scrolls over) */
.hero {
  position: relative;
  height: 100vh;
  background: url("assets/home.png") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
}
.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.hero-overlay p {
  font-size: 1.1rem;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  text-align: center;
  color: #0b2038;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* SERVICES */
.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
}
.services-container.reverse {
  flex-direction: row-reverse;
}
.service-card {
  background: #f0f7ff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.service-card h3 {
  color: #0b2038;
  margin-bottom: 10px;
}
.service-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* WHAT WE DO */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.about-text {
  flex: 1;
  font-size: 1.05rem;
}
.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

/* TESTIMONIALS */
.testimonial-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-image img {
  max-width: 250px;
  border-radius: 10px;
}
.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial {
  background: #f0f7ff;
  border-left: 5px solid #f8c84d;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.floating {
  animation: floatBox 4s ease-in-out infinite;
}
@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* CONTACT INFO SECTION */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: auto;
}
input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
button {
  background: #0b2038;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #f8c84d;
  color: #0b2038;
}
.contact-info {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background: #f8c84d;
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px;
}
.info-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.info-card p {
  font-size: 1.1rem;
  color: #0b2038;
  font-weight: 600;
}
.info-card a {
  color: #0b2038;
  text-decoration: none;
  font-weight: bold;
}

/* WHATSAPP TAB */
.whatsapp-tab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: shake 3s infinite;
}
.whatsapp-tab img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(3deg); }
}

/* FOOTER */
footer {
  background: #0b2038;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.footer-divider {
  width: 2px;
  height: 100px;
  background: #f8c84d;
}
.footer-icons a img {
  width: 45px;
  height: 45px;
  margin: 5px 0;
  display: block;
  transition: 0.3s;
}
.footer-icons a img:hover {
  transform: scale(1.1);
}
.footer-text {
  margin-top: 20px;
  color: #f8c84d;
  font-weight: 500;
}

/* FADE EFFECT */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { flex-direction: column; }
  .about-container,
  .services-container,
  .testimonial-layout,
  .footer-right { flex-direction: column; text-align: center; }
  .footer-divider { display: none; }
}
