/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 50vh;
  background: url("../images/global_banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.25));
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  animation: fadeIn 1.5s ease;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: white;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #0078ff;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 120, 255, 0.3);
}
.btn-primary:hover {
  background: #005fe0;
  transform: translateY(-3px);
}

.btn-secondary {
  background: #fff;
  color: #0078ff;
  border: 2px solid #0078ff;
}
.btn-secondary:hover {
  background: #0078ff;
  color: #fff;
}

/* ABOUT */
.about-section {
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  background: #f9fafc;
}

.about-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 350px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.about-text p {
  color: #555;
  margin-bottom: 20px;
}

.about-points li {
  list-style: none;
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
  color: #333;
  font-size: 16px;
}
.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0078ff;
  font-weight: 700;
}

.about-image {
  position: relative;
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

.glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 120, 255, 0.2), transparent 70%);
  filter: blur(25px);
  z-index: 1;
}

/* FEATURES */
.features-section {
  padding: 100px 8%;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fefefe;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 120, 255, 0.15);
}

.feature-card img {
  width: 80px;
  margin-bottom: 15px;
}

/* ALLOCATION */
.allocation-section {
  padding: 100px 8%;
  background: #f9fafc;
  text-align: center;
}

.allocation-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 50px;
}

.allocation-chart {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 250px;
}

.bar {
  width: 60px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0078ff, #00c6ff);
  position: relative;
  transition: all 0.3s ease;
}

.bar:hover {
  transform: scale(1.1);
}

.bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #444;
  font-size: 14px;
}

.allocation-info {
  max-width: 400px;
}

.allocation-info p {
  color: #555;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: #f1f4f9;
  text-align: center;
  padding: 25px;
  font-size: 14px;
  color: #555;
}

/* ANIMATIONS */
@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

.fade-in {
  animation: fadeIn 1s ease;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}
.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {font-size: 38px;}
  .about-section .container {flex-direction: column;}
  .about-image img {margin-top: 30px;}
  .allocation-wrapper {flex-direction: column;}
}
