/* SHARP Website - Custom Styles
 * Using Bootstrap 5 as base
 * Palette inspired by SHARP logo:
 * Pink, Cyan, Green accents
 */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --sharp-dark: #111827;
  --sharp-pink: #e91e63;
  --sharp-cyan: #00bcd4;
  --sharp-green: #008543;
  --sharp-bg: #0b1120;
  --sharp-muted: #6b7280;
  --sharp-radius-lg: 1.25rem;
  --sharp-radius-md: 0.9rem;
  --sharp-shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.18);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  scroll-behavior: smooth;
}

/* Navbar */
.sharp-navbar {
  /* Light, clean navbar to match logo */
  background-color: #ffffff;
  color: #111827 !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
}

.sharp-navbar .navbar-brand {
  font-size: 1.05rem;
  color: #111827 !important;
}

.sharp-navbar .navbar-brand span,
.sharp-navbar .navbar-brand small {
  color: #111827 !important;
}

.sharp-logo-img {
 // width: 54px;
  //height: auto;
  //max-height: 48px;
}

.small-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
  padding: 0.75rem 0.9rem;
  position: relative;
  font-weight: bolder;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sharp-pink), var(--sharp-cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--sharp-green);
}

.navbar-toggler {
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  border: 1px solid #000;   /* optional border */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-scrolled {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
}

/* Hero */
.sharp-hero {
  min-height: 100vh;
  background: radial-gradient(circle at top left, var(--sharp-pink) 0, #020617 40%, #020617 100%);
  position: relative;
  padding-top: 88px;
  overflow: hidden;
}

.sharp-hero .hero-carousel {
  height: calc(100vh - 88px);
}

.sharp-hero .hero-slide {
  position: relative;
  height: calc(100vh - 88px);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.35);
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(0, 188, 212, 0.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(233, 30, 99, 0.18), transparent 55%);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 0 0, rgba(233, 30, 99, 0.9) 0, #020617 40%, #020617 100%);
  border-radius: var(--sharp-radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--sharp-shadow-soft);
}

.hero-card h3 {
  color: #f9fafb;
}

.hero-card .btn {
  border-radius: 999px;
}

.hero-meta {
  font-size: 0.85rem;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shapes .shape-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  right: 10%;
  top: 18%;
  opacity: 0.5;
  animation: floatSlow 16s infinite linear;
}

.hero-shapes .shape-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 120px solid rgba(248, 250, 252, 0.06);
  left: 6%;
  bottom: 10%;
  filter: blur(0.2px);
  animation: floatRotate 22s infinite linear;
}

.hero-shapes .shape-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.38) 1px, transparent 0);
  background-size: 12px 12px;
  right: 5%;
  bottom: 4%;
  opacity: 0.4;
}

/* Page hero (inner pages) */
.page-hero {
  min-height: 70vh;
  padding-top: 96px;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-carousel,
.page-hero .hero-slide {
  height: 100%;
  min-height: 320px;
}

.initiatives-hero {
background: radial-gradient(circle at top left, #22c55e 0, #064e3b 50%, #020617 100%);
}

.sponsors-hero {
  background: radial-gradient(circle at top right, var(--sharp-cyan) 0, #020617 50%, #020617 100%);
}

.hero-card-light {
  border-radius: var(--sharp-radius-lg);
  background: #ffffff;
  padding: 1.9rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Buttons */
/* Buttons */
.btn-sharp-primary {
  background: linear-gradient(135deg, #22c55e, #15803d);
  border: none;
  color: #ffffff;
  border-radius: 999px;
  padding-inline: 1.6rem;
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
}

.btn-sharp-primary:hover {
  background: linear-gradient(135deg, #16a34a, #166534);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
}

.btn-sharp-secondary {
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.7);
}

.btn-sharp-secondary:hover {
  background: #f9fafb;
  color: #111827;
}

.btn {
  transition: all 0.18s ease-out;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Sections */
.py-lg-6 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.section-eyebrow {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.08);
  //color: var(--sharp-pink);
color: #16a34a;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--sharp-muted);
  max-width: 45rem;
  margin-inline: auto;
}

.info-card,
.pillar-card,
.program-card,
.benefit-card,
.journey-step,
.tier-card,
.form-card,
.stats-card {
  border-radius: var(--sharp-radius-md);
  background-color: #ffffff;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.2s ease-out;
}

.pillar-card:hover,
.program-card:hover,
.benefit-card:hover,
.journey-step:hover,
.tier-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sharp-shadow-soft);
  border-color: rgba(59, 130, 246, 0.5);
}

.icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.09), rgba(0, 188, 212, 0.09));
  //color: var(--sharp-pink);
color: #16a34a;
}

.icon-wrap i {
  font-size: 1.2rem;
}

.stats-card {
  background: radial-gradient(circle at 10% 0, #fdf2f8 0, #ffffff 60%);
}

.stat-item {
  padding: 0.6rem 0.4rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--sharp-muted);
}

/* Lists */
.sharp-list li {
  margin-bottom: 0.45rem;
  color: #4b5563;
}

/* Carousel backgrounds (placeholder gradients, replace with images if available) */
.bg-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.carousel-bg-1 {
  background-image: linear-gradient(135deg, #0f172a, #1d4ed8);
}

.carousel-bg-2 {
  background-image: linear-gradient(135deg, #075985, #22c1c3);
}

.carousel-bg-3 {
  background-image: linear-gradient(135deg, #7c2d12, #f97316);
}

.carousel-caption {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.72),
    transparent
  );
  border-radius: 0.9rem;
  padding: 0.95rem 1.15rem;
}

/* Gallery */
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #020617;
  transition: transform 0.3s ease-out, filter 0.25s ease-out;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease-out, opacity 0.25s ease-out;
}

.gallery-grid .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.2), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(249, 115, 22, 0.15), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.gallery-grid .gallery-item:hover::after {
  opacity: 1;
}

.gallery-hidden {
  transform: scale(0.9) translateY(10px);
}

.gallery-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-filter-btn {
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--sharp-pink), var(--sharp-cyan));
  border-color: transparent;
}

.gallery-filter-btn.active,
.gallery-filter-btn.active:hover {
  color: #ffffff;
}

/* Journey steps */
.journey-row {
  position: relative;
}

.journey-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.3), rgba(233, 30, 99, 0.7));
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(233, 30, 99, 0.7);
  color: #be185d;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* Tiers */
.tier-card {
  position: relative;
}

.featured-tier {
  background: radial-gradient(circle at 0 0, #fdf2f8 0, #ffffff 50%);
  border-color: rgba(233, 30, 99, 0.6);
  box-shadow: var(--sharp-shadow-soft);
}

.featured-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

/* Partners row */
.partners-row {
  font-size: 0.8rem;
}

.partner-placeholder {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  color: #6b7280;
  background-color: rgba(15, 23, 42, 0.01);
}

/* CTA */
.bg-sharp-cta {
  //background: radial-gradient(circle at 0 0, var(--sharp-pink) 0, #020617 45%, #020617 100%);
  background: radial-gradient(circle at 0 0, var(--sharp-green) 0, #022c22 45%, #020617 100%);
  color: #e5e7eb;
}

/* Footer */
.sharp-footer {
  background: radial-gradient(circle at 0 0, #020617 0, #020617 45%, #020617 100%);
  color: #cbd5f5;
}

.footer-text {
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #93c5fd;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  transition: all 0.18s ease-out;
}

.social-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--sharp-pink), var(--sharp-cyan));
  border-color: transparent;
  transform: translateY(-1px);
}

/* Forms */
.form-card .form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #4b5563;
}

.form-control,
.form-select {
  border-radius: 0.8rem;
  border-color: rgba(148, 163, 184, 0.6);
  font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
  //border-color: var(--sharp-pink);
 
  border-color: #16a34a;
  
  box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.45);
}

/* Animations */
.animate-slide-up {
  opacity: 0;
  transform: translateY(18px);
  animation: slideUp 0.7s ease-out 0.1s forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.7s ease-out 0.25s forwards;
}

.animate-fade-in-delayed {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.45s forwards;
}

.animate-float {
  animation: floatCard 5s ease-in-out infinite;
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
}

.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Directional variants for fly-in / fly-out effects */
[data-animate='fly-left'] {
  transform: translateX(-40px);
}

[data-animate='fly-right'] {
  transform: translateX(40px);
}

[data-animate='fly-up'] {
  transform: translateY(40px);
}

[data-animate='zoom-in'] {
  transform: scale(0.9);
}

.in-view[data-animate='zoom-in'] {
  transform: scale(1);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

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

@keyframes floatRotate {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(8deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .sharp-hero {
    text-align: center;
  }

  .hero-card {
    margin-top: 2.5rem;
  }

  .navbar-nav .nav-link::after {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 0.25rem;
  }

  .journey-row::before {
    display: none;
  }

  .page-hero {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .sharp-hero {
    padding-bottom: 4rem;
  }

  .hero-card {
    padding: 1.4rem 1.25rem;
  }

  .gallery-grid .gallery-item {
    border-radius: 0.9rem;
  }

  .py-lg-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}


