/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

.hollow-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 0.8px orange;
  text-shadow:
    0.5px 0 orange,
    -0.5px 0 orange,
    0 0.5px orange,
    0 -0.5px orange;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: #eaebec;
}

.navbar {
  background-color: rgba(43, 58, 75, 0.2);
  background-color: transparent;
  color: #333;
  transition: background-color 0.3s ease;
  padding: clamp(0.2rem, .1vw, 0.6rem) clamp(0.5rem, 2vw, 1rem);
  /* Reduce overall height and horizontal space */
  margin: 0;
}

.dropdown-header {
  font-weight: bold;
  color: #ff6600;
  background-color: #f8f9fa;
  padding-top: 6px;
  padding-bottom: 4px;
}


/* Make sure the dropdown menu stays hidden until hovered */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Ensure the dropdown is hidden by default */
.dropdown-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Optional: Styling for better hover effect */
.dropdown-header {
  font-weight: bold;
  color: #ff6600;
  background-color: #f8f9fa;
  padding-top: 6px;
  padding-bottom: 4px;
}

/* Styling for the dropdown toggle when hovered */
.nav-item.dropdown:hover>.nav-link {
  color: #ff6600;
}


/* 2. Container padding override (Bootstrap adds default padding) */
.navbar .container-fluid {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.navbar-scrolled {
  background-color: rgba(251, 252, 253, 0.9);
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .nav-icon {
  color: #f4691b !important;
  color: #333;
}

/* Logo styling */

/* 3. Logo - make it smaller with less right spacing */
#logo {
  width: clamp(80px, 5vw, 120px);
  /* Adjust max size */
  height: auto;
  margin-right: clamp(0.2rem, 1vw, 0.8rem);
  /* Tighter space after logo */
  padding: 0;
}

/* Brand Name */
.navbar-brand {
  color: #333 !important;
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  font-weight: bold;
  padding: 0;
  margin: 0;

}

/* Navbar Links */
.nav-link {
  color: #fafafa !important;
  font-size: clamp(0.1rem, 1.5vw, 1rem);
  margin: 0 clamp(0.2rem, 1.2vw, 0.5rem);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

.nav-link i {
  font-size: 1.2rem;
}

/* Hide nav text on small screens */
@media (max-width: 768px) {
  .nav-text {
    display: none !important;
  }

  .nav-icon {
    font-size: 1.3rem;
  }
}

@media (min-width: 769px) {
  .nav-icon {
    margin-right: 2px;
    font-size: 1.1rem;
  }
}

.search-icon {
  font-size: 1.2rem;
  color: #333;
}

.search-box {
  transition: all 0.3s ease-in-out;
}

/* Ensure the dropdown doesn't stretch the navbar */
.navbar .dropdown-menu {
  position: absolute;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  top: 100%;
  left: auto;
  right: 0;
  z-index: 1000;
}

.dropdown-item {
  color: #f55c04;
  padding: 10px 15px;
}

.dropdown-item:hover {
  background-color: blanchedalmond;
  color: #fd0303;
}

/* Remove caret from dropdown */
.dropdown-toggle::after {
  display: none !important;
}

p {
  text-align: justify;
}

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
}

.custom-quote {
  border-left: 5px solid orange;
  padding: 1.5rem;
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.custom-quote::before {
  content: "";
  font-size: 3rem;
  color: #f4691b;
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 1;
}

.custom-quote-footer {
  margin-top: 1rem;
  text-align: right;
  color: #666;
}

.charter-list {
  padding: 0;
  margin: 0;
}

.charter-item {
  margin: 0;
  padding: 0.5rem 0;
  position: relative;
}

.charter-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #ccc;
}

.col-sm-5 {
  display: flex;
  /* border: 1px solid #333;
  background-color: ivory;
  justify-content: center; */
}

.image-box {
  position: relative;
  text-align: center;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  /* ensures the rounded corners clip children like .top-left */
}


.top-left {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* font-size: 10px;
   */
  color: orangered;
  /* Ensure text is visible */
  z-index: 1;
}




.top-left a {
  text-decoration: none;
  color: orangered;
  /* font-size: 0.2rem; */
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 20px;
  z-index: 1;
  /* background-color: #ecf0f1; */
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-box-blog {
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-box-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-box-services {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-box--services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.lead {
  width: 30rem;
  border-radius: 10px;
  text-align: left;
  color: gray;
  text-wrap: balance;
  font-size: 16px;
}

#contact-section p,
#contact-section a {
  color: gray;

}

#contact-section .bi,
#contact-section .fab,
#contact-section a i {
  color: #f4691b;
  transition: all 0.3s ease;
}

#contact-section a:hover i {
  color: #7a2f00;
  /* slightly darker orange */
  transform: translateY(-3px) scale(1.1);
  /* lift + scale effect */
}

#contact-section input::placeholder,
#contact-section textarea::placeholder {
  /* color: #f4691b; */
  opacity: 1;
  /* Ensure full visibility */
}



.btn.slide-btn {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  color: rgb(245, 243, 243);
  border: 2px solid rgb(253, 253, 253);
  background-color: #f4691b;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn.slide-btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #b34302;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

.btn.slide-btn:hover::before {
  transform: scaleX(1);
}

.btn.slide-btn:hover {
  color: rgb(255, 255, 255);
  /* border-color: #646464; */

}


/* button group */
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.button-group .btn {
  flex: 1;
  text-align: center;
  padding: 14px 28px;
  font-size: 16px;
  border: 1px solid orange;
  color: white;
  background: #f4691b;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.button-group .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  color: #f4691b;
  z-index: -1;
  transition: width 0.4s ease;
}

.button-group .btn:hover::before {
  width: 100%;
}

/* *********for brochure button*********** */


#brochure-btn {
  position: fixed;
  top: 50%;
  right: -190px; /* Hidden initially */
  transform: translateY(-50%);
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: right 0.3s ease;
  z-index: 9999;
  font-weight: bold;
  transition: right 0.2s ease, background-color 0.3s ease;
}

#brochure-btn:hover {
  right: 0; /* Slide in on hover */
  background-color: darkorange;
}

.brochure-btn .btn {
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Mobile behavior */
@media (max-width: 768px) {
  .brochure-btn {
    top: 40%;
    right: 10px;
  }

  .brochure-btn .btn {
    padding: 12px;
    border-radius: 50%;
    font-size: 20px;
  }

  .brochure-btn .btn-text {
    display: none;
  }

  .brochure-btn:hover {
    right: 10px; /* No slide effect on mobile */
  }
}
/* *********for brochure button ends*********** */
