/* alignAfrica Widget Styles */
:root {
  --aw-orange: #F58220;
  --aw-teal: #033C5A;
  --aw-light: #F7F9FA;
  --aw-dark: #111111;
  --aw-white: #FFFFFF;
}

#aw-widget-1b02bed0 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--aw-dark);
  background-color: var(--aw-white);
  overflow-x: hidden;
}

#aw-widget-1b02bed0 .aw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#aw-widget-1b02bed0 section {
  padding: 80px 0;
}

/* Grids */
.aw-grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.aw-grid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

@media (max-width: 991px) {
  .aw-grid-two-col { grid-template-columns: 1fr; }
  .aw-grid-three-col { grid-template-columns: 1fr 1fr; }
  .aw-grid-four-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .aw-grid-three-col, .aw-grid-four-col { grid-template-columns: 1fr; }
}

/* Typography & Accent Elements */
.aw-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--aw-orange);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aw-eyebrow-accent {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--aw-teal);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aw-hero-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--aw-teal);
  margin-bottom: 24px;
}

.aw-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--aw-teal);
  margin-bottom: 30px;
}

.aw-section-header {
  margin-bottom: 50px;
}

.aw-section-header.text-center {
  text-align: center;
}

/* Buttons */
.aw-hero-buttons-wrapper {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.aw-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(3, 60, 90, 0.1);
}

.aw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(3, 60, 90, 0.18);
}

.aw-btn-icon {
  margin-left: 8px;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.aw-btn:hover .aw-btn-icon {
  transform: translateX(4px);
}

/* Section 1: Hero Compo & shapes */
.aw-hero-compo-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.aw-hero-img-main {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.5s ease;
}

.aw-hero-img-overlay {
  position: absolute;
  bottom: 5%;
  right: 0;
  z-index: 3;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  border: 4px solid var(--aw-white);
  transition: transform 0.5s ease;
}

.aw-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.aw-hero-img-main:hover {
  transform: scale(1.02) translateY(-4px);
}

.aw-hero-img-overlay:hover {
  transform: scale(1.05) translateY(-6px);
}

/* Decorative shapes */
.aw-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.aw-shape-ring {
  width: 120px;
  height: 120px;
  border: 8px solid var(--aw-orange);
  border-radius: 50%;
  top: -5%;
  right: 15%;
  animation: awFloat 8s infinite ease-in-out;
}

.aw-shape-teal-circle {
  width: 80px;
  height: 80px;
  background-color: var(--aw-teal);
  border-radius: 50%;
  bottom: -5%;
  left: 10%;
  animation: awFloat 10s infinite ease-in-out;
}

/* Section 2: Impact Cards */
.aw-impact-section {
  background-color: var(--aw-light);
}

.aw-impact-card {
  background-color: var(--aw-white);
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aw-impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(3, 60, 90, 0.1);
}

.aw-card-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--aw-orange);
  margin-bottom: 16px;
}

.aw-card-teal .aw-card-num {
  color: var(--aw-teal);
}

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

.aw-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.aw-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: var(--aw-orange);
  transition: width 0.3s ease;
}

.aw-card-teal .aw-card-accent-line {
  background-color: var(--aw-teal);
}

.aw-impact-card:hover .aw-card-accent-line {
  width: 100%;
}

/* Section 3: Trust Badge */
.aw-trust-badge {
  background-color: var(--aw-teal);
  color: var(--aw-white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(3, 60, 90, 0.25);
  border-bottom: 6px solid var(--aw-orange);
}

.aw-badge-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.aw-badge-year {
  font-size: 64px;
  font-weight: 900;
  color: var(--aw-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.aw-badge-text {
  font-size: 14px;
  font-weight: 600;
}

/* Section 4: Vision & Mission */
.aw-vision-card, .aw-mission-card {
  background-color: var(--aw-white);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.aw-vision-card {
  border-left: 5px solid var(--aw-teal);
}

.aw-mission-card {
  border-left: 5px solid var(--aw-orange);
}

.aw-quote-icon {
  font-size: 80px;
  line-height: 1;
  color: var(--aw-teal);
  opacity: 0.15;
  display: block;
  height: 40px;
  margin-top: -20px;
}

.aw-vm-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aw-orange);
  margin-bottom: 16px;
}

.aw-vision-card .aw-vm-label {
  color: var(--aw-teal);
}

.aw-vm-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.aw-mission-img-wrap {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.aw-mission-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section 5: VIP Framework */
.aw-vip-section {
  background-color: var(--aw-light);
}

.aw-vip-grid-wrapper {
  position: relative;
  margin-top: 50px;
}

.aw-vip-connecting-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: #ddd;
  z-index: 1;
}

.aw-vip-progress-dot {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--aw-orange);
  transition: width 0.8s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.aw-vip-cards-container {
  position: relative;
  z-index: 2;
}

.aw-vip-card {
  background-color: var(--aw-white);
  padding: 30px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.aw-vip-num {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--aw-teal);
  color: var(--aw-white);
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px auto;
  border: 4px solid var(--aw-white);
  box-shadow: 0 5px 15px rgba(3, 60, 90, 0.2);
}

.aw-vip-card:nth-child(even) .aw-vip-num {
  background-color: var(--aw-orange);
}

/* Section 6: People We Serve */
.aw-serve-card {
  background-color: var(--aw-white);
  padding: 30px;
  border-radius: 6px;
  border-top: 4px solid var(--aw-teal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.aw-serve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.aw-serve-icon {
  font-size: 32px;
  color: var(--aw-orange);
  margin-bottom: 20px;
}

.aw-serve-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--aw-teal);
  margin-bottom: 12px;
}

.aw-serve-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Section 7: Collaboration */
.aw-partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.aw-partner-chip {
  background-color: var(--aw-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--aw-teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.aw-partner-chip:hover {
  background-color: var(--aw-orange);
  color: var(--aw-white);
  transform: scale(1.05);
}

.aw-partner-icon {
  color: var(--aw-orange);
}

.aw-partner-chip:hover .aw-partner-icon {
  color: var(--aw-white);
}

/* Entry and Scroll Animations */
.aw-anim-slide-down { opacity: 0; transform: translateY(-20px); }
.aw-anim-slide-up { opacity: 0; transform: translateY(20px); }
.aw-anim-slide-up-delayed { opacity: 0; transform: translateY(20px); }
.aw-anim-slide-right { opacity: 0; transform: translateX(-30px); }
.aw-anim-slide-left { opacity: 0; transform: translateX(30px); }

.aw-animate-active {
  opacity: 1;
  transform: translate(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-hero-content-col .aw-anim-slide-up-delayed.aw-animate-active {
  transition-delay: 0.2s;
}

.aw-scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes awFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .aw-anim-slide-down, .aw-anim-slide-up, .aw-anim-slide-up-delayed, .aw-anim-slide-right, .aw-anim-slide-left, .aw-scroll-reveal, .aw-shape {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
