

/* =========================================
   GLOBAL VARIABLES
========================================= */
:root {
  --primary: #0072bb;
  --primary-light: rgba(0, 114, 187, 0.8);
  --accent: #ffb800;
  --accent-dark: #ff6600;
  --white: #fff;
  --text-light: #f3f4f6;
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
}
.btn-enquire {
  background: linear-gradient(90deg, #e63946, #b91d28);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(185, 29, 40, 0.3);
  
}

.btn-enquire:hover {
  background: linear-gradient(90deg, #ff4d5b, #d71e2b);
  box-shadow: 0 6px 16px rgba(255, 77, 91, 0.4);
  transform: translateY(-2px);
}

.btn-enquire:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(185, 29, 40, 0.3);
}


.navbar-nav .nav-link {
  font-weight: 500;
  color: #000;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0072bb;
}

.navbar {
  font-family: 'Poppins', sans-serif;
}

.enquire-btn {
  background: #0072bb;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: 400px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.submit-btn {
  width: 100%;
  background: #0072bb;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}


/* =========================================
   NAVBAR
========================================= 
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  padding: 10px 20px;
  color: var(--white);
  flex-wrap: wrap;
}

.logo {
  height: 40px;
  margin-right: 2.5rem;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-center {
  flex: 1;
  text-align: center;
}

.nav-links {
  list-style: none;
  display: inline-flex;
  gap: 25px;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #dff0ff;
}
*/
/* Dropdown 
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  color: var(--primary);
  top: 30px;
  left: 0;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.dropdown-menu li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.dropdown-menu li a {
  color: var(--primary);
  display: block;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
*/
/* CTA Button 
.cta-btn {
  background: var(--white);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #005a94;
  color: #fff;
}
*/
/* Mobile Navbar 
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary);
    width: 100%;
    padding: 10px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: inline;
  }
}
*/



/* =========================================
   HERO SLIDER
========================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}
.slide {
  min-width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 2rem;
}
.slide-content {
  max-width: 900px;
  text-align: center;
}
.slide h1 {
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 2.8rem);
}
.slide p {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  cursor: pointer;
}
.slider-arrow.left { left: 12px; }
.slider-arrow.right { right: 12px; }

/* Indicators */
.slider-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 40;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s ease;
}
.indicator.active {
  background: #fff;
  transform: scale(1.25);
}

/* =========================================
   CONTACT BANNER
========================================= */
.contact-banner {
  background-image: url('images/banner_contact.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: n
/* =========================================
   WHATSAPP FLOAT & SCROLL TO TOP
========================================= */




/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-image,
    .contact-form {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .info-wrapper {
        flex-direction: column;
    }

    .info-box {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('/images/banner_contact.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 114, 187, 0.6); /* blue transparent overlay */
  z-index: 1;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-banner {
    height: 60vh;
  }

  .hero-banner h1 {
    font-size: 2.2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }
}


