header @font-face {
  font-family: 'Suisse Intl';
  src: url('/fonts/suisse/SuisseIntl-Regular.woff2') format('woff2'),
       url('/fonts/suisse/SuisseIntl-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('/fonts/suisse/SuisseIntl-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('/fonts/suisseintl/SuisseIntl-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html, body {
  font-family: 'Suisse Intl', sans-serif;
}

/* ===== BASE ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #002147;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 999;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 1px solid #fff;
}

.scroll-top.show {
  display: flex;
}
.logo-nav {
	display: flex;
	align-items: center;
	gap: 90px;
}

/* Navbar Overlay */
.navbar {
  top: 0;
  padding: 20px;
  /* Match Home's padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1600px;
  margin-inline: auto;
  margin-inline: auto;
padding: 20px;
}


/* Right search icon stays separate */
.navbar-right {
  display: flex;
  align-items: center;
}

/* MENU */
.menu-bar {
  display: flex;
  align-items: center;
}

/* Ensure logo + menu align same as Home */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.logo img {
  height: 80px;
  /* Match Home */
  margin-top: 0;
  /* Remove extra push */
}

/* Menu Bar Styling */
.menu-bar nav {
  background-color: rgba(255, 255, 255, 0.15); /* light translucent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}

.menu-bar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.menu-bar li a {
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 14px;
  display: inline-block;
  text-decoration: none;
}


.menu-bar li a:hover {
  color: #cfa74c;
  text-decoration: none;
}


.menu-bar li a:hover {
  color: #cfa74c;
  text-decoration: none;
}

.highlight-contact {
  font-weight: 700;
  color: #fff;
}

/* --- HERO SECTION --- */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  /* fallback */

}

/* Hero Slider Base */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* Individual Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1s ease;
  z-index: 0;
}


/* Active Slide */
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* --- HERO CONTENT --- */
.hero-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Increased from 80px */
  /* Optional: keep or adjust */
  z-index: 3;
   max-width: 1600px;
  margin: 0 auto;
  padding-left: 20px;   /* ✅ Match .navbar padding */
  padding-right: 20px;
  box-sizing: border-box;
  z-index: 3;
}

.hero-content {
  max-width: 850px;
  color: #fff;
  text-align: left;
  padding: 0; 
}

.hero-content .subheadline {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #ccc;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 60px);
  /* responsive */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}

.hero-content .highlight {
  color: #cfa74c;
}

.hero-content .description {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 35px;
}

.explore-btn {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 4px solid #ffffff;
  /* Increased border thickness */
  padding: 16px 40px;
  font-size: 1.4rem;
  border-radius: 35px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #004080;
  color: #fff;
  transform: translateY(-2px);
}


/* SUBMENU */
.arrow {
  vertical-align: middle;
  font-size: 16px;
  /* Small and consistent */
  color: white;
  cursor: pointer;
  margin-left: 4px;
  display: inline-block;
  line-height: 1;
  transition: transform 0.2s ease;
  margin-top: -5px;
}

.arrow:hover {
  transform: rotate(180deg);
  /* Optional: adds hover effect */
}
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
  gap: 4px;
  /* Add this if you want control directly in the link */
  width: 100%;
  transition: 0.3s;
}

.submenu li a:hover {
  background-color: #f7f7f7;
  color: #cba44d;
}

.submenu li:last-child a {
  border-bottom: none;
}

/* SEARCH ICON */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
}

.search-container i {
  font-size: 18px;
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}


.search-container i:hover {
	background-color: rgba(255, 255, 255, 0.3);
	color: #002147;
}

#search-form {
  position: absolute;
  top: 120%;
  right: 0;
  display: none;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 35px;
  gap: 12px;
  z-index: 9999;
}


#search-form input {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: white;
  color: #000;
  width: 220px;
}

#search-form input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 180px;
  font-family: 'Suisse Intl', sans-serif;
}

#search-form input::placeholder {
  color: #eee;
}

#search-form .close-icon {
  color: white;
  font-size: 18px;
  cursor: pointer;
}


/* ===== BANNER ===== */
.banner {
  position: relative;
  height: 80vh;
  background: url('Assets/Bg-pNg-1-2 1.png') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 160px;
  overflow: hidden;
}

.banner-content {
  max-width: 1450px;
  width: 100%;
  margin: auto;
  text-align: left;
  padding-inline: 20px;
}

.banner-content h1 {
  font-size: clamp(40px, 6vw, 70px);
  margin: 0 0 15px;
}

.breadcrumb {
  font-size: 22px;
  color: #f0f0f0;
  margin-top: 10px;
}

.breadcrumb a {
  color: #f0f0f0;
  text-decoration: none;
}

.breadcrumb .active {
  color: #cfa74c;
}

.breadcrumb span {
  margin: 0 8px;
  color: #f4c243;
}

.custom-offcanvas {
  position: fixed;
  top: 0;
  left: -270px;
  width: 270px;
  height: 100%;
  background: #f9f9f9;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
  border-right: 1px solid #ccc;
}

.custom-offcanvas.open {
  left: 0;
}

.custom-offcanvas #closeOffcanvas {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  float: right;
  margin-bottom: 10px;
  width: auto;
  color: #000;
  padding: 0;
  margin: 0;
}

.custom-offcanvas .offcanvas-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-offcanvas .offcanvas-nav ul li a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.custom-offcanvas .parent-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-offcanvas .arrow {
  font-size: 20px;
  color: #000;
}
.custom-offcanvas .submenu li > a {
	font-size: 15px;
	display: block !important;
	padding: 10px;
}

.custom-offcanvas .submenu {
  display: none !important;
  margin-left: 15px;
}

.custom-offcanvas .submenu.show {
  display: block !important;
}

#openOffcanvas {
  display: none;
  background: transparent;
  font-size: 30px;
  border: none;
  color: #fff;
  cursor: pointer;
  width: auto;
  padding: 0;
  margin: 0;
}

.offcanvas-nav {
  padding-top: 55px;
}

.offcanvas-nav ul li a {
  font-size: 20px;
}
.offcanvas-nav ul li a {
	padding: 5px 0;
}


/* ✅ Tablet */
@media (max-width: 1024px) {

  .menu-bar nav {
    padding: 10px 20px;
    border-radius: 20px;
    flex-wrap: wrap;
  }

  .menu-bar ul {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
  }

  .explore-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .banner-content h1 {
    font-size: clamp(32px, 5vw, 56px);
  }

  .breadcrumb {
    font-size: 18px;
  }

  .menu-bar-wrapper {
    display: none;
  }

  .navbar {
    padding: 20px;
  }

  .menu-bar {
    display: none;
  }

}

/* ✅ Mobile */
@media (max-width: 768px) {

  .navbar-left {
    flex-direction: column;
    gap: 12px;
  }

  .menu-bar nav {
    flex-direction: column;
    width: 100%;
  }

  .menu-bar ul {
    flex-direction: column;
    gap: 10px;
  }

  .logo img {
    height: 60px;
  }

  .hero-wrapper {
    padding: 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(28px, 6vw, 48px);
  }

  .hero-content .subheadline {
    font-size: 1.2rem;
  }

  .hero-content .description {
    font-size: 1.1rem;
  }

  .explore-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }

  .banner {
    height: 70vh;
    padding-top: 120px;
  }

  .banner-content h1 {
    font-size: clamp(28px, 5vw, 48px);
  }

  .breadcrumb {
    font-size: 16px;
  }

  .search-container i {
    width: 32px;
    height: 32px;
    font-size: 14px;
    padding: 6px;
  }

  #search-form input {
    width: 180px;
    font-size: 13px;
  }
}

/* ✅ Small Mobile */
@media (max-width: 480px) {
  .menu-bar ul {
    gap: 8px;
  }

  .hero-wrapper {
    padding: 10px;
  }

  .hero-content .description {
    font-size: 1rem;
  }

  .explore-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .banner {
    height: 60vh;
    padding-top: 100px;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .banner-content h1 {
    font-size: clamp(24px, 6vw, 36px);
  }
  .logo-nav {
	display: flex;
	align-items: center;
	gap: 25px;
}
}

@media (max-width: 1280px) {
  .hero-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    justify-content: flex-start;
  }

  .banner-content {
    padding-inline: 40px;
  }

  .hero-content h1 {
    font-size: clamp(30px, 5vw, 48px);
  }

  .hero-content .description {
    font-size: 1.2rem;
  }

  .explore-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

/* Hide offcanvas by default */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 20px 30px 20px; /* reduced top padding */
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

/* Slide in when active */
.offcanvas-menu.active {
  right: 0;
}

/* Offcanvas navigation list */
.offcanvas-nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.offcanvas-nav li {
  margin-bottom: 12px;
}

.offcanvas-nav li a {
  color: #002147;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 6px 0;
}

.offcanvas-nav .submenu {
  padding-left: 15px;
  margin-top: 4px;
}

.offcanvas-nav .submenu li a {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.offcanvas-nav ul {
    margin-top: 0; /* ensure no gap from list */
}

/* Hide menu bar on desktop, show on mobile */
#openOffcanvas {
  display: none;
}

@media (max-width: 1024px) {
  .menu-bar {
    display: none;
  }

  #openOffcanvas {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }
}


