 
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: #f4f4f4;
}


/* ===== TOP BAR ===== */
.top-bar {
  background-color: #111;
  color: #fff;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.top-bar .top-left span {
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-bar .top-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar .top-right a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.top-bar .top-right a:hover { color: #ff5500; }

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px;
    gap: 12px;
    position: relative;
  }

  .top-left {
    width: 100%;
    text-align: center;
  }

  .top-left span {
    font-size: 14px;
    font-weight: bold;
    display: block;
  }

  .top-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .top-right a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
}
/* ===== Marquee Announcement ===== */
.top-marquee {
  background-color: #e67e22;
  color: white;
  padding: 6px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  margin-top: 0.5px;
}
.marquee-track {
  white-space: nowrap;
  display: inline-block;
  animation: scroll-left 18s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
@media (max-width: 600px) {
  .top-marquee { font-size: 12px; text-align: center; }
}

/* ===== NAVIGATION BAR ===== */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1002; /* Above overlay */
  flex-wrap: wrap;
  border-bottom: 2px solid #f2f2f2;
}

/* Logo scaling for all screens; will resize further for mobile */
/* Desktop logo styling */
.logo-container {
  height: 101px; /* Fixed navbar height */
  display: flex;
  align-items: center;
}

.logo {
  height: 180px; /* Max within container */
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-container {
  overflow: hidden;
}
/* Mobile adjustments */

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;         /* Give more vertical space */
  padding: 6px;         /* Optional: Outer clickable area */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  display: block;
  height: 3px;           /* Or try 2.5px for an even crisper style */
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Nav menu desktop */
#nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
#nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}
#nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
}
/* Underline on hover */
#nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ff6b00;
  transition: width 0.3s ease-in-out;
}
#nav-menu ul li a:hover::after,
#nav-menu ul li a.active::after {
  width: 100%;
}
#nav-menu ul li a:hover { color: #ff6b00; }

#nav-menu .btn {
  background-color: #ff6b00;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-left: 24px;
}
#nav-menu .btn:hover {
  background-color: #e95c00;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #nav-menu .btn {
    width: 180px;
    max-width: 90%;
    margin: 20px auto; /* center the button */
    display: block;
    text-align: center;
  }
}

/* Overlay for mobile nav */
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.48);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Slide-in Mobile Menu */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #nav-menu {
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 82vw;
    max-width: 320px;
    padding: 30px 24px 24px;
    z-index: 1004;
    box-shadow: -2px 0 18px 3px rgba(0,0,0,0.10);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.7,.3,.1,1);
    gap: 0;
    margin-top: 0;
  }
  #nav-menu.active {
    display: flex;
    transform: translateX(0);
  }
  #nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  #nav-menu .btn {
    display: block;
    margin: 10px 0 0 0;
    width: 100%;
    text-align: center; 
  }
  .logo-container { height: 60px; }
  .logo { height: 90px; max-width: 130px; }
  .nav-bar {
    z-index: 1002;
    position: relative;
  }
}

/* Body scroll lock when menu open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .nav-bar { padding: 10px 11px; }
  .top-bar { padding: 8px 7px; }
}

@media (max-width: 400px) {
  .top-bar, .top-bar .top-right a { font-size: 12px; }
}

/* Minimal shadow to hero/card etc, as in your code. */
/* Prevent body scroll when mobile menu is open */
.no-scroll {
  overflow: hidden;
}

/* Overlay background for mobile nav */


/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #fff6f0 70%, #ffe7d6 100%);
  padding: 100px 30px 80px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: #ff6b00;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 80px 0 100px 0;
  background: linear-gradient(120deg, #f7f9fd 65%, #fff6f0 130%);
}

.contact-container {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
}

/* Contact Info Card */
.contact-info {
  flex: 1 1 340px;
  background: #fff;
  padding: 38px 38px 32px 38px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(40,36,60,0.09);
  min-width: 320px;
  max-width: 410px;
  border: 1.5px solid #fae1d0;
  text-align: left;
  
}

.contact-info h2 {
  font-size: 2.05rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.contact-info p {
  margin: 14px 0 0 0;
  font-size: 1.09rem;
  color: #363434;
  line-height: 1.65;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.contact-info i {
  color: #ff6b00;
  font-size: 21px;
  vertical-align: middle;
}

/* Contact Actions */
.contact-actions {
  flex: 1.3 1 480px;
  min-width: 320px;
  padding-top: 8px;
}

.contact-actions h2 {
  font-size: 2.18rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #232323;
  text-align: left;
  letter-spacing: -1px;
}

.action-cards {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
}

.action-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(32,16,39,0.09);
  padding: 38px 25px 28px 25px;
  width: 100%;
  min-width: 180px;
  text-align: center;
  border: 1.5px solid #fae1d0;
  transition: transform 0.20s, box-shadow 0.18s;
}

.action-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 50px -12px #ff6b001e;
}

.action-card i {
  font-size: 32px;
  color: #ff6b00;
  margin-bottom: 13px;
  display: block;
}

.action-card h3 {
  margin: 12px 0 7px;
  color: #232323;
  font-size: 1.19rem;
  font-weight: 700;
}

.action-card p {
  font-size: 15px;
  color: #565656;
  opacity: 0.97;
  margin-bottom: 22px;
  font-weight: 500;
}

.action-btn {
  background: linear-gradient(95deg, #ff8000 20%, #ff6b00 90%);
  color: #fff;
  font-weight: 700;
  border: none;
  font-size: 1.05rem;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: 0 2px 12px rgba(255,107,0,0.11);
}

.action-btn:hover {
  background: linear-gradient(90deg,#e96506 30%,#c74e00 100%);
}

/* Floating Icons (phone, whatsapp) */
.floating-icon {
  position: fixed;
  bottom: 21px;
  background-color: #fff;
  color: #000;
  font-size: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.17);
  z-index: 999;
  transition: transform 0.2s, background-color 0.19s;
  text-decoration: none;
}

.whatsapp-float {
  right: 23px;
  background-color: #25d366;
  color: white;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.08);
}

.phone-float {
  left: 23px;
  background-color: #007bff;
  color: white;
}

.phone-float:hover {
  background-color: #0069d9;
  transform: scale(1.08);
}

/* Google Map Section */
.map-section {
  margin: 50px auto 0 auto;
  padding: 0 0 70px 0;
  max-width: 1200px;
}

.map-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(40,36,60,0.09);
  overflow: hidden;
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 400px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .contact-actions h2 {
    text-align: center;
  }
  .action-cards {
    flex-direction: column;
    gap: 23px;
  }
  .contact-info {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .contact-section {
    padding: 35px 6px 45px 6px;
  }
  .contact-info, .action-card {
    min-width: 0;
    width: 100%;
    padding: 22px 10px;
  }
  .action-cards {
    flex-direction: column;
    gap: 14px;
  }
  .contact-container {
    gap: 16px;
  }
  .map-section {
    padding: 0 0 38px 0;
  }
}

@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .contact-info, .action-card {
    padding: 14px 5px;
    font-size: 0.98rem;
  }
  .contact-section {
    padding: 18px 2px 30px 2px;
  }
  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 10px;
  }
  .whatsapp-float {
    right: 10px;
  }
  .phone-float {
    left: 10px;
  }
}
