/* Reset and base styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.org-subtitle {
  font-size: 12px;
  margin-top: 0px;
  color: #f8f8f8;
  line-height: 1.2; /* reduce line-height */
}

.navbar-nav > li > a {
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff !important;
}

.navbar-nav > li > a:hover {
  color: #f0e6d2 !important; /* soft white hover */
  text-decoration: none;
}

/* Adjust dropdown caret (if any) */
.navbar-nav > li > .dropdown-toggle::after {
  border-top-color: #fff;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* changed from stretch to center */
  padding: 5px 0; /* reduced vertical padding */
  height: auto; /* let content determine height */
}

.navbar-brand-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* center horizontally */
  margin-top: -20px; /* move up slightly */
}

.navbar-menu-wrapper {
  display: flex;
  align-items: right;
}

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ef07add6; /* warm brown tone to match image */
  color: #ffffff;
  text-align: center;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}

.footer {
  position: sticky;
  width: 100%;
  background: #eee;
}
.footer .container {
  position: sticky;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.cta-section {
  text-align: center;
  background: #f7f7f7;
  padding: 40px 20px;
}


/* HERO IMAGE SECTION */
.hero-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
 
}
.hero {
  background: #f9f1fb;
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  color: #333;
}
.hero p {
  font-size: 1.2em;
  color: #555;
}

/* Career Bridge */
.cta-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #c0399f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
}
.section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #2c3e50;
}
.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.column {
  flex: 1 1 30%;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.column h3 {
  color: #c0399f;
  margin-bottom: 15px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.benefit {
  flex: 1 1 45%;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}
.benefit h4 {
  margin-bottom: 10px;
  color: #2c3e50;
}

/* MARKETING CARDS (GIRL SCOUT STYLE) */
.gs-style-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: -100px;
  margin-bottom: 60px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}
.gs-style-card {
  width: 364px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 20px;
  background-color: #fff; /* default fallback */
}

.gs-style-card:hover {
  transform: translateY(-5px);
}

.gs-style-card-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px 10px;
  color: #111;
}

.gs-style-card img {
  width: calc(100% - 30px); /* Shrink image width to allow space for margin */
  height: 260px;
  object-fit: cover;
  margin: 15px; /* Add space around the image */
  border-radius: 8px; /* Optional: soften the image edges */
}

.gs-style-card .card-content {
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.card-green {
  background-color: #e4a2f8;
}

.card-yellow {
  background-color: #f0fa84;
}

.card-blue {
  background-color: #b3e3f7db;
}

.gs-style-service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px; /* ⬅️ Instead of -100px, now it's positive so it appears below "Our Services" title */
  margin-bottom: 60px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

/* MISSION STATEMENT */
.mission-section {
  background-color: #f9f9f9;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  color: #444;
}

.mission-section h4 {
  font-size: 18px;
  line-height: 1.6;
}

.mission-section h4 strong {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.service_section {
  max-width: 1200px;
  margin: 80px auto 40px auto; /* Top margin 80px, bottom margin 40px, centered horizontally */
  padding: 0 40px; /* Padding on left and right */
}

.service_section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px; /* Space under section titles */
  text-align: left; /* Left align the title */
}

.career_section {
  max-width: 1200px;
  margin: 80px auto 40px auto; /* Top margin 80px, bottom margin 40px, centered horizontally */
  padding: 0 40px; /* Padding on left and right */
}

.career_section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px; /* Space under section titles */
  text-align: left; /* Left align the title */
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.service-box {
  flex: 1 1 30%;
  text-align: center;
  min-width: 280px;
}
.service-box img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
}
.service-box h4 {
  color: #d4a017;
  font-weight: 600;
  margin-top: 20px;
}
.career-position {
  margin-bottom: 40px;
}
.career-position h3 {
  margin-top: 20px;
  color: #333;
}

.highlight-tech { color: #007acc; font-weight: bold; }
.highlight-art { color: #d63384; font-weight: bold; }
.highlight-music { color: #20c997; font-weight: bold; }
.highlight-wisdom { color: #fd7e14; font-weight: bold; }
.highlight-passions { color: #6f42c1; font-weight: bold; }
.highlight-purpose { color: #e83e8c; font-weight: bold; }
.highlight-learning { color: #17a2b8; font-weight: bold; }
.highlight-self { color: #6610f2; font-weight: bold; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gs-style-cards {
    flex-direction: column;
    padding: 0 20px;
  }

  .gs-style-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}
