@font-face {
  font-family:Arenski;
  src: url("/assets/fonts/Arenski-Regular.ttf") format("truetype");
}
html, body {
       overflow-x: hidden;
       width: 100%;
  }
.mission-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: #0e1744;
  color: white;
  font-family: Arial, sans-serif;
}

.mission-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-icon {
  font-size: 10px;
  margin-bottom: 20px;
}
.mission-icon img {
  width: 250px;
  height: auto;
  margin-left: 18%;
  filter: brightness(0) invert(1); 
}
.mission-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
}

.mission-title span {
  color: #ffea00;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-stats {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat {
  padding: 30px 20px;
}

.stat h3 {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
}

.stat p {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
}

/* Background colors */
.stat.yellow {
  background: #ffea00;
  color: #0e1744;
}

.stat.white {
  background: #ffffff;
  color: #0e1744;
}

.stat.blue {
  background: #0e1744;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .mission-section {
    grid-template-columns: 1fr;
  }

  .mission-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .mission-image {
    display: none;
  }
}
/* Mobile image fix */
@media (max-width: 900px) {
  .mission-image {
    padding: 10px;
    background: #0e1744; /* optional */
  }
}
/* //////////our vaues//////////// */
.values-section {
  padding:2px 0;
}

.values-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT CONTENT */
.values-left .subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 1px;
}

.values-left .main-title {
  font-size: 60px;
  font-weight: 700;
  margin: 6px 0 2px;
}

.values-left .desc {
  line-height: 1.7;
  font-size: 17px;
  color: #333;
  margin-top: 1px;
  margin-bottom: 5px;
}

.yellow-btn {
  display: inline-block;
  margin-top: 5px;
  background: #f5e81a;
  padding: 14px 32px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.values-left .bottom-img {
  width: 100%;
  margin-top: 12px;
  border-radius: 6px;
}

/* CENTER IMAGE */
.values-center img {
  width: 100%;
  border-radius: 6px;
}

/* RIGHT CONTENT */
.values-right ul {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
}

.values-right ul li {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  color: #111;
}

.values-right .small-img {
  width: 100%;
  border-radius: 6px;
  /* height: 420px; */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-container {
    grid-template-columns: 1fr;
  }

  .values-left .main-title {
    font-size: 42px;
  }
}
/* Hidden before scroll */
.animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

/* When visible */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }

/* TEXT ROLL ANIMATION */
.roll {
  opacity: 0;
  transform: translateY(30px) rotateX(40deg);
  transform-origin: top;
  transition: all 0.9s ease-out;
}

.roll.show {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
/* Text hidden before scroll */
.unique-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) skewY(8deg);
  filter: blur(6px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Unique reveal effect */
.unique-text.show {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
  filter: blur(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* our programs */
.stats-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
}

.stats-item {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark boxes */
.dark-box {
  background: #1c1c1c;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dark-box h2 {
  font-size: 50px;
  margin: 0;
  font-weight: 700;
}

.dark-box h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 5px 0 15px;
}

.dark-box p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

/* Blue Gradient Overlay */
.gradient-blue {
  position: relative;
}

.gradient-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,50,150,0.7));
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay-text h2 {
  font-size: 50px;
  margin: 0;
  font-weight: 700;
}

.overlay-text h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 5px 0 15px;
}

.overlay-text p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 350px;
}

/* Bottom Yellow Line */
/* .bottom-yellow { */
  /* border-bottom: 10px solid #f0d400; */
/* } */

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-item {
    height: 300px;
  }
}
.counter {
  transition: 0.3s ease;
}
/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10%;
  background: #fdf5e6;
  font-family: 'Poppins', sans-serif;
  gap: 40px;
  margin-top:150px;
  margin-bottom:20px;
}

.hero-content {
  max-width: 50%;
  margin-top:-50px;
}

.hero-tag {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2e2e72;
}

.arenski {
  /* font-family:great   */
  font-size: 2rem;
  color: #1f4ea0;
}

.hero-subtag {
  font-size: 2.6rem;
  color: #1f4ea0;
  margin-bottom: 15px;
}


.hero-title {
  font-size: 1.8rem;
  font-weight: 510;
  line-height: 1.2;
  color: #2e2e72;
}

.hero-desc {
  margin-top: 20px;
  font-size: 1.6rem;
  color: #555;
}

.hero-img-container {
  flex-shrink: 0;
}

.hero-img {
  width: 580px;
  max-width: 100%;
    /* margin-left:-200px ; */
}

/* ===== BOTTOM TO TOP ANIMATION ===== */
.animate-hero {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}
.animate-hero.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 32%;
  }
  .hero-content {
    max-width: 100%;
  }
}
/* ===============SECTION LAYOUT=================== */
.future-section {
  padding: 80px 0;
}
.future-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
/* IMAGE */
.future-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
/* HEADING */
.big-heading {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}
/* PARAGRAPH */
.future-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #333;
}
/* ============== UNIQUE TEXT ANIMATION================== */
.unique-text {
  opacity: 0;
  transform: translateY(40px) skewY(8deg);
  filter: blur(6px);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.unique-text.show {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
  filter: blur(0);
}
.delay-1 { transition-delay: 0.25s; }
.delay-2 { transition-delay: 0.5s; }

/* =========== IMAGE SCROLL ANIMATION====== */
.animate-img {
  opacity: 0;
  transform: translateY(60px) scale(1.05);
  transition: all 1.1s ease-out;
}
.animate-img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 992px) {
  .future-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .big-heading {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .big-heading {
    font-size: 32px;
  }
}
/* Fix image size */
.future-image img {
  width: 100%;
  height: auto;
  max-height: 500px;   /* << reduces big height */
  border-radius: 12px;
  object-fit: cover;
}
.future-container {
  align-items: center;
}

/* ======footer hover  ======   */
.widget-title {
  transition: color 0.2s ease;
}

.widget-title:hover {
  color:  #fccc42; 
}
.cta-info-wrap a {
  color: #ffffff;          
  transition: color 0.3s ease;
}

.cta-info-wrap a:hover {
  color: #fccc42 !important;  
}
.cta-info-item:hover i {
  color: #fccc42;
}

/* Default colors */
.social-block a span,
.social-block a i,
.social-block a {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* Hover color */
.social-block a:hover span,
.social-block a:hover i,
.social-block a:hover {
  color: #fccc42 !important;
}

/* Underline link color change */
.social-block a:hover {
  text-decoration-color: #fccc42 !important;
}



