/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #223A54;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: navDrop 0.6s ease;
}

@keyframes navDrop {
  from { transform: translateY(-70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1450px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + BRANDNAME WRAPPER */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;  /* GAP BETWEEN LOGO & BRAND NAME */
}

/* LOGO CIRCLE */
.logo-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E5A70D; 
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulseLogo {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #E5A70D; }
  50% { transform: scale(1.08); box-shadow: 0 0 15px 5px rgba(229,167,13,0.5); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 #E5A70D; }
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BRAND NAME */
.brand-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  animation: fadeInBrand 0.8s ease;
  padding-left: 25px;
}

@keyframes fadeInBrand {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 55px;  /* GAP BETWEEN LINKS */
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: 0.3s ease;
}

.nav-links li a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: #E5A70D;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= RESPONSIVE ================= */

/* Tablets & Small Desktops */
@media (max-width: 950px) {
  .nav-container {
    padding: 0 20px;
  }

  .brand-name {
    font-size: 20px;
    padding-left: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;
    background: #1F2937;
    padding: 25px 0;
    gap: 25px;
  }

  .nav-links.active {
    display: flex;
    animation: menuFade 0.5s ease;
  }

  @keyframes menuFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Phones */
@media (max-width: 500px) {
  .nav-container {
    padding: 0 12px;
  }

  .logo-box {
    width: 45px;
    height: 45px;
  }

  .brand-name {
    font-size: 16px;
    padding-left: 15px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .nav-links {
    top: 70px;
    gap: 20px;
    padding: 20px 0;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }
}

/* Very Small Screens (320px) */
@media (max-width: 320px) {
  .nav-container {
    padding: 0 8px;
    gap: 8px;
  }

  .logo-box {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 14px;
    padding-left: 10px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }
}

/* Ultra-Small Screens (200px - 260px) */
@media (max-width: 260px) {
  .nav-container {
    padding: 0 5px;
    gap: 5px;
  }

  .logo-box {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 12px;
    padding-left: 10px;
  }

  .nav-links li a {
    font-size: 12px;
  }

  .hamburger span {
    width: 18px;
    height: 2px;
  }
}

/* BANNER */
.banner {
  width: 100%;
  height: 75vh; /* Adjust height as needed */
  background: url('images/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(34, 58, 84, 0.8),   /* Darker at top */
    rgba(34, 58, 84, 0.4)    /* Lighter at bottom */
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeInBanner 1.2s ease forwards;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 30px;
  font-style: italic;
  color: white;
}

.banner-btn {
  background: #c90c64;
  color: #f6f3f6;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #f9d67a;
  color: #223A54;
  transform: translateY(-3px);
}

/* Banner Animation */
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 950px) {
  .banner-content h1 { font-size: 38px; }
  .banner-content p { font-size: 18px; }
  .banner-btn { font-size: 16px; padding: 12px 25px; }
}

@media (max-width: 500px) {
  .banner {
    height: 60vh;
  }

  .banner-content h1 { font-size: 28px; }
  .banner-content p { font-size: 16px; }
  .banner-btn { font-size: 14px; padding: 10px 20px; }
}

@media (max-width: 320px) {
  .banner {
    height: 55vh;
  }

  .banner-content h1 { font-size: 22px; }
  .banner-content p { font-size: 14px; }
  .banner-btn { font-size: 12px; padding: 8px 16px; }
}

/* ========================================
Footer
======================================== */

/* ======================================
contact us
====================================== */

.contact-section {
  padding: 50px 20px;
  background: #f5f9ff;
  font-family: "Poppins", sans-serif;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #223A54;
  margin-bottom: 10px;
}

.sub-text {
  color: #555;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 25px;
  color: #1fbf45;
  min-width: 28px;
}

/* LEFT WHATSAPP BUTTON */
.left-wa-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: #25D366;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.left-wa-btn:hover {
  background: #1eb957;
}

.left-wa-logo {
  width: 26px;
}

/* RIGHT SIDE FORM */
.contact-right {
  flex: 1;
  min-width: 320px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* WHATSAPP BUTTON (FORM) */
.wa-btn {
  width: 100%;
  background: #25D366;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.wa-btn:hover {
  background: #1eb957;
}

.wa-logo {
  width: 25px;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* ======================================
End contact us
====================================== */


/* =====================================
Google Map
===================================== */

/* MAP SECTION */
.map-section {
  width: 100%;
  padding: 0;
  margin: 1px 0 10px 0; /* very small top, same bottom */
}

.map-container {
  width: 100%;
  height: 350px; /* reduced height */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  animation: fadeIn 1.2s ease-out forwards;
}

/* Map iframe */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(90%) contrast(95%);
  transition: all 0.4s ease-in-out;
}

/* Hover effect – premium feel */
.map-container:hover iframe {
  filter: brightness(100%) contrast(100%);
  transform: scale(1.02);
}

/* Smooth fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive – smooth height adjustment */
@media (max-width: 768px) {
  .map-container {
    height: 280px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 250px;
    border-radius: 6px;
  }
}

/* =====================================
End Google Map
===================================== */

/* FOOTER SECTION */
.footer {
  background: #223A54; /* same as navbar */
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

/* Main Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 140px; /* Equal gap between all 3 columns */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
}

/* Footer Columns */
.footer-column {
  width: 300px; /* FIXED width = perfect spacing */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff6f61;
}

.footer-column p, 
.footer-column ul, 
.footer-column li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff6f61;
}

/* Logo + Text */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 55px;
  height: auto;
  border-radius: 8px;
}

.footer-logo h2 {
  font-size: 1.4rem;
  margin: 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(12deg); }
  100% { transform: rotate(0deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

/* ========================================
Footer
======================================== */



