/* =========================================
   1. COLOR VARIABLES
   ========================================= */
:root {
  --dark-teal: #264653;
  --vibrant-teal: #77ABB7;
  --gold: #FFA239;
  --sandy-orange: #f4a261;
  --burnt-orange: #e76f51;
  --white: #f0f2f6;
  --heading-font: 'Montserrat', serif;
}


.content-wrapper { 
  max-width: 900px; /* Wider max-width for centered text */
  margin: 0 auto;
}

.services-pin-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #f8f9fa;
  position: relative;
  display: flex;
  align-items: center;
}

.services-scroll-track {
  display: flex;
  width: max-content;
  padding: 0 5vw;
  gap: 2rem;
}

.service-card {
  width: 350px;
  height: 450px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden; 
  transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-10px); }

/* Unified Intro Card */
.intro-card {
  justify-content: center;
  position: relative;
  border: none;
  background: linear-gradient(rgba(38, 70, 83, 0.65), rgba(38, 70, 83, 0.65)), url('Chicago Sunset.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem; /* Restored padding just for this text-only card */
}

/* Helper Text Classes */
.text-vibrant-teal { color: var(--vibrant-teal); }

/* LAPTOP SQUEEZE FIX (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .custom-floating-nav {
    padding: 0.6rem 1rem;
    width: 98%;
  }
  .navbar-brand img { width: 160px !important; }
 
 
/* MOBILE FIXES (Under 991px) */
@media (max-width: 991px) {
  /* Nav Polish */
  .custom-floating-nav { border-radius: 20px; }
  .navbar-collapse {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 0.5rem;
  }
 
  /* Hero White-Space Fix */
  .hero-content {
    width: 100%;
    background-color: transparent; /* Removes the solid teal block */
    padding-top: 100px; /* Gives the text breathing room below the mobile hamburger menu */
  }
}

.why-choose-us {
  background-color: #f8f9fa; /* Soft off-white */
  padding: 8rem 0; /* Huge padding to give it high-end breathing room */
  position: relative;
  z-index: 5;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  line-height: 1;
}

.experience-badge span {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: -10px;
}


/* Mobile Adjustment for the Badge */
@media (max-width: 991px) {
  .why-img { height: 400px; }
  .experience-badge {
    right: 20px;
    bottom: -20px;
  }
}


.non-discrimination-section {
  position: relative;
  z-index: 5;
}



@media (min-width: 768px) {
  .statement-header {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 2rem;
  }
  .statement-body {
    padding-left: 2rem;
  }
}


.custom-checklist li {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #495057;
}


/* Scrollable Playlist Area */
.custom-playlist-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

/* ☢️ THE NUCLEAR OPTION: Kill Google Translate Banner */

/* 1. Hide the specific iframe banner */
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

/* 2. Hide the skiptranslate container entirely */
.skiptranslate {
    display: none !important;
}

/* 3. Force the body and html to stay at the top */
html, body {
    top: 0px !important;
    position: static !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
}

/* 4. Nuke the hover tooltips and text highlighting */
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

/* Scrollbar Styling for Webkit */
.custom-playlist-scroll::-webkit-scrollbar { width: 6px; }
.custom-playlist-scroll::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.custom-playlist-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
.custom-playlist-scroll::-webkit-scrollbar-thumb:hover { background: var(--sibrant-teal); }

/* Video Thumbnail Links */
.video-thumbnail {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-bottom: 8px;
}

.video-thumbnail img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-thumbnail .title {
  color: #495057;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.video-thumbnail:hover { background-color: rgba(42, 157, 143, 0.08); }
.video-thumbnail.active { background-color: rgba(42, 157, 143, 0.15); border-left: 4px solid var(--vibrant-teal); }
.video-thumbnail.active .title { color: var(--dark-teal);}