@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #0b1f3a;
  --secondary: #f7f9fc;
  --accent: #c9a227;
  --text: #1a1a1a;
  --white: #fff;
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius: 28px;
}

img {
  width: 100%;
  display: block;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--primary);
}

p,
li,
span,
.button-text {
  font-family: var(--font-body);
}

.nav-link .text {
  font-family: var(--secondary-font);
}

section {
  padding: 40px 0;
}

.hero {
  padding: 180px 0 140px;
}

.basic-intro {
  margin-bottom: 70px;
}

.basic-intro span {
  font-family: var(--secondary-font);
  line-height: 1.2;
}

/* ==========================================
                                       HERO
                                    ========================================== */
.hero-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================
                                       HERO LOGOS
                                    ========================================== */
.hero-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-branding img {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.branding-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================
                                       SECTION LOGO
                                    ========================================== */
.section-brand {
  text-align: center;
  margin-bottom: 20px;
}

.section-brand img {
  height: 55px;
  width: auto;
  margin: auto;
}

/* ==========================================
                                       SECTION HEADINGS
                                    ========================================== */
.basic-intro .title {
  margin-bottom: 20px;
}

.basic-intro .text-2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
}

.basic-intro .description {
  max-width: 820px;
  margin: auto;
}

.basic-intro .description p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #5b6475;
}

/* ==========================================
                                       HERO STATS
                                    ========================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.stat-box {
  border-radius: 24px;
  transition: 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-box h3 {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #f4dd8a 0%, #c9a227 45%, #9b7710 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box p {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

/* ==========================================
                                       TIMELINE CARDS
                                    ========================================== */
.timeline-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-card img {
  height: 300px;
  object-fit: cover;
}

.timeline-content {
  padding: 40px;
}

.year {
  background: #0b1f3a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.timeline-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 22px;
  color: var(--primary);
}

.timeline-card p {
  font-size: 1.05rem;
  color: #5e6777;
  line-height: 1.9;
  margin-bottom: 28px;
}

.timeline-content ul {
  margin: 0 0 40px;
  padding: 0;
}

.timeline-content li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  color: #374151;
}

.timeline-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.timeline-content .button {
  margin-top: auto;
  align-self: flex-start;
}

.timeline-content .button {
  margin-top: auto;
  align-self: flex-start;
}

/* ==========================================
                                       REPORT CARDS
                                    ========================================== */
.report-card {
  border-radius: var(--radius);
  padding: 45px;
}

.report-card h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.report-card p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5b6475;
}

/* ==========================================
                                       IMPACT SECTION
                                    ========================================== */
.impact-box {
  text-align: center;
  padding: 60px 30px;
  border-radius: var(--radius);
  transition: 0.35s ease;
}

.impact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(11, 31, 58, 0.12);
}

.impact-box h3 {
  font-family: var(--font-body);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f7df8f 0%, #c9a227 50%, #9b7710 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-box p {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5b6475;
}

/* ==========================================
                                       GALLERY
                                    ========================================== */
.gallery-card {
  border-radius: var(--radius);
}

.gallery-card img {
  border-radius: var(--radius);
}

.gallery-section .description p {
  max-width: 760px;
}

/* ==========================================
                                       SWIPER NAVIGATION
                                    ========================================== */
.gcns-prev,
.gcns-next,
.gallery-prev,
.gallery-next {
  width: 68px;
  height: 68px;
}

/* ==========================================
                                       RESPONSIVE
                                    ========================================== */
@media (max-width: 991px) {
  section {
    padding: 90px 0;
  }

  .hero-branding img {
    height: 60px;
  }

  .impact-box h3 {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 100px;
  }

  .hero-branding {
    gap: 18px;
  }

  .hero-branding img {
    height: 48px;
  }

  .branding-divider {
    height: 40px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .basic-intro .text-2 {
    font-size: 2rem;
  }

  .timeline-card h3,
  .report-card h3 {
    font-size: 1.6rem;
  }

  .impact-box h3 {
    font-size: 3rem;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .timeline-content,
  .report-card,
  .impact-box {
    padding: 30px;
  }
}

/* =========================
                                                                       HERO
                                                                    ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(52 56 62 / 72%), rgb(21 22 24 / 88%));
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  margin: auto;
  width: auto;
}

.rdf-wrap-4 {
  align-items: stretch;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.rdf-pic-1 {
  width: 6em;
}

.rdf-decor-1 {
  background-color: black;
  width: 0.1em;
  margin-left: 1.5em;
  margin-right: 1.5em;
}

.rdf-link-block-1 {
  display: flex;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 45px 0 70px;
  justify-content: center;
}

.hero-buttons .button {
  min-width: 220px;
}

.button-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* =========================
                                                                       CARDS (TIMELINE / REPORTS / IMPACT)
                                                                    ========================= */
.timeline-card,
.report-card,
.impact-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
}

.timeline-card {
  display: grid;
  grid-template-columns: 48% 52%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  min-height: 560px;
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(11, 31, 58, 0.15);
}

.timeline-image {
  position: relative;
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.timeline-card:hover img {
  transform: scale(1.08);
}

.timeline-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.25), transparent 45%);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.timeline-content ul {
  margin: 25px 0 30px;
}

.timeline-content li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.timeline-content li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

/* =========================
                                                                       LAYOUTS
                                                                    ========================= */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
                                                                       SWIPER
                                                                    ========================= */
.gcnsSwiper,
.gallerySwiper {
  position: relative;
  overflow: visible;
}

/* Buttons */
.gcns-prev,
.gcns-next,
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  color: var(--primary);
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Left */
.gcns-prev,
.gallery-prev {
  left: 0px;
}

/* Right */
.gcns-next,
.gallery-next {
  right: 0px;
}

/* Icons */
.gcns-prev i,
.gcns-next i,
.gallery-prev i,
.gallery-next i {
  font-size: 18px;
  transition: 0.3s ease;
}

/* Hover */
.gcns-prev:hover,
.gcns-next:hover,
.gallery-prev:hover,
.gallery-next:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.18);
}

/* Arrow movement */
.gcns-prev:hover i,
.gallery-prev:hover i {
  transform: translateX(-3px);
}

.gcns-next:hover i,
.gallery-next:hover i {
  transform: translateX(3px);
}

/* Active click */
.gcns-prev:active,
.gcns-next:active,
.gallery-prev:active,
.gallery-next:active {
  transform: translateY(-50%) scale(0.96);
}

/* Gradient Ring */
.gcns-prev::before,
.gcns-next::before,
.gallery-prev::before,
.gallery-next::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), rgba(201, 162, 39, 0.15));
  z-index: -1;
  opacity: 0;
  transition: 0.35s ease;
}

.gcns-prev:hover::before,
.gcns-next:hover::before,
.gallery-prev:hover::before,
.gallery-next:hover::before {
  opacity: 1;
}

/* Disabled */
.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================
                                                       MOBILE
                                                    ========================================== */
@media (max-width: 991px) {
  .gcns-prev,
  .gcns-next,
  .gallery-prev,
  .gallery-next {
    width: 56px;
    height: 56px;
  }

  .gcns-prev,
  .gallery-prev {
    left: 0px;
  }

  .gcns-next,
  .gallery-next {
    right: 0px;
  }
}

@media (max-width: 768px) {
  .gcns-prev,
  .gcns-next,
  .gallery-prev,
  .gallery-next {
    width: 48px;
    height: 48px;
  }

  .gcns-prev i,
  .gcns-next i,
  .gallery-prev i,
  .gallery-next i {
    font-size: 15px;
  }

  .gcns-prev,
  .gallery-prev {
    left: 0px;
  }

  .gcns-next,
  .gallery-next {
    right: 0px;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* =========================
                                                            GALLERY
                                                        ========================= */
.gallery-section {
  background: var(--secondary);
}

.section-counter {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  margin-bottom: 25px;
  line-height: 1;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* =========================
                                                                       RESPONSIVE
                                                                    ========================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .report-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 140px 0 100px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
    justify-content: center;
  }

  .stats,
  .impact-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .timeline-content,
  .report-card,
  .impact-box {
    padding: 30px;
  }

  .gallery-card img {
    height: 300px;
  }

  .section-counter {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .timeline-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .timeline-image {
    height: 350px;
  }

  .timeline-content {
    padding: 40px;
  }

  .timeline-card h3 {
    font-size: 2.4rem;
  }
}

.gcns-prev,
.gcns-next {
  width: 60px;
  height: 60px;
  top: -90px;
  transform: none;
  background: #fff;
}

.gcns-prev {
  right: 80px;
  left: auto;
}

.gcns-next {
  right: 0;
}

.swiper-pagination {
  margin-top: 45px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.3;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 42px;
  border-radius: 50px;
  background: var(--accent);
  opacity: 1;
}

.swiper-slide {
  opacity: 0.45;
  transform: scale(0.92);
  transition: 0.45s;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.gallerySwiper {
  overflow: visible;
  padding: 80px 0;
}

.gallerySwiper .swiper-wrapper {
  align-items: center;
}

.gallerySwiper .swiper-slide {
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  transform: scale(0.5);
  opacity: 0.35;
  z-index: 1;
}

.gallerySwiper .swiper-slide-prev,
.gallerySwiper .swiper-slide-next {
  transform: scale(0.75);
  opacity: 0.7;
  z-index: 5;
}

.gallerySwiper .swiper-slide-active {
  transform: scale(2);
  opacity: 1;
  z-index: 20;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
