:root {
  --primary: #85916e;      /* Sage Green */
  --secondary: #64a7a9;    /* Deep Teal */
  --accent: #4db5b8;       /* Bright Cyan */
  --gold: #b08d57;         /* Champagne Gold */
  --dark: #1e2b2a;
  --light-bg: #f8fbfb;
  --transition: all 0.3s ease;
}
/* Change all links to your Deep Teal */
a {
  color: var(--secondary); 
  text-decoration: none;    /* Removes the default underline */
  transition: var(--transition);
}

/* Hover state using your Sage Green or Bright Cyan */
a:hover {
  color: var(--primary);    /* Changes to Sage Green on hover */
  text-decoration: none;    /* Keeps it clean, or use 'underline' if you prefer */
}
body { 
  font-family: 'Roboto', sans-serif; 
  padding-top: 130px; 
  overflow-x: hidden; 
  color: var(--dark);
}

h1, h2, h3, .logo-main { 
  font-family: 'Playfair Display', serif; 
}

/* Helper Classes */
.text-primary-color { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.bg-sage { background-color: var(--primary); }
.bg-teal { background-color: var(--secondary); }
.bg-teal-accent { background-color: #172a28; }
.bg-light-soft { background-color: var(--light-bg); }
.btn-text-link { color: var(--primary); text-decoration: none; font-weight: 500; border-bottom: 2px solid var(--primary); }
.underline {  width: 60px;  height: 3px;  background: var(--gold);  margin-top: 15px; }










/* TOP BAR */
.top-bar {
  background: var(--dark);
  color: white;
  height: 45px;
  font-size: 13px;
  z-index: 1050;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* NAVIGATION */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  top: 45px;
  height: 85px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 1040;
}

.logo-main {
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  display: block;
  line-height: 1;
}


/* Container: Prevents children from expanding beyond the header height */
.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 80px; /* Limits the total height to fit the 85px header */
  overflow: hidden; /* Ensures nothing spills out */
}

/* Image: Responsive and height-constrained */
.logo-img {
  height: auto;
  max-height: 45px; /* Adjust this to make the logo look right */
  width: auto;
  max-width: 100%; /* Prevents horizontal overflow */
  object-fit: contain;
  display: block;
}

/* Text: Scaled to fit perfectly */
.logo-text {
  font-size: 10px; /* Reduced size to prevent overflow */
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap; /* Keeps text on one line */
}

/* Tablet and Mobile adjustments */
@media (max-width: 991px) {
  .logo-box {
    max-height: 60px; /* Shorter container for smaller headers */
  }
  
  .logo-img {
    max-height: 35px;
  }
  
  .logo-text {
    font-size: 8px; /* Even smaller on mobile to guarantee fit */
    letter-spacing: 1px;
  }
}
.navbar-nav .nav-link {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 15px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover { color: var(--secondary); }

/* Ensure Top Bar is visible and legible on small screens */
@media (max-width: 576px) {
  .top-bar {
    font-size: 11px; /* Slightly smaller text to fit both items */
    padding: 0 5px;
  }
}

/* Compact Mobile Menu (White Background, Not Full Screen) */
.mobile-dropdown {
  position: fixed;
  top: 130px; /* Positions it right under the header */
  right: 20px;
  width: 200px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  display: none; /* Controlled by JS */
  z-index: 2000;
  border: 1px solid #eee;
}

.mobile-dropdown.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #f8f8f8;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: #fdfdfd;
  color: var(--secondary);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Base Button Styles */
.btn-main, .btn-outline-light {
  padding: 12px 25px; /* Reduced padding for better mobile fit */
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* Prevents text from wrapping inside the button */
}

/* Main Button */
.btn-main {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-main:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

/* Outline Button */
.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Responsive adjustment for larger screens */
@media (min-width: 768px) {
  .btn-main, .btn-outline-light {
    padding: 14px 40px; /* Restores your original large padding on Desktop */
  }
}



























/* The Animated Background */
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* Animation: Zoom from 1.3 down to 1.0 */
    animation: zoomOutBg 10s ease-out forwards;
}

/* Dark tint to make text pop like an app UI */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.z-index-1 {
    z-index: 2;
}

/* Keyframes for the zoom-out effect */
@keyframes zoomOutBg {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}








































/* Mobile Overlay */
.mobile-overlays {
  position: fixed;
  height: 100%;
  width: 0;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: var(--dark);
  overflow-x: hidden;
  transition: 0.5s;
}

.mobile-overlays.active { width: 100%; }

.overlay-contents {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
}

.mobile-overlays a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
  font-family: 'Playfair Display', serif;
}

.mobile-overlays a:hover { color: #f1f1f1; }

.mobile-overlays .close-btn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: white;
  cursor: pointer;
}





/* Gallery & Cards */
.gallery-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-img:hover { transform: scale(1.03); }




.service-card {
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}


/* Floating Action Button */
.fab-call {
position: fixed;
bottom: 30px;
 right: 20px;
width: 65px;
height: 65px;
background: var(--secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
z-index: 2000;
animation: pulse 2s infinite;
text-decoration: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0px rgba(100, 167, 169, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(100, 167, 169, 0); }
  100% { box-shadow: 0 0 0 0px rgba(100, 167, 169, 0); }
}

/* Responsiveness */
@media (max-width: 991px) {
  body { padding-top: 110px; }
  .header { height: 70px; top: 45px; }
  .display-1 { font-size: 3.5rem; }
}

/* Footer Sectioning */
footer { background: var(--dark); color: rgba(255,255,255,0.7); font-size: 14px; }
footer h5 { color: white; margin-bottom: 25px; font-family: 'Playfair Display'; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--primary); }


/* Facilities Section Specifics */
.letter-spacing-2 {
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.facility-img {
  min-height: 500px;
  object-fit: cover;
  border-left: 8px solid var(--gold); /* Elegant vertical accent */
}

/* Decorative Gold Box behind image */
.image-wrapper .accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  z-index: -1;
}

/* Icon Box Styling */
.icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Link Hover Animation */
.transition-link {
  transition: var(--transition);
  display: inline-block;
}

.transition-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  padding-left: 10px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .facility-img {
    min-height: 300px;
    margin-bottom: 2rem;
  }
}
/* About Section Enhancements */
.border-teal { border-top-color: var(--secondary) !important; }
.border-sage { border-top-color: var(--primary) !important; }
.border-gold { border-top-color: var(--gold) !important; }

.bg-gold {
    background-color: var(--gold);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

#about-hero img {
    transition: var(--transition);
}

#about-hero img:hover {
    transform: scale(1.02);
}

.bg-teal-accent {
    background-color: #1e2b2a; /* Darker version of your teal for contrast */
}

/* Make stats pop */
.bg-teal-accent h2 {
    color: var(--accent);
    font-size: 2.5rem;
}