@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --primary: #0c4a6e;
  --secondary: #0891b2;
  --accent: #06b6d4;
  --dark: #0f172a;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #64748b;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-white);
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.navbar-brand:hover {
  opacity: 1;
  transform: none;
}

.navbar-brand:hover img {
  opacity: 1;
  transform: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-subtitle {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase !important;
  justify-content: start;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 16px;
}

/* Top Bar */
.top-bar {
  background: #0891b2;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.top-bar-item {
  color: white;
  text-decoration: none;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item:hover {
  opacity: 1;
}

.top-bar-right {
  color: white;
  opacity: 0.95;
}

/* Header */
header {
  position: sticky;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bg-unief-menu {
  border-bottom: 1px solid #e2e8f0 !important;
  background-color: #ffffff;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s;
}

nav a:hover {
  color: var(--text-primary);
  background: var(--bg-light);
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: 0.15em;
  content: "";
  border: none;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}

.dropdown-toggle:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Nested Dropdown Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: 0;
}

.dropdown-submenu > .dropdown-item::after {
  content: "";
  border: none;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 6 15 12 9 18'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  float: right;
  margin-top: 0.2em;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: white !important;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-1px);
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}
/* Offcanvas Styles */
.offcanvas {
  width: 360px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: -4px 0 20px rgba(8, 145, 178, 0.1);
}

.offcanvas-header {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 1.5rem;
}

.offcanvas-title img {
  max-width: 120px;
  height: auto;
}

.offcanvas .btn-close {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.offcanvas .btn-close:hover {
  opacity: 1;
}

.offcanvas-body {
  padding: 2rem 1.5rem;
}

.offcanvas-body .navbar-nav {
  gap: 0.5rem;
}

.offcanvas-body .nav-item {
  width: 100%;
}

.offcanvas-body .nav-link {
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  color: #475569 !important;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
}

.offcanvas-body .nav-link:hover {
  background-color: #e3f0f4;
  color: #0891b2 !important;
  transform: translateX(5px);
}

.offcanvas-body .nav-link.active {
  background-color: #e3f0f4;
  color: #0891b2 !important;
  font-weight: 600;
}

.offcanvas-body .btn-blue {
  padding: 0.875rem 1.5rem !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
  transition: all 0.3s ease;
}

.offcanvas-body .btn-blue:hover {
  background-color: #0c4a6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.3);
}

/* Contact Button Styles */
.nav-link-contact {
  background: #0891b2 !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
}

.nav-link-contact:hover {
  background: #0c4a6e !important;
  color: white !important;
}

.accordion-button-contact {
  background: #0891b2 !important;
  color: white !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
}

.accordion-button-contact:hover {
  background: #0c4a6e !important;
  color: white !important;
}

.accordion-button-contact:focus {
  box-shadow: none !important;
}

.accordion-button-contact::after {
  display: none !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: flex;
  align-items: center;
}

/* Mobile Accordion Styles */
#mobileMenuAccordion .accordion-item {
  border: none;
  margin-bottom: 0.5rem;
  background-color: transparent;
}

#mobileMenuAccordion .accordion-button {
  font-weight: 600;
  color: #0c4a6e;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#mobileMenuAccordion .accordion-button:not(.collapsed) {
  background-color: #f0f9ff;
  color: #0891b2;
  border-radius: 8px 8px 0 0;
}

#mobileMenuAccordion .accordion-button.collapsed {
  border-radius: 8px;
}

#mobileMenuAccordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

#mobileMenuAccordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230c4a6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

#mobileMenuAccordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230891b2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transform: rotate(180deg);
}

#mobileMenuAccordion .accordion-body {
  padding: 0.5rem 0;
  background-color: #f0f9ff;
  border-radius: 0 0 8px 8px;
}

#mobileMenuAccordion .dropdown-item {
  padding: 0.75rem 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: transparent;
  border: none;
}

#mobileMenuAccordion .dropdown-item:hover {
  background-color: #e0f2fe;
  color: #0891b2;
  padding-left: 2rem;
}

#mobileMenuAccordion .accordion-collapse {
  border: none;
}

#mobileMenuAccordion .accordion-flush .accordion-collapse {
  border-width: 0;
}

#mobileMenuAccordion .accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* Offcanvas Backdrop */
.offcanvas-backdrop {
  background-color: rgba(15, 23, 42, 0.5);
}

/* Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.offcanvas.show {
  animation: slideInRight 0.3s ease-out;
}

/* Hero */
.hero {
  padding-top: 130px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(8, 145, 178, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--secondary);
}
.dropdown-toggle {
  display: flex;
  align-items: center;
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 880px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--secondary);
}

.about-feature span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-image {
  width: 100%;
  height: 480px;
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Mission */
.mission {
  padding: 100px 0;
  background: var(--bg-light);
}

.mission-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.mission-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mission-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mission-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.mission-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.mission-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Programs */
.programs {
  padding: 100px 0;
  background: var(--bg-white);
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.program-card:hover {
  background: white;
  border-color: var(--border);
  transform: translateY(-4px);
}

.program-badge {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
}

.program-tag {
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.program-tag.year {
  background: var(--primary);
  color: white;
}

.program-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.program-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: gap 0.2s;
}

.program-link:hover {
  gap: 12px;
}

/* Impact Banner */
.impact {
  padding: 80px 0;
  background: var(--primary);
  color: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
}

.impact-number {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 8px;
}

.impact-text {
  font-size: 16px;
  opacity: 0.9;
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--bg-white);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.service-card:hover {
  background: white;
  border-color: var(--border);
  transform: translateY(-4px);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Resources */
.resources {
  padding: 100px 0;
  background: var(--bg-light);
}

.resources-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.resources-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.resource-featured {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.resource-featured-img {
  height: 320px;
  background-size: cover;
  background-position: center;
}

.resource-featured-content {
  padding: 32px;
}

.resource-featured-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.resource-featured-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.resource-item:hover {
  border-color: var(--primary);
}

.resource-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.resource-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Membership */
.membership {
  padding: 100px 0;
  background: var(--bg-white);
}

.membership-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tier-card {
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card.featured {
  background: white;
  border-color: var(--primary);
}

.tier-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.tier-name {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.tier-price {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.tier-feature svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Partners */
.partners {
  padding: 100px 0;
  background: var(--bg-light);
}

.partners-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
  padding: 0 4rem;
}

.partner-box {
  height: 150px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.2s;
  border: 1px solid #e2e8f0;
}

.partner-box:hover {
  border-color: var(--border);
}

.partner-box img {
  max-width: 100%;
  max-height: 85px;
  object-fit: contain;
}

/* News */
.news {
  padding: 100px 0;
  background: var(--bg-white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
}

.news-card:hover {
  background: white;
  border-color: var(--border);
  transform: translateY(-4px);
}

.news-img {
  width: 100%;
  height: 200px;
  background: var(--bg-subtle);
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 28px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
}

.news-date {
  font-size: 13px;
  color: var(--text-light);
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team */
.team {
  padding: 100px 0;
  background: var(--bg-light);
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar svg {
  width: 36px;
  height: 36px;
  color: var(--text-light);
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--text-light);
}

/* CTA */
.cta {
  padding: 100px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-family: inherit;
}

.cta-submit {
  padding: 16px 32px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-submit:hover {
  background: var(--accent);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-location {
  font-size: 14px;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Footer Contact Button */
.footer-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.footer-contact-btn .btn {
  margin-top: 24px;
}

.footer-contact-mobile {
  margin-top: 1rem;
  padding: 0 1rem;
}

/* Footer Accordion - Hidden by default */
.footer-mobile-accordion {
  display: none;
}

/* Footer Accordion Styles */
#footerAccordion .accordion-item {
  border: none;
  margin-bottom: 0.5rem;
  background-color: transparent;
}

#footerAccordion .accordion-button {
  font-weight: 600;
  color: white;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  box-shadow: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#footerAccordion .accordion-button:not(.collapsed) {
  background-color: rgba(8, 145, 178, 0.2);
  color: #0891b2;
  border-radius: 8px 8px 0 0;
}

#footerAccordion .accordion-button.collapsed {
  border-radius: 8px;
}

#footerAccordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

#footerAccordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

#footerAccordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230DFFA3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transform: rotate(180deg);
}

#footerAccordion .accordion-body {
  padding: 0.5rem 0 1rem 0;
  background-color: rgba(8, 145, 178, 0.1);
  border-radius: 0 0 8px 8px;
}

#footerAccordion .accordion-body .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 1.25rem;
}

#footerAccordion .accordion-body .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

#footerAccordion .accordion-body .footer-links a:hover {
  color: #0891b2;
  padding-left: 0.5rem;
}

#footerAccordion .accordion-collapse {
  border: none;
}

#footerAccordion .accordion-flush .accordion-collapse {
  border-width: 0;
}

#footerAccordion .accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.navbar-light .navbar-nav .nav-link {
  display: flex;
  align-items: center;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #e3f0f4;
  color: #0891b2 !important;
  border-radius: 0px;
}
.dropdown-item:hover {
  border-radius: 0px;
}
.hero-section {
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  /* Footer Desktop Menu */
  .footer-desktop-menu {
    display: grid !important;
  }

  .footer-mobile-accordion {
    display: none !important;
  }
}

@media screen and (min-width: 1100px) {
  .px-6 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
}
@media screen and (min-width: 1500px) {
  .px-xl-6 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}
/* Responsive */

/* Tablet - Large (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .top-bar {
    display: none;
  }

  /* Hero Section */
  .hero {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-description {
    font-size: 17px;
    max-width: 100%;
  }

  .hero-stats {
    gap: 40px;
  }

  .hero-image {
    height: 400px;
  }

  /* About Section */
  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    height: 400px;
  }

  /* Mission Section */
  .mission {
    padding: 80px 0;
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Programs Section */
  .programs {
    padding: 80px 0;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Impact Section */
  .impact {
    padding: 60px 0;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Services Section */
  .services {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Resources Section */
  .resources {
    padding: 80px 0;
  }

  .resources-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Membership Section */
  .membership {
    padding: 80px 0;
  }

  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tier-card:last-child {
    grid-column: 1 / -1;
    margin: 0 auto;
  }

  /* Partners Section */
  .partners {
    padding: 80px 0;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* News Section */
  .news {
    padding: 80px 0;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Team Section */
  .team {
    padding: 80px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Footer */
  .footer-desktop-menu {
    display: none;
  }

  .footer-mobile-accordion {
    display: block;
  }

  /* CTA Section */
  .cta {
    padding: 80px 0;
  }

  .cta h2 {
    font-size: 36px;
  }

  .cta p {
    font-size: 16px;
  }
}

/* Mobile - Large (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  .px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .top-bar {
    display: none;
  }

  /* Hero Section */
  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

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

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-cta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-number {
    font-size: 32px;
  }

  .hero-image {
    height: 300px;
  }

  /* Section Spacing */
  .about,
  .mission,
  .programs,
  .services,
  .resources,
  .membership,
  .partners,
  .news,
  .team {
    padding: 60px 0;
  }

  .impact,
  .cta {
    padding: 50px 0;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    height: 320px;
  }

  .section-title {
    font-size: 32px;
  }

  /* Mission Section */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Programs Section */
  .programs-header,
  .resources-header,
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Impact Section */
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .impact-number {
    font-size: 42px;
  }

  .impact-text {
    font-size: 14px;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Resources Section */
  .resources-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .resource-featured-img {
    height: 240px;
  }

  /* Membership Section */
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Partners Section */
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .partner-box {
    height: 80px;
  }

  /* News Section */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Team Section */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Footer */
  .footer-desktop-menu {
    display: none;
  }

  .footer-mobile-accordion {
    display: block;
  }

  /* CTA Section */
  .cta h2 {
    font-size: 32px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta-form {
    flex-direction: column;
    max-width: 100%;
  }
}
@media screen and (max-width: 1025px) {
  .news-card {
    height: 400px;
  }
  .tier-card {
    height: 460px;
  }
  .member-card-md {
    height: 560px;
  }
  .service-card {
    height: 260px;
  }
  .mission-card {
    height: 235px;
  }
  .mission-grid,
  .programs-grid,
  .services-grid,
  .news-grid,
  .membership-grid {
    display: none;
  }
}
@media screen and (min-width: 1026px) {
  .owl-responsive {
    display: none !important;
  }
}

/* Mobile - Small (up to 480px) */
@media screen and (max-width: 480px) {
  .px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .top-bar {
    display: none;
  }

  /* Typography */
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 11px;
  }

  /* Buttons */
  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Hero Section */
  .hero {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .stat-item {
    flex: 1;
    min-width: 90px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-image {
    height: 260px;
  }

  /* Section Spacing */
  .about,
  .mission,
  .programs,
  .services,
  .resources,
  .membership,
  .partners,
  .news,
  .team {
    padding: 50px 0;
  }

  .impact,
  .cta {
    padding: 40px 0;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-image {
    height: 280px;
  }

  .about-feature span {
    font-size: 14px;
  }

  /* Mission Section */
  .mission-header {
    margin-bottom: 40px;
  }

  .mission-text {
    font-size: 15px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mission-card {
    padding: 24px 20px;
  }

  .mission-title {
    font-size: 16px;
  }

  .mission-desc {
    font-size: 13px;
  }

  /* Programs Section */
  .programs-header,
  .resources-header,
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-card {
    padding: 24px;
  }

  .program-title {
    font-size: 18px;
  }

  .program-desc {
    font-size: 13px;
  }

  /* Impact Section */
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .impact-number {
    font-size: 36px;
  }

  .impact-text {
    font-size: 13px;
  }

  /* Services Section */
  .services-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-title {
    font-size: 17px;
  }

  .service-desc {
    font-size: 14px;
  }

  /* Resources Section */
  .resources-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-featured-img {
    height: 200px;
  }

  .resource-featured-content {
    padding: 24px;
  }

  .resource-featured-content h3 {
    font-size: 22px;
  }

  .resource-featured-content p {
    font-size: 14px;
  }

  .resource-item {
    padding: 16px;
  }

  .resource-item h4 {
    font-size: 15px;
  }

  .resource-item p {
    font-size: 13px;
  }

  /* Membership Section */
  .membership-header {
    margin-bottom: 40px;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tier-card {
    padding: 28px 24px;
  }

  .tier-name {
    font-size: 24px;
  }

  .tier-feature {
    font-size: 13px;
  }

  /* Partners Section */
  .partners-header {
    margin-bottom: 40px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0px;
  }

  .partner-box {
    height: 70px;
    padding: 16px;
  }

  .partner-box span {
    font-size: 16px !important;
  }

  /* News Section */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-img {
    height: 180px;
  }

  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-excerpt {
    font-size: 13px;
  }

  /* Team Section */
  .team-header {
    margin-bottom: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .team-card {
    padding: 24px 16px;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
  }

  .team-avatar svg {
    width: 32px;
    height: 32px;
  }

  .team-name {
    font-size: 15px;
  }

  .team-role {
    font-size: 12px;
  }

  /* CTA Section */
  .cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cta p {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .cta-form {
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
  }

  .cta-input {
    padding: 14px 16px;
    font-size: 14px;
  }

  .cta-submit {
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Footer */
  footer {
    padding: 60px 0 32px;
  }

  .footer-grid {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-desktop-menu {
    display: none;
  }

  .footer-mobile-accordion {
    display: block;
  }

  .footer-brand h3 {
    font-size: 20px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    padding-top: 32px;
    font-size: 12px;
  }
}
