/* =============================================
   CSS VARIABLES
   ============================================= */
/* =============================================
   DARK MODE VARIABLES
============================================= */
:root {
	--green:#04f404;
    --primary-green: #00a86b;
    --dark-green: #004d40;
    --light-green: #d4f1e8;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06);
    --black:#000000;
    /* Dark mode base colors */
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --secondary-bg: #f5f5f5;
    --card-bg: #ffffff;
    --border-color: #ddd;
    --highlight-color: #0066cc;
}


/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =============================================
   TYPOGRAPHY & REUSABLE
   ============================================= */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: none;
}

.btn-primary {
    background: var(--black);
    color: white;
}

.btn-primary:hover {
    background: var(--gray);
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    color: white;
}

/* =============================================
   HEADER & FLOATING TOP BAR
   ============================================= */
.top-bar {
   position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: auto;
}

.top-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.menu-box,
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.hamburger {
    width: 44px;
    height: 44px;
    background: var(--gray);
    border: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 20px;
    height: 2.5px;
    background: black;
    border-radius: 2px;
    transition: var(--transition);
}


/* =============================================
   HERO
   ============================================= */
.hero {
    text-align: center;
    padding: 140px 5% 100px;
    background: white;
	
}

.hero-tagline {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1.15;
    font-weight: 400;
    max-width: 820px;
    margin: 0 auto 1.8rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #444;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.92;
}
/* =============================================
   FEATURED INSIGHTS
   ============================================= */
.featured-section {
    background: linear-gradient(135deg, var(--black) 0%, #006b54 100%);
    color: white;
    padding: 100px 5%;
}

.featured-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-content h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.featured-content h2 {
    font-size: 2.6rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.12);
    padding: 10px;
    border-radius: 50px;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.65);
}

.newsletter-form button {
    padding: 14px 32px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: white;
    padding: 100px 5% 60px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}



.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.footer-column ul li {
    margin-bottom: 0.9rem;
}

.footer-column ul li a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.footer-links {
    display: flex;
    gap: 24px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .assist-container,
    .featured-container,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .card-large,
    .card-large.reverse {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 5% 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .small-cards-grid {
        grid-template-columns: 1fr;
    }

    .top-container {
        padding: 0 16px;
    }
}

@media (max-width: 500px) {
    .category-links {
        gap: 24px;
        padding: 40px 5%;
    }

    .stats-grid {
        gap: 40px 30px;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* =========================
   THEME SUPPORT
========================= */
:root {
    --overlay-dark: rgba(0,0,0,0.85);
    --overlay-light: rgba(255,255,255,0.85);
    --text-dark: #fff;
    --text-light: #111;
}

html[data-theme="light"] .carousel-overlay {
    background: linear-gradient(
        to top,
        var(--overlay-light),
        rgba(255,255,255,0.3)
    );
    color: var(--text-light);
}

html[data-theme="dark"] .carousel-overlay {
    background: linear-gradient(
        to top,
        var(--overlay-dark),
        rgba(0,0,0,0.3)
    );
    color: var(--text-dark);
}
/* =========================
   CAROUSEL CORE
========================= */
.carousel-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
	
}

.carousel {
    display: flex;
    align-items: center;
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 300px;
    height: 420px;
    margin: 0 18px;
    border-radius: 1px;
    overflow: hidden;
    position: relative;

    /* default state for side items */
    transform: scale(0.85);
    opacity: 1 !important;
    transition: transform 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Make the whole card trigger hover effects */
.carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
/* =========================
   CENTER ACTIVE ITEM
========================= */
.carousel-item.active {
    transform: scale(1.25);
    height: 480px;
    opacity: 1;
    z-index: 5;
}

/* =========================
   NEIGHBORING ITEMS
========================= */
.carousel-item.prev,
.carousel-item.next {
    transform: scale(0.95);
    opacity: 0.85;
    z-index: 3;
}




/* =========================
   CONTROLS
========================= */
.carousel-controls {
    display: flex;
    justify-content: left-side;
    gap: 20px;
    margin-top: 30px;
    z-index: 10;
    position: relative;

}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
	margin-bottom:40px;
	
}

.carousel-btn:hover {
    background: #333;
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .carousel-item {
        flex: 0 0 250px;
        height: 360px;
    }
    .carousel-item.active {
        height: 420px;
        transform: scale(1.2);
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 200px;
        height: 300px;
    }
    .carousel-item.active {
        height: 360px;
        transform: scale(1.15);
    }
    .carousel-title {
        font-size: 0.75rem;
    }
}
/* =========================
   FOOTER CTA - PROFESSIONAL
========================= */
.footer-cta {
    background: linear-gradient(135deg, #d4f1e8 0%, #b0e0d3 100%);
    padding: 80px 5%;
    border-radius: 16px;
    margin-bottom: 80px;
    color: var(--dark-gray);
}

.footer-cta-container {
    display: flex;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-cta-text {
    flex: 1;
    min-width: 300px;
}

.footer-cta-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.footer-cta-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-cta-text .email-highlight {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
}

/* =========================
   CONTACT FORM
========================= */
.footer-cta-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.footer-cta-form input,
.footer-cta-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.footer-cta-form input:focus,
.footer-cta-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 168, 107, 0.25);
    background: #fff;
}

.footer-cta-form textarea {
    resize: none;
}

.footer-cta-form button {
    align-self: flex-start;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta-form button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .footer-cta-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-cta-form {
        padding: 24px;
    }
}
.center-container {
    width: 100%;
    display: flex;
    justify-content: center;       /* horizontal center */
    padding: 2rem 1rem;            /* breathing room top/bottom */
}
.elevated {
    /* Core elevation */
    background: white;
    border-radius: 12px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
    /* Centering */
    margin: 2rem auto;
    width: fit-content;
    /* Spacing & layout */
    padding: 0.9rem 1.6rem;
    display: inline-flex;          /* keeps it compact like a pill/bar */
    align-items: center;
    gap: 1.5rem;                   /* space between links */
    
    /* Optional subtle enhancements */
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.18s ease;
}

.elevated:hover {
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Nice link styling inside */
.elevated a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.elevated a:hover,
.elevated a:focus {
    background: #f5f5f5;
    color: #000;
}

/* =====================================================
   TOP BAR LAYOUT
   ===================================================== */
.top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Menu + logo group */
.menu-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* =====================================================
   INLINE MENU (CENTER SLOT)
   ===================================================== */
.menu-inline {
  flex: 1;
  display: none;
  justify-content: center;
}

.menu-inline.visible {
  display: flex;
}

/* =====================================================
   NAV LINKS
   ===================================================== */
.nav-links-horizontal {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links-horizontal a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.nav-links-horizontal a:hover {
  color: #0066cc;
}

/* =====================================================
   LOGO VISIBILITY
   ===================================================== */
.logo {
  transition: opacity 0.2s ease;
}

.top-bar.menu-open .logo {
  display: none;
  
}

/* =====================================================
   HAMBURGER ANIMATION
   ===================================================== */
.hamburger span {
  transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .nav-links-horizontal {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* =====================================================
   MENU LINKS CONTAINER
   ===================================================== */
.menu-links-container {
  background: #ffffff;
  border-radius: 500px;               /* pill shape */
  padding: 0.6rem 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
}

/* Nav links stay the same */
.nav-links-horizontal {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Optional hover polish */
.nav-links-horizontal li a {
  position: relative;
}

.nav-links-horizontal li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066cc;
  transition: width 0.25s ease;
}

.nav-links-horizontal li a:hover::after {
  width: 100%;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .menu-links-container {
    padding: 0.6rem 1.2rem;
  }

  .nav-links-horizontal {
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ================================
   SEARCH EXPAND INTERACTION
   ================================ */

.search-box {
  display: flex;
  gap: 0px;
  align-items: center;
  position: relative;
}

/* Input hidden by default */
.search-input {
  width: 0;
  opacity: 0;
  margin-left: 0px;
  padding: 12px 12px;
  border-radius: 999px;
  border: 0px solid #ddd;
  outline: none;
  font-size: 14px;
  transition: all 0.35s ease;
  background: #fff;
  pointer-events: none;
}

/* Expand on hover OR when active */
.search-box:hover .search-input,
.search-box.active .search-input {
  width: 300px;
  opacity: 1;
  pointer-events: auto;
}

/* Optional: focus styling */
.search-input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0,102,204,0.15);
}

/* Keep button clean */
.search-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
	align-self:center;
    justify-content: center;
    cursor: pointer;
}

.search-btn img {
    width: 25px;
    height: 25px;
	align-items:center;
}
/* Dropdown & Calendar */
.appointment-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.divider {
  width: 1px;
  height: 24px;
  background-color: #ccc;
  margin: 0 8px;
}
.calendar-btn {
  background: none;
  color: black;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s all;
}
.calendar-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
.appointment-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
.appointment-wrapper.active .appointment-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
/* Close Button Styling */
.close-dropdown {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 10;
}

.close-dropdown:hover {
  color: var(--primary-green, #00a86b);
  background: rgba(0, 168, 107, 0.1);
}
/* Mini calendar */
.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.mini-calendar .day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.mini-calendar .day:hover {
  background: #3399ff;
  color: #fff;
}

.mini-calendar .day.disabled {
  color: #ccc;
  cursor: default;
}

.mini-calendar .day.selected {
  background: #0066cc;
  color: #fff;
}

/* Time slots */
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slots button {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #f0f0f0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.time-slots button:hover { background: #3399ff; color: #fff; border-color: #3399ff; }
.time-slots button.selected { background: #0066cc; color: #fff; border-color: #0066cc; }

/* Book button */
#book-appointment {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #0066cc, #3399ff);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s all;
}
#book-appointment:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }

/* Dark mode */
body.dark-mode .appointment-dropdown { background: #1f1f1f; color: #eee; }
body.dark-mode .mini-calendar .day { background: #2a2a2a; color: #eee; border: 1px solid #555; }
body.dark-mode .mini-calendar .day:hover,
body.dark-mode .mini-calendar .day.selected { background: #3399ff; color: #fff; }
body.dark-mode .time-slots button { background: #2a2a2a; color: #eee; border: 1px solid #555; }
/* Month navigation */
.month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.month-header button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #3399ff;
  transition: 0.2s;
}
.month-header button:hover { transform: scale(1.1); }

body.dark-mode .month-header button { color: #66ccff; }
/* Weekday headers */
.weekday-header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 weekdays */
  gap: 5px;
}

.mini-calendar .day {
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  background: #f5f5f5;
}

body.dark-mode .mini-calendar .day {
  background: #2c2c2c;
  color: #fff;
}

.mini-calendar .day:hover:not(.disabled) { 
  background: #3399ff; 
  color: #fff;
}

.mini-calendar .day.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.mini-calendar .day.selected {
  background: #0073e6;
  color: #fff;
}

.time-slots button {
  padding: 8px 14px;
  margin: 4px;
  border-radius: 5px;
  border: 1px solid #0073e6;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.time-slots button.selected {
  background: #0073e6;
  color: #fff;
}

.time-slots button.booked {
  background: #ccc;
  border-color: #999;
  cursor: not-allowed;
}
.appointment-dropdown {
    max-height: 500px; /* adjust depending on your design */
    overflow-y: auto;  /* enable vertical scroll */
    overflow-x: hidden; /* prevent horizontal scroll */
    scrollbar-width: thin; /* for Firefox */
    scrollbar-color: rgba(0,168,107,0.6) rgba(0,0,0,0.1);
}

/* Optional: Webkit scrollbar style */
.appointment-dropdown::-webkit-scrollbar {
    width: 8px;
}
.appointment-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}
.appointment-dropdown::-webkit-scrollbar-thumb {
    background: #00a86b;
    border-radius: 8px;
    border: 2px solid #f1f1f1;
}
.search-results {
  position: absolute;
  top: 40px; /* adjust to your search box height */
  right: 0;
  width: 250px;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px;
  display: none;
  z-index: 1000;
}

.search-result-item {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  font-size: 14px;
}

.search-result-item:hover {
  background-color: #f0f0f0;
}
/* Logo image styling */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transform: scale(1.2);      /* 👈 zoom level */
  transform-origin: center;
}
/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 12px;
  color: #00000; /* or your primary color */
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-container {
  background: #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-height: 420px;
}

.form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

.required {
  color: #e74c3c;
}


.btn-primary:hover {
  background: #000000;
}

.form-status.success {
  background: #e6f4ea;
  color: #1e8e3e;
}

.form-status.error {
  background: #fce8e6;
  color: #c5221f;
}

.contact-info-bar {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: #555;
  font-size: 15px;
}

.contact-info-bar i {
  margin-right: 8px;
  color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-container {
    min-height: 360px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--dark-green, #004d40);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

#back-to-top i {
  transition: transform 0.3s ease;
}

#back-to-top:hover i {
  transform: translateY(-3px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #back-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
    font-size: 1.3rem;
  }
}
/* Smooth reveal animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Common reveal class */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children (optional - adds delay per element) */
.reveal-on-scroll.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Delay per child */
.reveal-on-scroll.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-on-scroll.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-on-scroll.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-on-scroll.stagger > *:nth-child(4) { transition-delay: 0.4s; }
/* add more if needed */
#back-to-top:hover i {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}/* Give body top padding equal to header height on mobile */
/* Adjust 90px if your header is taller/shorter after testing */
body {
  padding-top: 90px;               /* ← safe default on mobile */
}

/* On larger screens where header might be less intrusive or you have top:20px */
@media (min-width: 768px) {
  body {
    padding-top: 0;                /* reset if you want content flush top */
  }
  .top-bar {
    top: 20px;                     /* your original value */
  }
}

/* Make sure main content doesn't get covered */
.main-content {
  position: relative;
  z-index: 1;                      /* stays below header but above bg */
}
/* Top bar / header fixes for mobile */
@media (max-width: 1024px) {               /* or even 900px */
  .top-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
  }

  .menu-box {
    width: 100%;
    justify-content: space-between;
  }

  .menu-inline {
    width: 100%;
    order: 3;
    margin-top: 10px;
  }

  .nav-links-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .top-right-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .search-box {
    width: 100%;
    justify-content: flex-end;
  }
}

/* All multi-column sections → stack on mobile */
@media (max-width: 992px) {
  .assist-container,
  .contact-grid,
  .featured-container,
  .outlook-content,
  .card-large,
  .card-large.reverse {
    grid-template-columns: 1fr !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .small-cards-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduce section padding massively on mobile */
@media (max-width: 768px) {
  section, footer {
    padding: 50px 5% !important;    /* much smaller than 100px */
  }

  .hero {
    padding: 100px 5% 60px !important;
  }

  .content-cards,
  .capabilities-section,
  .outlook-section {
    padding: 60px 5% !important;
  }

  .contact-section {
    padding: 50px 5% !important;
  }
}
html, body {
  overflow-x: hidden;
}

img, iframe, video, .container, .top-container {
  max-width: 100%;
}

.card-image img,
.map-container iframe {
  width: 100%;
  height: auto;                   /* let height adjust naturally */
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}




/* ────────────────────────────────────────────────
   FIXED HEADER – MOBILE SAFETY FIRST
   ──────────────────────────────────────────────── */

/* Give body enough top padding so content starts BELOW the fixed header */
body {
  padding-top: 40px;                    /* adjust after testing: 70–110px usually works */
}

/* Make header full-width + compact on mobile */
.top-bar {
  top: 0;                               /* stick to very top on mobile */
  background: transparent/see-through;  /* ensure no transparency/see-through */
  padding: 8px 0;                       /* less vertical space */
}

/* Force vertical stacking + better spacing on small screens */
@media (max-width: 1023px) {
  .top-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 8px;
  }

  .menu-box {
  flex: 0 0 auto;      /* ← do NOT grow */
  width: auto;
  justify-content: flex-start;
  gap: 10px;
}

  .logo {
    flex: 0 0 auto;
    margin-right: 12px;
  }

  .menu-inline {
    flex-basis: 100%;
    order: 3;
    margin-top: 8px;
    justify-content: center;
  }

  .nav-links-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    font-size: 0.95rem;
  }

.top-right-controls {
  flex: 0 0 auto;      /* ← do NOT stretch */
  width: auto;
  gap: 10px;
}


  .search-box {
    max-width: 200px;
    padding: 6px 10px;
  }
.search-input {
    min-width: 0;
    font-size: 0.9rem;
  }
}

/* ────────────────────────────────────────────────
   FOOTER – MOBILE STACK + CENTERING
   ──────────────────────────────────────────────── */

@media (max-width: 1023px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    order: -1;                        /* logo/title first */
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column ul {
    padding: 0;
    margin: 0;
  }

  .social-links {
    justify-content: center;
    margin: 12px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 0.9rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Reduce vertical padding on small screens */
@media (max-width: 768px) {
  footer {
    padding: 60px 5% 40px !important;
  }

  .footer-top {
    gap: 32px;
  }
}



/* Desktop: keep original layout */
@media (min-width: 1024px) {
  .menu-inline {
    display: relative !important;
  }
}.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #fff;
  background: linear-gradient(135deg, #1f7cff, #00c6ff);
  border: none;
  border-radius: 30px;

  cursor: pointer;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.3s ease;

  box-shadow: 0 10px 25px rgba(31, 124, 255, 0.35);
}

/* Hover */
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(31, 124, 255, 0.45);
}

/* Click / Active */
.btn-book:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(31, 124, 255, 0.35);
}

/* Disabled state */
.btn-book:disabled {
  background: linear-gradient(135deg, #9bb6d6, #b7cde4);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.75;
}

/*Don't touch this*/
#valuesCarousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
}

.carousel-item {
  position: absolute;
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform;
}

.carousel-item.active {
  pointer-events: auto;
}
/* Meta card – starts small at bottom */
.meta-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 12px;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.95;
}
/* On hover: expand to full overlay */
.carousel-item:hover .meta-card {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.08);
}
/* Meta & Title inside meta-card */
.meta {
  font-size: 6px;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.carousel-item:hover .meta-card .meta {
  font-size: 0.5rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
/* Title & meta text styling when expanded */
.carousel-item:hover .meta-card h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  max-width: 90%;
  color: #111111;
}
/* Title – stays dark (no green on hover) */
.meta-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
  color: #111111;           /* dark text – remains consistent */
  transition: font-size 0.5s ease;
}
/* Tag stays visible in corner */
.tag-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 15;
  transition: all 0.4s ease;
}
.tag {
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 6px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid #fff;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* === Dropdown Menu Styling === */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;                    /* Hidden by default */
  position: absolute;
  top: 100%;                        /* Appear right below the parent link */
  left: 0;
  background-color: #fff;           /* Adjust to match your design */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  min-width: 180px;
  z-index: 10;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border-radius: 6px;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;                      /* Adjust color */
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;        /* Hover effect */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: Add a small arrow indicator */
.dropdown > a::after {
  content: " ▼";
  font-size: 0.8em;
  margin-left: 4px;
  opacity: 0.7;
}

/* Make sure top-level links stay visible */
.nav-links-horizontal > li {
  position: relative;   /* Important for absolute positioning of dropdown */
}
