* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #4874ED;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 1000;

}

.header-container {
  max-width: 1200px;
  height: 100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 68px;
  height: 63px;
  object-fit: contain;
}

.brand__name {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.017em;
  color: #FAFAFA;
}


.primary-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.017em;
  color: #fafafa;
}

.nav-list a:hover {
  text-decoration: underline;
}


.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fafafa;
  margin: 5px 0;
  transition: transform 0.2s ease;
}


@media (max-width: 991px) {
  .header-container {
    height: 80px;
  }
  .nav-list a {

  font-size: 12px;

}

  .brand__name {
    font-size: 28px;
    line-height: 34px;
  }
  .nav-list a {
    color: #fafafa;
  }
  
}

@media (max-width: 812px) {
  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: #4874ED;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .primary-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-top: 1px solid #eaeaea;
  }

  .nav-list a {
    display: block;
    padding: 14px 16px;
  }
}


@media (min-width: 1200px) {
  .header-container {
    padding-left: 0;
    padding-right: 0;
  }
}




.vision-section {
  background: #4874ED;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.25rem;
  
}

.vision-container {
  max-width: 75rem;
  width: 100%;
  text-align: center;
  color: white;
}

.vision-header {
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.vision-logo {
  width: 2.1875rem;
  height: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 6rem;
}

.vision-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875rem;
  letter-spacing: -0.017em;
  color: #FAFAFA;
  margin: 0;
}

.vision-main-title {
  font-family: 'Inter', sans-serif;
  font-weight: 847;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fafafa;
  margin: 0 0 3rem 0;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.vision-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.01em;
  color: #fafafa;
  max-width: 56.25rem;
  margin: 0 auto 4rem auto;
  padding: 0 1.25rem;
}

/* ===== Button Container ===== */
.vision-buttons {
  display: flex;
  gap: 100px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ===== Base Button Styles ===== */
.get-started-btn,
.msx-button {
  width: 14rem;
  height: 4rem;
  padding: 0;
  background: #F4437B;
  border: none;
  border-radius: 1.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 3.9375rem; /* vertically centered */
  text-align: center;
  letter-spacing: 0.05em;
  color: #FAFAFA;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none; /* remove underline */
  box-sizing: border-box;
  white-space: nowrap; /* prevent wrapping */
}

.get-started-btn:hover,
.msx-button:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.2);
}

/* ===== Tablet and smaller desktop ===== */
@media (max-width: 991px) {
  .vision-buttons {
    gap: 50px;
    flex-wrap: nowrap; /* keep buttons in same row */
    justify-content: center;
    align-items: center;
  }

  .get-started-btn,
  .msx-button {
    width: 12.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
    line-height: 3.5rem;
  }
}

/* ===== Mid-range screens (768px–600px) ===== */
@media (max-width: 768px) and (min-width: 600px) {
  .vision-buttons {
    flex-wrap: nowrap; /* force in one line */
    justify-content: center;
    align-items: center;
    gap: 50px; /* smaller gap to fit */
  }

  button.get-started-btn,
  .msx-button {
    width: 12.5rem;
    height: 3.5rem;
    font-size: 1.2rem;
  }
}

/* ===== Mobile ===== */
@media (max-width: 599px) {
  .vision-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    flex-wrap: nowrap; /* keep buttons in same row */
    justify-content: center;
    align-items: center;
    justify-self: center;
    
    
  }

  button.get-started-btn{
    width: 12.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .msx-button {
    width: 12.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
    line-height: 3.5rem;
    
  }
  
}

/* ===== Extra Small Mobile ===== */
@media (max-width: 360px) {
    .vision-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    display: flex;
    
  }

  button.get-started-btn,
  .msx-button {
    width: 12.5rem;
    height: 3.25rem;
    font-size: 1.25rem;
    line-height: 3.125rem;
    border-radius: 1.5625rem;
  }
}

@media (max-width: 30rem) {
  .vision-section {
    padding: 3rem 1.25rem;
  }

  .vision-header {
    margin-bottom: 2rem;
  }

  .vision-logo {
    width: 1.875rem;
    height: 1.75rem;
    margin-bottom: 1rem;
  }

  .vision-title {
    font-size: 0.875rem;
  }

  .vision-main-title {
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
  }

  .vision-description {
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1rem;
  }


}




.main-content {
  background: #FAFAFA;
  min-height: 100vh;
}

.content-section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F4437B;
  text-align: center;
  margin-bottom: 2rem;
}

.content-section>.container>p {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.content-card {
  background: #FAFAFA;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4874ED;
  margin-bottom: 1rem;
}

.content-card p {
  color: #666;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .hero {
    margin-top: 80px;
    height: 150vh;
    background: linear-gradient(to bottom, #FAFAFA 0%, #FAFAFA 40%, #F4437B 40%, #F4437B 62%, #4874ED 30%, #4874ED 100%);
  }



  .content-section {
    padding: 60px 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .vision-section {
    padding: 20px 20px;
    min-height: auto;
    margin-top: -20px;
  }

  .vision-main-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
  }

  .vision-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 20px;
  }

  .get-started-btn {
    width: 200px;
    height: 55px;
    font-size: 24px;
  }
}

.we-inspire {
  position: relative;
  text-align: center;
  color: #fafafa;
  margin: 0;
  padding: 0;
  overflow: hidden;

}

.we-inspire-bg {
  position: relative;
  aspect-ratio: 1600 / 533;
  width: 100%;
  height: auto;
  overflow: hidden;

}

.we-inspire-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.we-inspire-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.we-inspire-logo {
  width: clamp(25px, 5vw, 35px);
  height: auto;
  margin-bottom: 10px;
}

.we-inspire .subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 15px;
  letter-spacing: -0.017em;
  color: #fafafa;
}

.we-inspire .title {
  font-family: 'Inter', sans-serif;
  font-weight: 999;
  letter-spacing: clamp(0.2em, 1vw, 0.5em);
  color: #fafafa;
  margin: 0;
  font-size: clamp(2rem, 6vw, 9rem);
  text-align: center;
  white-space: normal;
  line-height: 1.1;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .we-inspire .title {
    font-size: clamp(0.2rem, 6vw, 3rem);
    letter-spacing: 0.2em;
  }

  .we-inspire .subtitle {
    font-size: 0.9rem;
  }

  .we-inspire-logo {
    width: 15px;
  }
}

.we-inspire-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}

.we-inspire-cards .card {
  flex: 1 1 33.3333%;
  aspect-ratio: 533 / 533;
  padding: 3vw;
  margin: 0;
  border-radius: 0;
  padding: 100px 20px;
  color: #fafafa;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.we-inspire-cards h4 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.we-inspire-cards p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media (max-width: 747px) {
  .we-inspire-cards .card {
    flex: 1 1 100%;
    aspect-ratio: 4 / 1;
    padding: 40px 20px;
  }

  .we-inspire-cards h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .we-inspire-cards p {
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
}


.we-inspire-cards .youth {
  background: #22C3A3;
}

.we-inspire-cards .startups {
  background: #F4437B;
}

.we-inspire-cards .sponsors {
  background: #4874ED;
}



.raise-zones {
  text-align: center;
  padding: 80px 20px;
  background: #fafafa;
  overflow: hidden;
}

.raise-logo {
  width: clamp(30px, 4vw, 35px);
  height: auto;
  margin-bottom: 10px;
}

.raise-header .subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 15px;
  color: #F4437B;
}

.raise-header .title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 6rem);
  letter-spacing: 0.3em;
  color: #4874ED;
  margin: 10px 0 20px;
}

.raise-header .description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 1000px;
  margin: 0 auto 60px;
  line-height: 1.5;
  color: #4874ED;
}

.raise-cards {
  display: grid;
  row-gap: 50px;
  column-gap: 10px;
  margin: 0 auto;
  justify-content: center;

}

.card1 {
  grid-column: 1 / 3;
  grid-row: 1;
}

.card2 {
  grid-column: 3 / 5;
  grid-row: 1;
}

.card3 {
  grid-column: 5 / 7;
  grid-row: 1;
}

.card4 {
  grid-column: 2 / 4;
  grid-row: 2;
}

.card5 {
  grid-column: 4 / 6;
  grid-row: 2;
}

.raise-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.raise-card img {
  width: 27vw;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;

}

.raise-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(34, 195, 163, 0.7);
  color: #fafafa;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
  border-radius: 0 0 15px 15px;
  max-height: 90px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  justify-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.raise-card .overlay h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}

.raise-card .overlay p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.raise-card:hover .overlay {
  max-height: 300px;
}

.raise-card:hover .overlay p {
  opacity: 1;
}

@media (max-width: 700px) {
  .raise-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;


  }

  .raise-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    width: 90vw;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);


  }

  .card1,
  .card2,
  .card3,
  .card4,
  .card5 {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .raise-card img {
    width: 90vw;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
  }
}
.enterprise-zone {
  position: relative;
  text-align: center;
  color: #fafafa;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ---------- Background Container ---------- */
.enterprise-bg {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ---------- Background Image ---------- */
.enterprise-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
}

/* ---------- Overlay ---------- */
.enterprise-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* ---------- Title & Subtitle ---------- */
.enterprise-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.enterprise-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ---------- Cards ---------- */
.enterprise-cards {
  display: flex;
  flex-direction: column; /* always stacked */
  align-items: center;
  gap: 40px;
  z-index: 3;
  
}

.enterprise-card {
  background: rgba(244, 67, 123, 0.75);
  border-radius: 15px;
  width: 660px;
  max-width: 90%;
  padding: 2rem 1.5rem;
  color: #fafafa;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

/* ---------- Offer Box ---------- */
.offer-box {
  background: #fafafa;
  border-radius: 15px;
  padding: 20px 25px;
  color: #f4437b;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: left;
}

.offer-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

/* ---------- Button ---------- */
.join-btn {
  background: #4874ed;
  color: #fafafa;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.join-btn:hover {
  background: #335dc4;
}
.enterprise-heading {
  font-family: "Inter", sans-serif;
  color: #fafafa;
  font-weight: 847;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;

}
/* ---------- DESKTOP (FULL SCROLL IMAGE) ---------- */
@media (min-width: 1081px) {
  .enterprise-bg {
    height: auto;
  }

  .enterprise-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain; /* show full image */
    object-position: center top;
  }

  .enterprise-zone {
    overflow: visible; /* allow scrolling */
  }

  .enterprise-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    padding-top: 28rem;
    padding-bottom: 20rem;
    
  }

  .enterprise-cards {
    flex-direction: column;
    align-items: center;
    gap: clamp(5rem, 8vh, 14rem); /* responsive gap */

  }
  .enterprise-card {
    width: 660px;
    max-width: 90%;
    padding: clamp(2rem, 3vw, 4rem) clamp(1.5rem, 2vw, 3rem);
  }
}

/* ---------- TABLET ---------- */
@media (max-width: 1160px) {
  .enterprise-image {
    object-fit: cover;
    object-position: center top;
    height: 100%;
  }

  .enterprise-overlay {
    padding: 5rem 1.5rem 3rem;
  }

  .enterprise-card {
    width: 90%;
    max-width: 400px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {
  .enterprise-bg {
    min-height: 120vh;
  }

  .enterprise-image {
    object-fit: cover;
    object-position: center top;
    height: 115%;
  }

  .enterprise-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin-top: 2rem;
  }

  .enterprise-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .enterprise-overlay {
    position: relative;
    padding: 3rem 1rem 2rem;
  }

  .enterprise-cards {
    gap: 1.5rem;
  }

  .enterprise-card {
    width: 95%;
    max-width: 340px;
    padding: 1.5rem 1rem;
  }
}


.sponsors-section {
  position: relative;
  width: 100%;
  background: #fafafa;
}

.sponsors-hero {
  position: relative;
  width: 100%;
  height: 475px;
  background: url('sources/media/images/sponsors.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors-content {
  text-align: center;
  position: relative;
  background-color: #fafafa;
  height: 300px;
}

.sponsors-logo {
  width: 35px;
  height: 33px;
  margin-bottom: 20px;
}

.support-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.017em;
  color: #F4437B;
}

.sponsors-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 6rem);
  line-height: 81px;
  letter-spacing: 0.3em;
  color: #4874ED;
  margin-bottom: 20px;
  margin-top: 3vh;
}

.sponsors-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.01em;
  color: #F4437B;
  max-width: 704px;
  margin: 0 auto;
}

/* Sponsors Container */
.sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 54px;
}

/* Sponsor Cards */
.sponsor-card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 26px 20px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bronze-header {
  background: #CE8946;
}

.silver-header {
  background: #C0C0C0;
}

.gold-header {
  background: #FFD700;
}

.platinum-header {
  background: #999B9B;
}

.plan-name {
  font-family: 'Inter', sans-serif;
  font-weight: 847;
  font-size: 24px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #fafafa;
  margin-bottom: 6px;
  
}


/* 
.price-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}

.price {
  font-family: 'Inter', sans-serif;
  font-weight: 847;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0.1em;
  color: #fafafa;
}

.price-detail {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  color: #fafafa;
  text-align: left;
  margin-top: 4px;
} */

.card-body {
  background: #fafafa;
  padding: 30px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fund-button {
  width: 150px;
  height: 48px;
  border-radius: 15px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 847;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #fafafa;
  cursor: pointer;
  margin: 0 auto 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fund-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bronze-button {
  background: #CE8946;
}

.silver-button {
  background: #C0C0C0;
}

.gold-button {
  background: #FFD700;
}

.platinum-button {
  background: #999B9B;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 17px;
  color: #666;
}

.benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.benefits-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #666;
  font-weight: bold;
}

.benefits-list li:last-child {
  margin-bottom: 0;
}

.reach-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #4874ED;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}



@media (max-width: 768px) {
  .sponsors-hero {
    height: 350px;
  }

  .sponsors-title {
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.2em;
  }

  .sponsors-subtitle {
    font-size: 16px;
    line-height: 22px;
    padding: 0 20px;
    color: #F4437B
  }

  .sponsors-container {
    padding: 40px 16px;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .sponsor-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .reach-text {
    font-size: 14px;
    line-height: 18px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .sponsors-hero {
    height: 300px;
  }

  .sponsors-title {
    font-size: 32px;
    line-height: 40px;
  }

  .sponsors-subtitle {
    font-size: 14px;
    line-height: 20px;
    color: #F4437B;
  }

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

  .sponsors-logo {
    width: 30px;
    height: 28px;
  }
}

.vision-2030 {
  position: relative;
  text-align: center;
  color: #fafafa;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.vision-2030-bg {
  position: relative;
  width: 100%;
  background: #22C3A3;
  padding: 100px 20px 60px 20px;
}

.vision-2030-overlay {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-2030-logo {
  width: clamp(160px, 8vw, 90px);
  height: auto;
  margin-bottom: 30px;
}

.vision-2030 .title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0.3em;
  font-size: clamp(2rem, 6vw, 5rem);
  margin: 10px 0;
  color: #fafafa;
}

.vision-2030 .subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 0.01em;
  color: #fafafa;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Cards layout */
.vision-2030-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  column-gap: 20px;
  row-gap: 20px;

}

.vision-2030-cards .card {
  flex: 1 1 25%;
  aspect-ratio: 533 / 533;
  padding: 60px 30px;
  margin: 0;
  border-radius: 20px;
  color: #fafafa;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.vision-2030-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.2);

}
.card.human {
  background: linear-gradient(to bottom, #fafafa 45%, #4874ED 45%);
  color: #4874ED;
}

.card.economic {
  background: linear-gradient(to bottom, #4874ED 45%, #fafafa 45%);
  color: #4874ED;
}

.card.social {
  background: linear-gradient(to bottom, #fafafa 45%, #4874ED 45%);
  color: #4874ED;
}

.card.human h4,
.card.social h4 {
  color: #4874ED;
}

.card.economic h4 {
  color: #fafafa;
}

.card.economic p {
  color: #4874ED;
}

.card.human p,
.card.social p {
  color: #fafafa;
}

.vision-2030-cards h4 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}

.vision-2030-cards p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  max-width: 350px;
}

/* Responsive behavior */
@media (max-width: 1080px) {
  .vision-2030-cards{
    transform: translate(30%, 0%);
    max-width: 60vw
  }
  .vision-2030-cards .card {
    flex: 1 1 100%;
    aspect-ratio: auto;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #fafafa 45%, #4874ED 45%);
    color: #4874ED;
    
  }
  .card.economic h4 {
    color: #4874ED;
  }
  
  .card.economic p {
    color: #FAFAFA;
  }
  .vision-2030-cards h4 {
    font-size: 1.5rem;

    
  }

  .vision-2030-cards p {
    font-size: 0.95rem;
  }
}

@media (max-width: 490px) {
  .vision-2030-cards{
    transform: translate(25%, 0%);


  }
  .vision-2030-cards .card {
    flex: 1 1 100%;
    aspect-ratio: auto;
    padding: 10px 20px;
    max-width: 60vw

  }

  .vision-2030-cards h4 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    text-align: center;
    font-weight: 900;
    justify-content: center;
    margin-bottom: 25px;

  }

  .vision-2030-cards p {
    font-size: clamp(0.8rem, 2vw, 0.7rem);
    text-align: center;
    justify-content: center;
    color: #4874ED
    
  }
}

/* ===== JOIN US SECTION ===== */
.join-us-section {
  text-align: center;
  padding: 80px 20px;
  background: #fafafa;
}


.join-us-bg {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding: 100px 20px 60px 20px;
}

.join-us-overlay {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #4874ED;
}

.join-us-logo {
  width: clamp(30px, 4vw, 35px);
  height: auto;
  margin-bottom: 10px;

}

.join-us .title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0.3em;
  font-size: clamp(2rem, 6vw, 6rem);
  margin: 10px 0 20px;
  color: #4874ED;
}

.join-us .subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 15px;
  color: #fafafa;
  margin-top: 10px;
}

.join-us-overlay h1 {
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}

.join-us-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* Card container */
.join-us-card {
  grid-column: span 2;
  /* 3 cards per row on desktop */
  background: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.join-us-card:hover {
  transform: translateY(-6px);
}

/* Image styling */
.join-us-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.join-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.join-us-content {
  background: #22C3A3;
  padding: 20px 25px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  flex: 1;
}

.join-us-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fafafa;
  text-align: center;

}

.join-us-content p {
  color: #fafafa;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.join-button {
  width: 150px;
  height: 48px;
  border-radius: 15px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 847;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #fafafa;
  cursor: pointer;
  margin: 0 auto 26px;
  background-color: #4874ED;
  transition: transform 0.2s, box-shadow 0.2s;
}

.join-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .join-us-card {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .join-us-card {
    grid-column: span 6;
  }

  .join-us-content {
    padding: 16px 18px;
  }

  .join-us-content h3 {
    font-size: 1.4rem;
  }

  .join-us-content p {
    font-size: 0.9rem;
  }
}

.contact-section {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding: 37px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 87px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left side: Title and Image */
.contact-intro {
  flex-shrink: 0;
  text-align: center;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.017em;
  color: #4874ED;
  margin-bottom: 20px;
  white-space: nowrap;
}

.contact-image {
  width: 189px;
  height: 142px;
  border-radius: 15px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}



.contact-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: #4874ED;
  opacity: 0.7;
  text-transform: uppercase;
}

.contact-value {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: #4874ED;
  word-break: break-word;
}
.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}



@media (max-width: 1024px) {
  .contact-container {
    padding: 0 40px;
    gap: 40px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-item {
    min-width: 100px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 30px 0;
  }

  .contact-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .contact-intro {
    width: 100%;
  }

  .contact-title {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-image {
    width: 160px;
    height: 120px;
  }

  .contact-info {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(72, 116, 237, 0.1);
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .contact-label {
    font-size: 9px;
  }

  .contact-value {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 24px;
    line-height: 32px;
  }

  .contact-image {
    width: 140px;
    height: 105px;
  }

  .contact-container {
    padding: 0 16px;
  }
}

/* FOOTER SECTION */
.site-footer {
  position: relative;
  width: 100%;
  background: #4874ED;
  padding: 49px 0 56px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

/* About SedraTech Section */
.footer-about {
  max-width: 320px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo {
  width: 59.82px;
  height: 56.22px;
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.017em;
  color: #FEFEFE;
  margin: 0;
}

.footer-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  max-width: 257px;
}

/* Footer Links Sections */
.footer-links {
  min-width: 180px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 14px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-list a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Footer Bottom - Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  max-width: 824px;
  margin: 0 auto;
}

.footer-copyright a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-copyright a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 60px;
    gap: 40px;
  }

  .footer-about {
    max-width: 280px;
  }

  .footer-links {
    min-width: 160px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 40px;
  }

  .footer-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-about {
    max-width: 100%;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-list li {
    margin-bottom: 12px;
  }

  .footer-bottom {
    padding-top: 24px;
  }

  .footer-copyright {
    font-size: 12px;
    line-height: 16px;
    padding: 0 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-brand-name {
    font-size: 28px;
    line-height: 36px;
  }

  .footer-logo {
    width: 50px;
    height: 47px;
  }

  .footer-description {
    font-size: 13px;
    line-height: 16px;
  }

  .footer-copyright {
    font-size: 11px;
    line-height: 15px;
  }
}













/* ===== CONSULTING SECTION ===== */
.consulting-section {
  background: #FAFAFA;
  padding: 80px 20px;
  text-align: center;
}

.consulting-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.consulting-header {
  margin-bottom: 60px;
}

.consulting-logo {
  width: 35px;
  height: 32px;
  margin-bottom: 20px;
  object-fit: contain;
}

.consulting-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.125rem);
  line-height: 1.2;
  letter-spacing: 0.3em;
  color: #4874ED;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.consulting-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #4874ED;
  max-width: 997px;
  margin: 0 auto;
}

/* Cards Grid - Same pattern as RAISE cards */
.consulting-grid {
  display: grid;
  row-gap: 50px;
  column-gap: 30px;
  margin: 0 auto;
  justify-content: center;
}

/* Individual Card */
.consulting-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  
}

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

/* Position cards in grid - First row: 3 cards, Second row: 2 cards centered */
.consulting-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.consulting-card:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.consulting-card:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 1;
}

.consulting-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.consulting-card:nth-child(5) {
  grid-column: 4 / 6;
  grid-row: 2;
}

/* Card Header */
.consulting-card-header {
  padding: 25px 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.consulting-card-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 847;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  
}

/* Card Body */
.consulting-card-body {
  background: #FAFAFA;
  padding: 25px 20px;
  flex: 1;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.consulting-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.consulting-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 12px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}

.consulting-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #666666;
  font-weight: bold;
  font-size: 1.2rem;
}

.consulting-list li:last-child {
  margin-bottom: 0;
}

/* Header Background Colors */
.bronze-bg {
  background: #CE8946;
}

.silver-bg {
  background: #C0C0C0;
}

.blue-bg {
  background: #4874ED;
}

.teal-bg {
  background: #22C3A3;
}

.gold-bg {
  background: #FFD700;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop - maintain grid layout */
@media (min-width: 992px) {
  .consulting-grid {
    column-gap: 30px;
  }
  
  .consulting-card {
    width: 100%;
    max-width: 280px;
  }
}

/* Tablet - 2 cards per row */
@media (max-width: 750px) {
  .consulting-section {
    padding: 60px 20px;
  }
  
  .consulting-header {
    margin-bottom: 50px;
  }
  
  .consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-content: center;
  }
  
      .consulting-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;

    
  }    .consulting-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;

    
  }    .consulting-card:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1;

    
  }
    .consulting-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;

    
  }
  /* Center the 5th card */
  .consulting-card:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
  }
  
  .consulting-card {
    max-width: 320px;
  }
  
  .consulting-title {
    letter-spacing: 0.2em;
  }
}

/* Mobile - 1 card per row */
@media (max-width: 749px) {
  .consulting-section {
    padding: 50px 16px;
  }
  
  .consulting-header {
    margin-bottom: 40px;
  }
  
  .consulting-logo {
    width: 30px;
    height: 28px;
    margin-bottom: 15px;
  }
  
  .consulting-title {
    font-size: 1.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
  }
  
  .consulting-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .consulting-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
  }
  
  /* Reset grid positioning for mobile */
  .consulting-card:nth-child(1),
  .consulting-card:nth-child(2),
  .consulting-card:nth-child(3),
  .consulting-card:nth-child(4),
  .consulting-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .consulting-card {
    max-width: 100%;
    width: 50%;
  }
  
  .consulting-card-header {
    padding: 20px 15px;
    min-height: 100px;
  }
  
  .consulting-card-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
  
  .consulting-card-body {
    padding: 20px 15px;
  }
  
  .consulting-list li {
    font-size: 0.85rem;
    padding-left: 18px;
    margin-bottom: 10px;
  }
}

/* Extra small mobile */
@media (max-width: 530px) {
  .consulting-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
  
  .consulting-subtitle {
    font-size: 0.875rem;
  }   
  
  .consulting-card-header h3 {
    font-size: 1rem;
  }
  
  .consulting-list li {
    font-size: 0.8rem;
  }
    .consulting-card {
    max-width: 100%;
    width: 88%;
  }
}