.header-wrapper {
  background-color: var(--ar-body-bg); /* or use any solid/gradient */
  border-bottom: 1px solid #eee;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0;
}
.content-min-75vh {
  min-height: 75vh;
  display: block;
}
.page-full-padding {
  padding-left: 20px;
  padding-right: 20px;
}
.entry-title{
  margin-top: 50px;  
   color: var(--ar-dark-accent);
   text-transform: uppercase;
   font-size: 2.8;;
}
#site-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--ar-accent, #3aa98f);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#site-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid var(--ar-accent, #3aa98f);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ───────────── Logo Styling ───────────── */
.site-logo img {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ───────────── Desktop Header Layout ───────────── */
.header-desktop {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--ar-body-bg); /* or use any solid/gradient */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2rem; /* Optional: adjust spacing */

}

/* ───────────── Center Section: Subtitle + Contact ───────────── */
.header-desktop .header-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  gap: 0.3rem;
  text-align: left;
}

/* ───────────── Subtitle & Contact Info Styling ───────────── */
.header-desktop .sub-title,
.header-desktop .contact-info {
  white-space: nowrap;
  font-size: 0.855rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #1e1e1e;
}
.header-desktop  .sub-title{
    color: var(--ar-light-accent);
    font-weight: 700;
    
}
/* ───────────── Social Icons in Header ───────────── */

.header-desktop .contact-info .social-icons {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-desktop .contact-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 1rem;
  margin-left: 30px;
}

.header-desktop .contact-info a i {
  font-size: 1.1rem;
  color: #999;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-desktop .contact-info a:hover i {
  color: var(--ar-accent);
  transform: scale(1.2);
}

/* Optional spacing between icons */
.header-desktop .contact-info a + a {
  margin-left: 0.5rem;
}
/* ───────────── Header Transparen7 ───────────── */

/* Fix transparent header on top */
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 9999;
  
}

/* Container layout fix */
.header-transparent .container {
  max-width: 1200px; /* Match main .container */
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
/* ───────────── Subtitle & Contact Info Styling ───────────── */
.header-transparent .contact-info {
  white-space: nowrap;
  font-size: 0.855rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #212121;
}

.header-transparent  .hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #212121;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ───────────── Responsive Adjustments (≥ 992px) ───────────── */
@media (min-width: 999px) {
  .header-desktop .header-center {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}

/* ───────────── Full Overlay Container ───────────── */
.header-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.header-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ───────────── Background Dim ───────────── */
.overlay-background {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* ───────────── White Curtain ───────────── */
.overlay-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh; /* ← changed from 100% */
  width: 400px;
  background: #fff;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 10px rgba(0,0,0,0.15);
  overflow-y: auto; /* optional: scroll if content is long */
}
.header-overlay.active .overlay-right {
  transform: translateX(0);
}

/* ───────────── Menu Content Slide Up ───────────── */
.overlay-content {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s ease 0.4s, opacity 0.5s ease 0.4s;
}

.header-overlay.active .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

/* ───────────── Overlay Footer / Social Icons ───────────── */
.overlay-footer {
  margin-top: 100px;
  text-align: left;
}

.overlay-footer .overlay-icons {
  display: flex;
  flex-wrap: nowrap;
  padding-left: 0px;
}

.overlay-footer .overlay-icons a {
  font-size: .8rem;
  color: #fff;
  background-color: #cccccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s ease;
}

/* Hover Effect - Move icon slightly upward */
.overlay-footer .overlay-icons a:hover {
  background-color: var(--ar-accent);
  color: #fff;
  transform: translateY(-4px); /* Smooth hover lift */
}



/* ───────────── Overlay Content Wrapper ───────────── */
.overlay-content {
  margin-top: 50px; /* ✅ Add spacing from the top */
}

/* ───────────── Overlay Navigation Menu ───────────── */
.overlay-content .nav,
.overlay-content .nav .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ───────────── Menu Items ───────────── */
.overlay-content .nav li {
  margin: 0;
}

/* ───────────── Menu Links (Main & Submenu) ───────────── */
.overlay-content .nav li a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* ───────────── Hover Effect ───────────── */
.overlay-content .nav li a:hover {
  color: var(--ar-accent);
  transform: translateX(6px);
}

/* ───────────── Arrow for Items with Submenu ───────────── */
.overlay-content .nav li.menu-item-has-children {
  position: relative;
}

.overlay-content .nav li.menu-item-has-children > a::after {
  content: "\f107"; /* FontAwesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  font-size: 0.9rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* ───────────── Submenu Hidden by Default ───────────── */
.overlay-content .nav li .sub-menu {
  display: none;
  flex-direction: column;
  padding-left: 1.2rem;
  margin-top: 10px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ───────────── Animate Submenu on Open ───────────── */
.overlay-content .nav li.submenu-open > .sub-menu {
  display: flex;
  opacity: 1;
}

.overlay-content .nav li .sub-menu li {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Animate visible submenu items */
.overlay-content .nav li.submenu-open .sub-menu li.animated {
  opacity: 1;
  transform: translateY(0);
}




/* Burger Menu Button (Two Lines) */
.hamburger-btn {
  width: 35px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-right: 40px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 10; /* ensure it's above the nav overlay if needed */
}

/* Burger lines */
.hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease, margin 0.3s ease;
}

/* Hover: change color, no height change */
.hamburger-btn:hover span {
  background-color: var(--ar-accent, #3aa98f);
  margin: 2px 0; /* Optional effect to bring lines closer without affecting total height */
}

/* Avoid shrinking height on hover */
.hamburger-btn:hover {
  height: 15px; /* maintain same height to prevent reflow/shake */
}

/* Active State */
.hamburger-btn.active span:nth-child(1),
.hamburger-btn.active span:nth-child(2) {
  transform: none;
  opacity: 1;
}

/*Close (X) Button*/

.hamburger-close {
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 10001;
}

.hamburger-close span {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  top: 50%;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

/* X shape by default */
.hamburger-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

/* Hover: revert to two horizontal lines */
.hamburger-close:hover span:first-child {
  transform: translateY(-6px) rotate(0);
}

.hamburger-close:hover span:last-child {
  transform: translateY(6px) rotate(0);
}

/* ───────────── Back To Top ───────────── */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--secondary-color, #3aa98f); 
  color: #fff;
  border-radius: 50%;
  padding: 12px;
  font-size: 1rem;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
#backToTop {
  display: none; /* Hide initially */
  opacity: 0;
  transition: opacity 0.3s ease;
}

#backToTop.show {
  display: flex;
  opacity: 1;
}


/* ───────────── Breadcrumbs ───────────── */
.breadcrumb-wrap{
 margin-top:-10px;
 margin-left: 5px
}
.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--ar-light-accent);
}
.breadcrumbs a {
  color: var(--ar-dark-accent);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--ar-accent, #3aa98f);
  text-decoration: none;
  
}


@media (max-width: 1172.98px) and (min-width: 801px) {
  .header-desktop .header-center {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem;
  }

  .header-desktop .contact-info {
    margin-top: 0.3rem;
  }
}
@media (max-width: 900.98px) {
    
 /* ───────────── Hide Header Center on Mobile ───────────── */
  .header-desktop .header-center {
    display: none !important;
  }
  .overlay-right {
      width: 60%;
  }
  .overlay-footer {
  margin-top: 100px;
  }
    .overlay-content .nav li a {
    font-size: 1.25rem;
  }
/* ───────────── Logo & Burger Botton ───────────── */
  .site-logo img, .header-desktop .site-logo img {
  margin-left: 0px;
}
.hamburger-btn {

  margin-right: 0px;
}
}

/* ───────────── Footer ───────────── */

/* Footer Row: Ensure columns are flex and wrap cleanly */
.site-footer .row {
  display: flex;
  flex-wrap: wrap;
}

/* Footer Column: Let them grow equally if fewer than 4 */
.site-footer .row > [class*="col-"] {
  flex-grow: 1;
  flex-basis: 0; /* make it auto expand */
  min-width: 200px;
}

/* Responsive spacing (optional) */
@media (max-width: 767.98px) {
  .site-footer .row > [class*="col-"] {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
/* ──────────── Footer Columns Layout ──────────── */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* horizontal + vertical gap between columns */
}

/* Each column expands equally */
.footer-columns > [class*="col-"] {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 200px;
}

/* Adjust heading alignment (default: center) */
.footer-columns h5 {
  text-align: cleft; /* change to left or right if desired */
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* Optional: add spacing inside each widget */
.footer-widget {
  padding: 30px;
}
.site-footer .footer-copy {
  background-color: var(--ar-body-bg); /* or use any solid/gradient */
  padding: 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
}
.site-footer .footer-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ar-dark-accent);
  width: 29px;
  height: 29px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-right:5px;
}

.site-footer .footer-copy a i {
  color: #fff;
  font-size: 12px;
}

.site-footer .footer-copy a:hover {
  background-color: var(--ar-accent);
}

.site-footer .footer-copy a:hover i {
  color: #fff;
}
/* Responsive stack on small screens */
@media (max-width: 767.98px) {
  .footer-columns > [class*="col-"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  .footer-columns h5 {
    text-align: left; /* keep headings centered on mobile */
  }
}
.footer-copy{
    background-color: var(--ar-body-bg); /* or use any solid/gradient */
    padding: 30px;
}


