/* Core Reset and Typography */
body,
h1,
h2,
h3,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #f2f6fc;
  color: #1c2340;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.main-content {
  padding: 40px 5vw 25px 5vw;
}

/* Sample content styles */
h1,
h2 {
  margin-bottom: 26px;
  font-weight: bold;
  color: #2563eb;
}

p {
  margin-bottom: 18px;
  max-width: 750px;
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 60vh;
  padding: 5vw;
  position: relative;
}

@media(min-width: 900px) {
  .hero {
    flex-direction: row;
    padding: 80px 10vw 100px 10vw;
  }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.98rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.12;
}

.hero-title .highlight {
  color: #2563eb;
}

@media(min-width:1200px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

.hero-desc {
  font-size: 1.18rem;
  margin-bottom: 32px;
  color: #64748b;
  line-height: 1.5;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background: #2563eb;
  color: #fff;
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.5;
  font-weight: 600;
  padding: 5vw;
  border-radius: 10px;
  box-shadow: 0 2px 12px #1e326d13;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  border: none;
  outline: none;
}

@media(min-width:900px) {
  .hero-btn {
    padding: 13px 32px;
  }
}

.hero-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 7px 36px #2563eb38;
  transform: translateY(-2px) scale(1.025);
}

.hero-btn svg {
  margin-left: 14px;
  width: 22px;
  height: 22px;
  transition: transform 0.22s;
}

.hero-btn:hover svg {
  transform: translateX(6px);
}

.hero-img-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 36px;
  z-index: 1;
}

@media(min-width:900px) {
  .hero-img-wrap {
    margin-top: 0;
  }
}

.hero-img {
  width: 100%;
  max-width: 96vw;
  height: 340px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 7px 54px #2563eb26;
  border: 2px solid #dbeafe;
}

/* Fade/blur circle */
.hero-bg-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 215px;
  height: 215px;
  background: radial-gradient(circle at center, #c7e0fc 60%, transparent 89%);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.67;
  z-index: 0;
  display: none;
}

@media(min-width:900px) {
  .hero-bg-circle {
    display: block;
  }
}

/* FEATURES */
.features-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5vw;
  padding: 5vw;
  background: #fff;
}

@media(min-width:900px) {
  .features-section {
    gap: 38px;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 10vw 60px 10vw;
  }
}

.feature-card {
  background: #f8fafc;
  border-radius: 17px;
  padding: 5vw;
  box-shadow: 0 2px 15px #2563eb0c;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.19s, box-shadow 0.18s;
  font-size: 1.13rem;
  line-height: 1.6;
}

@media(min-width:900px) {
  .feature-card {
    padding: 25px;
  }
}

.feature-card:hover {
  transform: scale(1.047);
  box-shadow: 0 10px 36px #2563eb17;
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px #2563eb0f;
  margin-bottom: 17px;
  position: relative;
}

.feature-title {
  font-size: 1.19rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.feature-desc {
  color: #64748b;
  font-size: 1.03rem;
}

/* STATS */
.stats-header {
  text-align: center;
  margin-bottom: 20px;
}

.stats-header h2 {
  font-size: 1.8em;
  font-weight: 600;
  color: #1a1a5e;
  margin-bottom: 10px;
}

.stats-header h1 {
  font-size: 2.1rem;
  font-weight: 800;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-block {
  text-align: center;
  max-width: 250px;
}

.circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: #e6e6e6; /* Use gray as background */
  overflow: hidden;
  border: none; /* Remove the border */
}

.circle-p {
  font-size: 28px;
  position: relative;
  z-index: 2; /* Ensure text is above the pseudo-elements */
  color: #1a1a5e; /* Text color */
  margin-bottom: 0;
}

.circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(currentColor 0%, transparent 0%);
  z-index: 0;
  transform: rotate(-90deg); /* Start from the top instead of right */
}

/* Add a pseudo-element for the white background */
.circle::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.circle.percent-79::before { 
  background: conic-gradient(#1a1a5e 0%, #1a1a5e 79%, transparent 79%); 
}
.circle.percent-45::before { 
  background: conic-gradient(#b197fc 0%, #b197fc 45%, transparent 45%); 
}
.circle.percent-67::before { 
  background: conic-gradient(#4f9cff 0%, #4f9cff 67%, transparent 67%); 
}
.circle.percent-75::before { 
  background: conic-gradient(#b6a3ff 0%, #b6a3ff 75%, transparent 75%); 
}

.stat-block > p {
  font-size: 1.13rem;
  line-height: 1.5;
}

.highlight {
  color: #4f9cff;
  font-weight: 600;
}

.highlight-strong {
  color: #1a1a5e;
  font-weight: bold;
}

/* ABOUT & PARTNERS */
.stats-section,
.about-section {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 5vw;
  background: linear-gradient(90deg, #f1f5fe 0%, #fff 100%);
}

@media(min-width:1200px) {
  .stats-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-section {
    flex-direction: row;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.about-content {
  flex: 1;
  min-width: 260px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 2.1rem;
  color: #1e40af;
  font-weight: bold;
  margin-bottom: 16px;
}

.about-text {
  font-size: 1.13rem;
  line-height: 1.6;
  color: #363e4e;
}

.about-partners {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
}

.partners-label {
  color: #64748b;
  font-weight: 600;
  font-size: 0.97em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 14px;
  justify-content: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #f1f5fa;
  box-shadow: 0 1px 7px #2563eb09;
  border-radius: 11px;
  width: 95px;
  height: 44px;
  transition: box-shadow 0.16s;
}

.partner-logo:hover {
  box-shadow: 0 5px 25px #2563eb14;
}

.partner-logo img {
  max-height: 32px;
  max-width: 77px;
  object-fit: contain;
}

/* CONTACT */
.contact-section {
  padding: 7vw 5vw;
  background: #fff;
  box-sizing: border-box;
}

@media(min-width:900px) {
  .contact-section {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.contact-card {
  max-width: 660px;
  margin: 0 auto;
  background: linear-gradient(90deg, #2563eb 60%, #1e293b 100%);
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 15px 44px #2563eb18;
  padding: 7vw 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(min-width:900px) {
  .contact-card {
    padding: 54px 40px 44px 40px;
  }
}

.contact-title {
  font-size: 2.18rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-desc {
  color: #c7e0fc;
  font-size: 1.17rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #194185;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 10px;
  border-radius: 9px;
  box-shadow: 0 2px 18px #17255419;
  transition: background 0.19s, color 0.17s;
}

@media(min-width:555px) {
  .contact-link {
    padding: 3vw;
  }

  .contact-link svg {
    margin-right: 12px;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
  }
}

@media(min-width:900px) {
  .contact-link {
    padding: 15px 28px;
  }
}

.contact-link:hover {
  background: #f1f5fa;
  color: #2563eb;
}

.contact-link svg {
  display: hidden;
}

/* FOOTER */
.footer {
  border-top: 1px solid #e8ecf5;
  background: linear-gradient(180deg, #fff 70%, #f4f7fc 100%);
  padding: 25px 5vw 15px 5vw;
  color: #64748b;
  font-size: 1.02rem;
  text-align: center;
  margin-top: 40px;
}

/* Simple fade-in animation on load */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInMove .7s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInMove {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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