/* ================================
ROOT VARIABLES
JANKI SOCIAL FOUNDATION
PREMIUM LIGHT NGO THEME
================================ */

:root {

  /* PRIMARY COLORS */

  --primary-color: #2563EB;
  --secondary-color: #0EA5E9;
  --accent-color: #22C55E;

  /* BACKGROUND COLORS */

  --body-bg: #F8FBFF;
  --white-color: #FFFFFF;
  --section-bg: #EEF6FF;
  --light-bg: #F1F7FF;

  /* TEXT COLORS */

  --heading-color: #0F172A;
  --text-color: #64748B;
  --text-light: #94A3B8;

  /* BORDER */

  --border-color: #DCE8F5;

  /* FOOTER */

  --footer-bg: #0F172A;
  --footer-text: #CBD5E1;

  /* GRADIENT */

  --primary-gradient: linear-gradient(135deg,
      #2563EB,
      #0EA5E9);

  --green-gradient: linear-gradient(135deg,
      #22C55E,
      #16A34A);

  /* SHADOWS */

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.12);

  /* BORDER RADIUS */

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-full: 100px;

  /* TRANSITION */

  --transition: all 0.4s ease;

  /* FONT */

  --font-family: 'Poppins', sans-serif;

  /* CONTAINER */

  --container-width: 1300px;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--dark);
  background: var(--body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 100px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  border: 0;
}

.btn-main {
  background: linear-gradient(135deg, var(--primary), #14b8a6);
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.28);
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(15, 118, 110, 0.34);
}

.btn-soft {
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
}

.btn-soft:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-premium {
  background: rgba(255, 255, 255, 0.75);
  color: var(--dark);
  border: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
}

.btn-outline-premium:hover {
  background: var(--dark);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--dark);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-glass:hover {
  background: #fff;
  color: var(--primary);
}

/* Topbar */
/* ================= TOP BAR START ================= */

.topbar {
  position: relative;
  z-index: 999;
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.22), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(14, 165, 233, 0.22), transparent 30%),
    var(--primary-gradient);
  color: var(--white-color);
  overflow: hidden;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: 0.38;
  pointer-events: none;
}

.topbar::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(2px);
  pointer-events: none;
}

.topbar .container {
  max-width: var(--container-width);
}

.topbar-inner {
  position: relative;
  z-index: 2;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-info {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

a.topbar-info:hover {
  color: var(--white-color);
  transform: translateY(-1px);
}

.topbar-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.topbar-icon i {
  font-size: 13px;
}

.topbar-text {
  position: relative;
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social a {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transition: var(--transition);
}

.topbar-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-gradient);
  opacity: 0;
  transition: var(--transition);
}

.topbar-social a i {
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.topbar-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.topbar-social a:hover::before {
  opacity: 1;
}

/* ================= TOP BAR RESPONSIVE ================= */

@media (max-width: 991px) {
  .topbar-inner {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .topbar-info {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .topbar {
    display: block;
  }

  .topbar-inner {
    padding: 9px 0;
  }

  .topbar-left {
    width: 100%;
    flex-direction: column;
    gap: 7px;
  }

  .topbar-info {
    justify-content: center;
    text-align: center;
    font-size: 11.5px;
  }

  .topbar-icon {
    width: 25px;
    height: 25px;
    min-width: 25px;
  }

  .topbar-right {
    width: 100%;
  }

  .topbar-text {
    display: none;
  }

  .topbar-social a {
    width: 28px;
    height: 28px;
  }
}

/* ================= TOP BAR END ================= */


/* ================= HEADER START ================= */

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(220, 232, 245, 0.85);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 20%, rgba(37, 99, 235, 0.10), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(34, 197, 94, 0.09), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.74));
  pointer-events: none;
  opacity: 1;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
}

.main-header .navbar {
  position: relative;
  z-index: 2;
  padding: 13px 0;
  transition: var(--transition);
}

.main-header.scrolled .navbar {
  padding: 8px 0;
}

.main-header .container {
  max-width: var(--container-width);
}

/* Logo */

.navbar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  inset: -8px -14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.10), transparent 35%),
    rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(220, 232, 245, 0.78);
  box-shadow: var(--shadow-sm);
  z-index: -1;
  opacity: 0;
  transform: scale(0.94);
  transition: var(--transition);
}

.navbar-brand::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  right: -20px;
  bottom: -12px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  filter: blur(7px);
  z-index: -2;
}

.navbar-brand:hover::before {
  opacity: 1;
  transform: scale(1);
}

.navbar-brand img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.main-header.scrolled .navbar-brand img {
  max-height: 58px;
}

/* Menu */

.navbar-nav {
  align-items: center;
  gap: 5px;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  position: relative;
  isolation: isolate;
  padding: 12px 14px !important;
  border-radius: var(--radius-full);
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  opacity: 0;
  transform: scale(0.84);
  transition: var(--transition);
  z-index: -1;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateX(-50%) scale(0);
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white-color);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

/* Header Buttons */

.header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 12px 21px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.header-actions .btn-soft {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-sm);
}

.header-actions .btn-soft:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.header-actions .btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.header-actions .btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.48),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.header-actions .btn-main:hover {
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.36);
}

.header-actions .btn-main:hover::before {
  left: 135%;
}

/* Toggler */

.navbar-toggler {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.navbar-toggler:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.navbar-toggler i {
  font-size: 29px;
  line-height: 1;
}

/* ================= HEADER RESPONSIVE ================= */

@media (max-width: 1199px) {
  .navbar-nav {
    gap: 2px;
  }

  .navbar-nav .nav-link {
    padding: 11px 9px !important;
    font-size: 13px;
  }

  .header-actions .btn {
    min-height: 43px;
    padding: 11px 15px;
    font-size: 13px;
  }

  .navbar-brand img {
    max-height: 62px;
  }
}

@media (max-width: 991px) {
  .main-header .navbar {
    padding: 10px 0;
  }

  .main-header.scrolled .navbar {
    padding: 8px 0;
  }

  .navbar-brand img {
    max-height: 58px;
  }

  .main-header.scrolled .navbar-brand img {
    max-height: 52px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.10), transparent 34%),
      radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.10), transparent 34%),
      rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(220, 232, 245, 0.95);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .navbar-nav {
    align-items: stretch;
    gap: 8px;
  }

  .navbar-nav .nav-link {
    padding: 15px 16px !important;
    border-radius: 18px;
    background: rgba(241, 247, 255, 0.78);
    border: 1px solid rgba(220, 232, 245, 0.76);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
  }

  .navbar-nav .nav-link::before {
    inset: 0;
    border-radius: 18px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--white-color);
    border-color: transparent;
    transform: translateX(4px);
  }

  .header-actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .header-actions .btn {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 575px) {
  .navbar-brand img {
    max-height: 50px;
  }

  .main-header.scrolled .navbar-brand img {
    max-height: 47px;
  }

  .navbar-brand::before {
    inset: -6px -10px;
    border-radius: 20px;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .navbar-toggler i {
    font-size: 25px;
  }

  .navbar-collapse {
    padding: 14px;
    border-radius: 24px;
  }

  .navbar-nav .nav-link {
    font-size: 13px;
    padding: 13px 14px !important;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }

  .header-actions .btn {
    min-height: 48px;
  }
}

@media (max-width: 390px) {
  .navbar-brand img {
    max-height: 44px;
  }

  .main-header.scrolled .navbar-brand img {
    max-height: 42px;
  }

  .navbar-toggler {
    width: 40px;
    height: 40px;
  }

  .navbar-toggler i {
    font-size: 23px;
  }
}

/* ================= HEADER END ================= */

/* ================= HERO SECTION START ================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 10px 0 92px;
  background:
    radial-gradient(circle at 7% 14%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(14, 165, 233, 0.16), transparent 34%),
    radial-gradient(circle at 72% 88%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--white-color) 0%, var(--body-bg) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -170px;
  width: 720px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-shape-1 {
  width: 240px;
  height: 240px;
  left: -90px;
  top: 110px;
  background: rgba(37, 99, 235, 0.12);
}

.hero-shape-2 {
  width: 340px;
  height: 340px;
  right: -140px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  animation-delay: 1.3s;
}

.hero-dot-pattern {
  position: absolute;
  width: 190px;
  height: 190px;
  right: 8%;
  top: 13%;
  background-image: radial-gradient(rgba(37, 99, 235, 0.22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.58;
  pointer-events: none;
  animation: heroDotMove 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-24px) translateX(10px);
  }
}

@keyframes heroDotMove {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(18px);
    opacity: 0.8;
  }
}

/* Hero Content */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 22px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.hero-badge i {
  font-size: 14px;
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size:40px;
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -2.2px;
}

.hero-content h1 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  max-width: 625px;
  margin-bottom: 32px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.85;
}

/* Hero Buttons */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.hero-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.26);
}

.hero-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.hero-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 21px 44px rgba(34, 197, 94, 0.36);
}

.hero-btn-main:hover::before {
  left: 130%;
}

.hero-btn-outline {
  color: var(--primary-color);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.75), transparent 30%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-btn-outline:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Impact Stats */

.hero-impact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-impact-item {
  position: relative;
  min-width: 145px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(220, 232, 245, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: var(--transition);
}

.hero-impact-item::before {
  content: "";
  position: absolute;
  inset: auto 16px 0 16px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.hero-impact-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.20);
}

.hero-impact-item:hover::before {
  transform: scaleX(1);
}

.hero-impact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.hero-impact-item span {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 750;
}

/* Hero Visual */

.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  padding-bottom: 28px;
}

/* Image Frame */

.hero-img-frame {
  position: relative;
  padding: 14px;
  border-radius: 42px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
  transition: var(--transition);
}

.hero-img-frame:hover {
  transform: rotate(0deg) translateY(-5px);
}

.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: 34px -16px -18px 34px;
  border-radius: 42px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

/* Slider */

.hero-image-slider {
  position: relative;
  width: 100%;
  height: 535px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--light-bg);
}

.hero-image-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 58%, rgba(15, 23, 42, 0.26)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.14), transparent);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 1.25s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Slider Dots */

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  padding: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-dots button.active {
  width: 28px;
  background: var(--green-gradient);
}

/* Floating Cards */

.hero-floating-card {
  position: absolute;
  z-index: 7;
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: cardFloat 4.5s ease-in-out infinite;
}

.hero-floating-card-1 {
  left: -22px;
  top: 74px;
}

.hero-floating-card-2 {
  right: -14px;
  bottom: 138px;
  animation-delay: 1.2s;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.hero-floating-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.hero-floating-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.24);
}

.hero-floating-card h5 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 900;
}

.hero-floating-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 650;
}

/* Trust Card */

.hero-trust-card {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.18), transparent 30%),
    var(--primary-gradient);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.28);
}

.hero-trust-card i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #BBF7D0;
  background: rgba(255, 255, 255, 0.14);
  font-size: 22px;
}

.hero-trust-card span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 1199px) {
  .hero-section {
    padding: 72px 0 88px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .hero-image-slider {
    height: 500px;
  }

  .hero-floating-card-1 {
    left: 6px;
  }

  .hero-floating-card-2 {
    right: 6px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 70px 0 82px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1,
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-impact-row {
    justify-content: center;
  }

  .hero-visual {
    margin: 18px auto 0;
    max-width: 650px;
  }

  .hero-img-frame {
    transform: rotate(0deg);
  }

  .hero-image-slider {
    height: 485px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 58px 0 64px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    letter-spacing: -1.2px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 11px;
    margin-bottom: 28px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-impact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-impact-item {
    min-width: auto;
    padding: 15px 10px;
    text-align: center;
  }

  .hero-impact-item strong {
    font-size: 23px;
  }

  .hero-impact-item span {
    font-size: 11px;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .hero-img-frame {
    padding: 10px;
    border-radius: 30px;
  }

  .hero-img-frame::before {
    inset: 25px -10px -10px 25px;
    border-radius: 30px;
  }

  .hero-image-slider {
    height: 390px;
    border-radius: 23px;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 12px;
    animation: none;
  }

  .hero-trust-card {
    position: static;
    margin-top: 12px;
  }

  .hero-dot-pattern {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 48px 0 58px;
  }

  .hero-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .hero-badge span {
    width: 27px;
    height: 27px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-impact-row {
    grid-template-columns: 1fr;
  }

  .hero-image-slider {
    height: 315px;
  }

  .hero-slider-dots {
    bottom: 16px;
  }

  .hero-trust-card {
    align-items: flex-start;
    padding: 16px;
    border-radius: 21px;
  }

  .hero-trust-card i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    font-size: 20px;
  }
}

/* ================= HERO SECTION END ================= */


/* ================= NGO INTRODUCTION SECTION START ================= */

.ngo-intro-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 7% 12%, rgba(37, 99, 235, 0.13), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(34, 197, 94, 0.13), transparent 32%),
    linear-gradient(180deg, var(--white-color) 0%, var(--body-bg) 100%);
  overflow: hidden;
}

.ngo-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  pointer-events: none;
}

.ngo-intro-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  width: 760px;
  height: 280px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.ngo-intro-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.intro-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: introFloat 7s ease-in-out infinite;
}

.intro-shape-1 {
  width: 270px;
  height: 270px;
  left: -125px;
  top: 85px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.intro-shape-2 {
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: 55px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.2s;
}

@keyframes introFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Image Area */

.intro-image-wrap {
  position: relative;
  max-width: 610px;
  padding-bottom: 30px;
}

.intro-main-image {
  position: relative;
  padding: 14px;
  border-radius: 42px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
}

.intro-main-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(37, 99, 235, 0.16);
}

.intro-main-image::before {
  content: "";
  position: absolute;
  inset: 32px -18px -18px 34px;
  border-radius: 42px;
  background: var(--primary-gradient);
  opacity: 0.13;
  z-index: -1;
}

.intro-main-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, transparent 56%, rgba(15, 23, 42, 0.20)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.10), transparent);
  pointer-events: none;
}

.intro-main-image img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  transition: 0.65s ease;
}

.intro-image-wrap:hover .intro-main-image img {
  transform: scale(1.055);
}

/* Floating Experience Card */

.intro-experience-card {
  position: absolute;
  left: -22px;
  top: 72px;
  z-index: 4;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: introCardFloat 4.5s ease-in-out infinite;
}

@keyframes introCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.intro-exp-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 35%),
    var(--green-gradient);
  font-size: 22px;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.24);
}

.intro-experience-card h4 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 900;
}

.intro-experience-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 700;
}

/* Mini Trust Card */

.intro-mini-card {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.20), transparent 30%),
    var(--primary-gradient);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.28);
}

.intro-mini-card i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #BBF7D0;
  background: rgba(255, 255, 255, 0.14);
  font-size: 22px;
}

.intro-mini-card span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

/* Content Area */

.intro-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.intro-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font: size 45px;;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.intro-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-content p {
  margin-bottom: 15px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Feature Grid */

.intro-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.intro-feature-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 245, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: var(--transition);
}

.intro-feature-item::before {
  content: "";
  position: absolute;
  inset: auto 16px 0 16px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.intro-feature-item::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  right: -45px;
  top: -45px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: var(--transition);
}

.intro-feature-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.22);
}

.intro-feature-item:hover::before {
  transform: scaleX(1);
}

.intro-feature-item:hover::after {
  transform: scale(1.15);
  background: rgba(34, 197, 94, 0.09);
}

.intro-feature-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.intro-feature-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.22);
}

.intro-feature-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), #38BDF8);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.22);
}

.intro-feature-item h4,
.intro-feature-item p {
  position: relative;
  z-index: 2;
}

.intro-feature-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 900;
}

.intro-feature-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
}

/* Buttons */

.intro-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.intro-actions .btn {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.intro-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.intro-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.intro-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.35);
}

.intro-btn-main:hover::before {
  left: 130%;
}

.intro-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.intro-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .intro-main-image img {
    height: 500px;
  }

  .intro-experience-card {
    left: 8px;
  }

  .intro-content h2 {
    font-size: clamp(36px, 4vw, 48px);
  }
}

@media (max-width: 991px) {
  .ngo-intro-section {
    padding: 85px 0 95px;
  }

  .intro-image-wrap {
    margin: 0 auto;
    max-width: 650px;
  }

  .intro-content {
    text-align: center;
  }

  .intro-content p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .ngo-intro-section {
    padding: 70px 0;
  }

  .intro-image-wrap {
    padding-bottom: 0;
  }

  .intro-main-image {
    padding: 10px;
    border-radius: 30px;
  }

  .intro-main-image::before {
    inset: 24px -10px -10px 24px;
    border-radius: 30px;
  }

  .intro-main-image::after {
    inset: 10px;
    border-radius: 23px;
  }

  .intro-main-image img {
    height: 390px;
    border-radius: 23px;
  }

  .intro-experience-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 12px;
    animation: none;
  }

  .intro-mini-card {
    position: static;
    margin-top: 12px;
  }

  .intro-content h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .intro-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .intro-feature-grid {
    grid-template-columns: 1fr;
  }

  .intro-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ngo-intro-section {
    padding: 58px 0;
  }

  .intro-main-image img {
    height: 315px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .intro-content h2 {
    font-size: 30px;
  }

  .intro-feature-item {
    padding: 15px;
  }

  .intro-actions {
    margin-top: 28px;
  }

  .intro-mini-card {
    align-items: flex-start;
    padding: 16px;
    border-radius: 21px;
  }

  .intro-mini-card i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    font-size: 20px;
  }
}

/* ================= NGO INTRODUCTION SECTION END ================= */


/* ================= MISSION VISION VALUES SECTION START ================= */

.mvv-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(37, 99, 235, 0.13), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(34, 197, 94, 0.13), transparent 32%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 100%);
  overflow: hidden;
}

.mvv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 80%, transparent 100%);
  pointer-events: none;
}

.mvv-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 760px;
  height: 280px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.mvv-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* BG Shapes */

.mvv-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: mvvFloat 7s ease-in-out infinite;
}

.mvv-shape-1 {
  width: 280px;
  height: 280px;
  left: -130px;
  top: 90px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.mvv-shape-2 {
  width: 370px;
  height: 370px;
  right: -175px;
  bottom: 75px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.3s;
}

@keyframes mvvFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Heading */

.mvv-section-head {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.mvv-section-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size:40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.mvv-section-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mvv-section-head p {
  max-width: 735px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* MVV Cards */

.mvv-card {
  position: relative;
  height: 100%;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.mvv-card::before {
  content: "";
  position: absolute;
  inset: auto 26px 0 26px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  z-index: 3;
}

.mvv-card::after {
  content: "";
  position: absolute;
  width: 175px;
  height: 175px;
  right: -74px;
  top: -74px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
  z-index: -1;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.22);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card:hover::after {
  background: rgba(34, 197, 94, 0.10);
  transform: scale(1.15);
}

/* Highlight Vision Card */

.mvv-card-highlight {
  color: var(--white-color);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.23), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(34, 197, 94, 0.24), transparent 35%),
    var(--primary-gradient);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.28);
}

.mvv-card-highlight::before {
  background: var(--green-gradient);
}

.mvv-card-highlight::after {
  background: rgba(255, 255, 255, 0.15);
}

.mvv-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.mvv-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  font-size: 29px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.mvv-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.mvv-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    linear-gradient(135deg, var(--secondary-color), #38BDF8);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.mvv-card-top > span {
  color: rgba(37, 99, 235, 0.13);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -1px;
}

.mvv-card-highlight .mvv-card-top > span {
  color: rgba(255, 255, 255, 0.20);
}

.mvv-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.mvv-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.mvv-card-highlight h3,
.mvv-card-highlight p {
  color: var(--white-color);
}

.mvv-card ul {
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mvv-card ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 750;
}

.mvv-card ul li:last-child {
  margin-bottom: 0;
}

.mvv-card ul li i {
  color: var(--accent-color);
}

.mvv-card-highlight ul li,
.mvv-card-highlight ul li i {
  color: var(--white-color);
}

/* Vision Box */

.mvv-vision-box {
  position: relative;
  z-index: 2;
  padding: 19px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mvv-vision-box i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white-color);
  background: var(--green-gradient);
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.24);
}

.mvv-vision-box strong,
.mvv-vision-box small {
  display: block;
}

.mvv-vision-box strong {
  margin-bottom: 4px;
  color: var(--white-color);
  font-size: 17px;
  font-weight: 900;
}

.mvv-vision-box small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

/* Mini Values */

.mvv-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.mvv-mini-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 245, 0.90);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: var(--transition);
}

.mvv-mini-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.mvv-mini-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: var(--transition);
}

.mvv-mini-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.20);
}

.mvv-mini-card:hover::before {
  transform: scaleX(1);
}

.mvv-mini-card:hover::after {
  transform: scale(1.15);
  background: rgba(34, 197, 94, 0.09);
}

.mvv-mini-icon {
  position: relative;
  z-index: 2;
  width: 49px;
  height: 49px;
  min-width: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}

.mvv-mini-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.20);
}

.mvv-mini-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), #38BDF8);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.20);
}

.mvv-mini-card h4,
.mvv-mini-card p {
  position: relative;
  z-index: 2;
}

.mvv-mini-card h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 900;
}

.mvv-mini-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .mvv-section {
    padding: 95px 0;
  }

  .mvv-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .mvv-section {
    padding: 85px 0;
  }

  .mvv-card {
    padding: 30px;
  }

  .mvv-section-head {
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  .mvv-section {
    padding: 70px 0;
  }

  .mvv-section-head {
    margin-bottom: 38px;
  }

  .mvv-section-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .mvv-section-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .mvv-card {
    padding: 26px;
    border-radius: 26px;
  }

  .mvv-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    font-size: 24px;
  }

  .mvv-card-top > span {
    font-size: 46px;
  }

  .mvv-card h3 {
    font-size: 23px;
  }

  .mvv-mini-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .mvv-mini-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .mvv-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .mvv-section-head h2 {
    font-size: 30px;
  }

  .mvv-card {
    padding: 22px;
  }

  .mvv-card-top {
    margin-bottom: 22px;
  }

  .mvv-card h3 {
    font-size: 22px;
  }

  .mvv-card p {
    font-size: 14px;
  }

  .mvv-mini-card {
    padding: 18px;
    border-radius: 22px;
  }

  .mvv-mini-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 15px;
    font-size: 18px;
  }
}

/* ================= MISSION VISION VALUES SECTION END ================= */


/* ================= PREMIUM FOCUS AREAS SECTION START ================= */

.jsf-focus-section {
  --jsf-primary: #2563eb;
  --jsf-sky: #0ea5e9;
  --jsf-green: #22c55e;
  --jsf-orange: #f59e0b;
  --jsf-dark: #0f172a;
  --jsf-text: #64748b;
  --jsf-white: #ffffff;
  --jsf-soft: #f8fbff;
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.13), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(34, 197, 94, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #f3fff8 100%);
}

.jsf-focus-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  pointer-events: none;
}

.jsf-focus-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  animation: jsfFloat 8s ease-in-out infinite;
}

.jsf-focus-orb.orb-1 {
  width: 330px;
  height: 330px;
  left: -160px;
  top: 130px;
  background: rgba(37, 99, 235, 0.13);
}

.jsf-focus-orb.orb-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  animation-delay: 1.4s;
}

@keyframes jsfFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

.jsf-focus-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.jsf-focus-head {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 45px;
  align-items: end;
  margin-bottom: 52px;
}

.jsf-section-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 18px 9px 9px;
  border-radius: 999px;
  color: var(--jsf-primary);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 900;
}

.jsf-section-badge span {
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--jsf-primary), var(--jsf-sky));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.jsf-focus-head h2 {
  margin: 0;
  color: var(--jsf-dark);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.jsf-focus-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--jsf-primary), var(--jsf-sky), var(--jsf-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jsf-focus-head p {
  margin: 0;
  color: var(--jsf-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Grid */

.jsf-focus-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(245px, auto);
  gap: 22px;
}

/* Base Card */

.jsf-focus-card {
  position: relative;
  grid-column: span 3;
  min-height: 245px;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.98), transparent 35%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.42s ease;
}

.jsf-focus-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 5px;
  z-index: 5;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--jsf-primary), var(--jsf-sky), var(--jsf-green));
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.42s ease;
}

.jsf-focus-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: 0.42s ease;
}

.jsf-focus-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 30px 75px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jsf-focus-card:hover::before {
  transform: scaleX(1);
}

.jsf-focus-card:hover::after {
  transform: scale(1.18);
  background: rgba(34, 197, 94, 0.12);
}

/* Special Layout Cards */

.jsf-card-main {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 520px;
  padding: 0;
}

.jsf-card-image-wide {
  grid-column: span 6;
  min-height: 300px;
  padding: 0;
}

.jsf-card-gradient,
.jsf-card-cta {
  color: #fff;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.26), transparent 35%),
    linear-gradient(135deg, #2563eb 0%, #0ea5e9 55%, #22c55e 125%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.25);
}

.jsf-card-soft-green {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.98), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(240, 253, 244, 0.9));
}

.jsf-card-soft-blue {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.98), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.92));
}

/* Image Cards */

.jsf-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.jsf-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.8s ease;
}

.jsf-focus-card:hover .jsf-card-img img {
  transform: scale(1.08);
}

.jsf-main-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.45) 42%, rgba(15, 23, 42, 0.90) 100%);
}

.jsf-main-overlay.green-overlay {
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(22, 163, 74, 0.62) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.65));
}

.jsf-main-content {
  position: relative;
  z-index: 4;
  min-height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jsf-main-content.compact {
  min-height: 300px;
}

/* Content */

.jsf-card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, var(--jsf-primary), var(--jsf-sky));
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
  transition: 0.42s ease;
}

.jsf-focus-card:hover .jsf-card-icon {
  transform: translateY(-4px) rotate(-4deg);
}

.jsf-card-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 16px 32px rgba(34, 197, 94, 0.24);
}

.jsf-card-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #0284c7, #38bdf8);
}

.jsf-card-icon.orange {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #f59e0b, #fb923c);
}

.jsf-card-icon.light {
  color: var(--jsf-primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.20);
}

.jsf-card-count {
  display: block;
  margin-bottom: 10px;
  color: rgba(37, 99, 235, 0.25);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 2px;
}

.jsf-card-main .jsf-card-count,
.jsf-card-image-wide .jsf-card-count,
.jsf-card-gradient .jsf-card-count,
.jsf-card-cta .jsf-card-count {
  color: rgba(255, 255, 255, 0.55);
}

.jsf-focus-card h3 {
  margin: 0 0 12px;
  color: var(--jsf-dark);
  font-size: 23px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.45px;
}

.jsf-focus-card p {
  margin: 0;
  color: var(--jsf-text);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.72;
}

.jsf-card-main h3,
.jsf-card-image-wide h3,
.jsf-card-gradient h3,
.jsf-card-cta h3,
.jsf-card-main p,
.jsf-card-image-wide p,
.jsf-card-gradient p,
.jsf-card-cta p {
  color: #fff;
}

.jsf-card-main h3 {
  max-width: 520px;
  font-size: clamp(30px, 3vw, 44px);
}

.jsf-card-main p {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.78;
}

.jsf-card-link {
  width: fit-content;
  min-height: 43px;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--jsf-primary);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: 0.35s ease;
}

.jsf-card-link i {
  transition: 0.35s ease;
}

.jsf-card-link:hover {
  gap: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--jsf-primary), var(--jsf-sky));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.jsf-card-link.light-link {
  color: var(--jsf-primary);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.25);
}

.jsf-card-link.light-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.jsf-cta-shine {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -90px;
  right: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .jsf-focus-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .jsf-focus-card {
    grid-column: span 3;
  }

  .jsf-card-main,
  .jsf-card-image-wide {
    grid-column: span 6;
  }
}

@media (max-width: 991px) {
  .jsf-focus-section {
    padding: 85px 0;
  }

  .jsf-focus-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .jsf-focus-head p {
    max-width: 720px;
  }

  .jsf-card-main {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .jsf-focus-section {
    padding: 68px 0;
  }

  .jsf-focus-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .jsf-focus-head h2 span {
    display: inline;
  }

  .jsf-focus-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .jsf-focus-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jsf-focus-card,
  .jsf-card-main,
  .jsf-card-image-wide {
    grid-column: span 1;
  }

  .jsf-focus-card {
    min-height: auto;
    padding: 24px;
    border-radius: 25px;
  }

  .jsf-card-main,
  .jsf-card-image-wide {
    padding: 0;
    min-height: 380px;
  }

  .jsf-main-content {
    padding: 26px;
  }

  .jsf-main-content.compact {
    min-height: 380px;
  }

  .jsf-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 19px;
    font-size: 22px;
  }

  .jsf-focus-card h3 {
    font-size: 21.5px;
  }

  .jsf-card-main h3 {
    font-size: 29px;
  }

  .jsf-card-link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .jsf-focus-section {
    padding: 56px 0;
  }

  .jsf-section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .jsf-section-badge span {
    width: 28px;
    height: 28px;
  }

  .jsf-focus-head h2 {
    font-size: 30px;
  }

  .jsf-focus-card {
    padding: 21px;
  }

  .jsf-card-main,
  .jsf-card-image-wide {
    padding: 0;
    min-height: 350px;
  }

  .jsf-main-content {
    padding: 22px;
  }

  .jsf-main-content.compact {
    min-height: 350px;
  }

  .jsf-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 20px;
  }

  .jsf-focus-card h3 {
    font-size: 20px;
  }

  .jsf-card-main h3 {
    font-size: 26px;
  }

  .jsf-focus-card p {
    font-size: 13.5px;
  }
}

/* ================= PREMIUM FOCUS AREAS SECTION END ================= */

/* ================= ACTIVE DONATION CAMPAIGN SECTION START ================= */

.donation-preview-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 9% 12%, rgba(37, 99, 235, 0.13), transparent 32%),
    radial-gradient(circle at 90% 84%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 100%);
  overflow: hidden;
}

.donation-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.donation-preview-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 780px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.donation-preview-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.donation-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: donationFloat 7s ease-in-out infinite;
}

.donation-shape-1 {
  width: 285px;
  height: 285px;
  left: -135px;
  top: 95px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.donation-shape-2 {
  width: 390px;
  height: 390px;
  right: -185px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.2s;
}

@keyframes donationFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Left Content */

.donation-preview-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.donation-badge span {
  background: var(--green-gradient);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.24);
}

.donation-preview-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size:45px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.donation-preview-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.donation-preview-content p {
  margin-bottom: 25px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Features */

.donation-feature-list {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.donation-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-sm);
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
  transition: var(--transition);
}

.donation-feature::before {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--green-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.donation-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 197, 94, 0.24);
}

.donation-feature:hover::before {
  transform: scaleX(1);
}

.donation-feature i {
  color: var(--accent-color);
  font-size: 17px;
}

/* Buttons */

.donation-preview-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.donation-preview-actions .btn {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.donation-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
}

.donation-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.donation-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 21px 44px rgba(34, 197, 94, 0.36);
}

.donation-btn-main:hover::before {
  left: 130%;
}

.donation-btn-soft {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-sm);
}

.donation-btn-soft:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Campaign Card */

.donation-campaign-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 0;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(34, 197, 94, 0.32)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.donation-campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.18);
}

.donation-campaign-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -115px;
  top: -125px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: -1;
}

.donation-campaign-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
  pointer-events: none;
  z-index: -1;
}

/* Image Area */

.campaign-image-area {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
}

.campaign-image-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.75s ease;
}

.donation-campaign-card:hover .campaign-image-area img {
  transform: scale(1.07);
}

.campaign-image-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.48)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent);
}

/* Badges */

.campaign-status-badge,
.campaign-category-badge {
  position: absolute;
  z-index: 3;
  left: 18px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-weight: 850;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.campaign-status-badge {
  top: 18px;
  gap: 8px;
  padding: 9px 14px;
  color: var(--white-color);
  background: rgba(15, 23, 42, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.campaign-status-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
}

.campaign-category-badge {
  bottom: 18px;
  padding: 10px 15px;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  font-size: 12px;
}

/* Campaign Content */

.campaign-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.campaign-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.campaign-small-title {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.campaign-card-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.8px;
}

.campaign-percent {
  min-width: 88px;
  height: 88px;
  border-radius: 27px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45), transparent 30%),
    var(--green-gradient);
  color: var(--white-color);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.28);
}

.campaign-percent strong,
.campaign-percent span {
  display: block;
  line-height: 1;
}

.campaign-percent strong {
  font-size: 25px;
  font-weight: 950;
}

.campaign-percent span {
  margin-top: -8px;
  font-size: 11px;
  font-weight: 750;
  opacity: 0.9;
}

.campaign-card-content > p {
  margin-bottom: 22px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

/* Amount Grid */

.campaign-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 24px;
}

.campaign-amount-box {
  padding: 16px 14px;
  border-radius: 20px;
  background: var(--light-bg);
  border: 1px solid rgba(220, 232, 245, 0.95);
  transition: var(--transition);
}

.campaign-amount-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: var(--white-color);
}

.campaign-amount-box span {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 11.5px;
  font-weight: 850;
}

.campaign-amount-box strong {
  display: block;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

/* Progress Bar */

.campaign-progress-wrap {
  margin-bottom: 24px;
}

.campaign-progress-info {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 850;
}

.campaign-progress-info strong {
  color: var(--primary-color);
}

.campaign-progress {
  position: relative;
  height: 14px;
  padding: 3px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.campaign-progress-bar {
  position: relative;
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--green-gradient);
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(34, 197, 94, 0.28);
}

.campaign-progress-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.28) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.28) 75%,
    transparent 75%,
    transparent
  );
  background-size: 18px 18px;
  animation: progressMove 1.2s linear infinite;
}

.campaign-progress-bar span {
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white-color);
  border: 4px solid var(--accent-color);
  transform: translate(50%, -50%);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.16);
}

@keyframes progressMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 36px 0;
  }
}

/* Meta Row */

.campaign-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 24px;
}

.campaign-meta-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.campaign-meta-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.campaign-meta-item i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 18px;
}

.campaign-meta-item strong,
.campaign-meta-item span {
  display: block;
}

.campaign-meta-item strong {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.campaign-meta-item span {
  margin-top: 3px;
  color: var(--text-color);
  font-size: 11px;
  font-weight: 700;
}

/* Footer */

.campaign-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}

.campaign-donor-stack {
  display: flex;
  align-items: center;
}

.campaign-donor-stack span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  border: 2px solid var(--white-color);
  font-size: 12px;
  font-weight: 950;
  box-shadow: var(--shadow-sm);
}

.campaign-donor-stack span:first-child {
  margin-left: 0;
}

.campaign-donor-stack span:nth-child(2) {
  background: var(--green-gradient);
}

.campaign-donor-stack span:nth-child(3) {
  background: linear-gradient(135deg, var(--secondary-color), #38BDF8);
}

.campaign-donor-stack span:nth-child(4) {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--border-color);
}

.campaign-card-footer p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 700;
}

.campaign-card-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}

.campaign-card-link:hover {
  gap: 13px;
  color: var(--accent-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .donation-preview-section {
    padding: 95px 0;
  }

  .donation-campaign-card {
    grid-template-columns: 1fr;
  }

  .campaign-image-area {
    min-height: 360px;
  }
}

@media (max-width: 991px) {
  .donation-preview-section {
    padding: 85px 0;
  }

  .donation-preview-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .donation-feature-list {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .donation-preview-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .donation-preview-section {
    padding: 70px 0;
  }

  .donation-preview-content h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .donation-preview-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .donation-preview-actions .btn {
    width: 100%;
  }

  .donation-campaign-card {
    padding: 10px;
    border-radius: 28px;
  }

  .campaign-image-area {
    min-height: 300px;
    border-radius: 22px;
  }

  .campaign-card-content {
    padding: 24px 10px 10px;
  }

  .campaign-card-head {
    flex-direction: column;
  }

  .campaign-percent {
    width: 82px;
    min-width: 82px;
    height: 82px;
  }

  .campaign-amount-grid,
  .campaign-meta-row {
    grid-template-columns: 1fr;
  }

  .campaign-progress-info {
    flex-direction: column;
    gap: 4px;
  }

  .campaign-card-footer {
    flex-wrap: wrap;
  }

  .campaign-card-link {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    padding: 13px 16px;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.09);
  }
}

@media (max-width: 480px) {
  .donation-preview-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .donation-preview-content h2 {
    font-size: 30px;
  }

  .donation-feature {
    align-items: flex-start;
    font-size: 13px;
  }

  .campaign-image-area {
    min-height: 260px;
  }

  .campaign-card-head h3 {
    font-size: 23px;
  }

  .campaign-category-badge {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 11px;
  }

  .campaign-status-badge {
    left: 12px;
    top: 12px;
  }

  .campaign-amount-box {
    padding: 14px;
  }
}

/* ================= ACTIVE DONATION CAMPAIGN SECTION END ================= */


/* ================= EVENTS PREVIEW SECTION START ================= */

.events-preview-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 9% 12%, rgba(37, 99, 235, 0.13), transparent 32%),
    radial-gradient(circle at 90% 82%, rgba(34, 197, 94, 0.13), transparent 32%),
    linear-gradient(180deg, var(--white-color) 0%, var(--body-bg) 100%);
  overflow: hidden;
}

.events-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.events-preview-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 780px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.events-preview-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* BG Shapes */

.events-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: eventsFloat 7s ease-in-out infinite;
}

.events-shape-1 {
  width: 285px;
  height: 285px;
  left: -135px;
  top: 95px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.events-shape-2 {
  width: 390px;
  height: 390px;
  right: -185px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.2s;
}

@keyframes eventsFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Heading */

.events-section-head {
  max-width: 870px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.events-section-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.events-section-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.events-section-head p {
  max-width: 750px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Layout */

.events-preview-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 24px;
  align-items: stretch;
}

/* Featured Event Card */

.featured-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(34, 197, 94, 0.32)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.featured-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.18);
}

.featured-event-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -115px;
  top: -125px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: -1;
}

.featured-event-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
  pointer-events: none;
  z-index: -1;
}

.featured-event-image {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
}

.featured-event-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.75s ease;
}

.featured-event-card:hover .featured-event-image img {
  transform: scale(1.07);
}

.featured-event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.50)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent);
}

/* Status + Date */

.event-status {
  position: absolute;
  z-index: 4;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(15, 23, 42, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.event-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
}

.event-date-badge {
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 27px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 32%),
    var(--primary-gradient);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.30);
}

.event-date-badge strong,
.event-date-badge span {
  display: block;
  line-height: 1;
}

.event-date-badge strong {
  font-size: 33px;
  font-weight: 950;
}

.event-date-badge span {
  margin-top: -12px;
  font-size: 13px;
  font-weight: 850;
}

/* Featured Content */

.featured-event-content {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.event-category {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.13);
  font-size: 12px;
  font-weight: 950;
}

.event-category i {
  color: var(--accent-color);
}

.featured-event-content h3 {
  margin-bottom: 16px;
  color: var(--heading-color);
  font-size: clamp(25px, 2.7vw, 38px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.9px;
}

.featured-event-content p {
  margin-bottom: 24px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

/* Event Info */

.event-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin-bottom: 28px;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 20px;
  background: var(--light-bg);
  border: 1px solid rgba(220, 232, 245, 0.95);
  transition: var(--transition);
}

.event-info-item:hover {
  transform: translateY(-4px);
  background: var(--white-color);
  box-shadow: var(--shadow-sm);
}

.event-info-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}

.event-info-item strong,
.event-info-item span {
  display: block;
}

.event-info-item strong {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 950;
}

.event-info-item span {
  margin-top: 3px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 700;
}

/* Buttons */

.featured-event-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.featured-event-actions .btn {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 23px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.event-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.event-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.event-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 21px 44px rgba(37, 99, 235, 0.36);
}

.event-btn-main:hover::before {
  left: 130%;
}

.event-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.event-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Side Events */

.events-side-list {
  display: grid;
  gap: 18px;
}

.side-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.side-event-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 3;
}

.side-event-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.22);
}

.side-event-card:hover::before {
  transform: scaleX(1);
}

.side-event-image {
  border-radius: 22px;
  overflow: hidden;
}

.side-event-image img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
  transition: 0.7s ease;
}

.side-event-card:hover .side-event-image img {
  transform: scale(1.08);
}

.side-event-content {
  padding: 15px 16px 15px 18px;
}

.side-event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.side-event-status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-size: 10.5px;
  font-weight: 950;
}

.side-event-status.upcoming {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.10);
}

.side-event-status.ongoing {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.11);
}

.side-event-status.completed {
  color: var(--secondary-color);
  background: rgba(14, 165, 233, 0.11);
}

.side-event-date {
  color: var(--text-color);
  font-size: 11px;
  font-weight: 850;
}

.side-event-content h4 {
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.28;
}

.side-event-content p {
  margin-bottom: 12px;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
}

.side-event-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-size: 12.5px;
  font-weight: 950;
  text-decoration: none;
  transition: var(--transition);
}

.side-event-content a:hover {
  gap: 12px;
  color: var(--accent-color);
}

/* Category Pills */

.event-category-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.event-category-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  color: var(--heading-color);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 850;
  transition: var(--transition);
}

.event-category-pills span i {
  color: var(--primary-color);
}

.event-category-pills span:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.event-category-pills span:hover i {
  color: var(--white-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .events-preview-section {
    padding: 95px 0;
  }

  .events-preview-layout {
    grid-template-columns: 1fr;
  }

  .events-side-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .side-event-card {
    grid-template-columns: 1fr;
  }

  .side-event-image img {
    min-height: 210px;
  }
}

@media (max-width: 991px) {
  .events-preview-section {
    padding: 85px 0;
  }

  .featured-event-card {
    grid-template-columns: 1fr;
  }

  .featured-event-image {
    min-height: 420px;
  }

  .events-side-list {
    grid-template-columns: 1fr;
  }

  .side-event-card {
    grid-template-columns: 190px 1fr;
  }

  .events-section-head {
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  .events-preview-section {
    padding: 70px 0;
  }

  .events-section-head {
    margin-bottom: 38px;
  }

  .events-section-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .events-section-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .featured-event-card {
    padding: 10px;
    border-radius: 28px;
  }

  .featured-event-image {
    min-height: 320px;
    border-radius: 22px;
  }

  .featured-event-content {
    padding: 24px 10px 10px;
  }

  .event-date-badge {
    width: 78px;
    height: 78px;
    border-radius: 23px;
  }

  .event-date-badge strong {
    font-size: 28px;
  }

  .featured-event-actions .btn {
    width: 100%;
  }

  .side-event-card {
    grid-template-columns: 1fr;
  }

  .side-event-image img {
    min-height: 230px;
  }

  .event-category-pills {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .event-category-pills span {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .events-preview-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .events-section-head h2 {
    font-size: 30px;
  }

  .featured-event-image {
    min-height: 280px;
  }

  .event-status {
    left: 12px;
    top: 12px;
    font-size: 11px;
  }

  .event-date-badge {
    left: 12px;
    bottom: 12px;
  }

  .featured-event-content h3 {
    font-size: 23px;
  }

  .event-info-item {
    padding: 13px;
  }

  .event-info-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
  }

  .side-event-content {
    padding: 15px 6px 6px;
  }

  .side-event-top {
    flex-wrap: wrap;
  }
}

/* ================= EVENTS PREVIEW SECTION END ================= */


/* ================= IMPACT NUMBERS SECTION START ================= */

.impact-numbers-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 100%);
  overflow: hidden;
}

.impact-numbers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 78%, transparent 100%);
  pointer-events: none;
}

.impact-numbers-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 780px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.impact-numbers-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* BG Shapes */

.impact-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: impactFloat 7s ease-in-out infinite;
}

.impact-shape-1 {
  width: 285px;
  height: 285px;
  left: -135px;
  top: 95px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.impact-shape-2 {
  width: 390px;
  height: 390px;
  right: -185px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.2s;
}

@keyframes impactFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Main Layout */

.impact-numbers-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: center;
}

/* Left Content */

.impact-left-content {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.impact-left-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 45px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.impact-left-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-left-content p {
  margin-bottom: 26px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Trust Box */

.impact-trust-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 21px;
  border-radius: 25px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    var(--primary-gradient);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.24);
  overflow: hidden;
  transition: var(--transition);
}

.impact-trust-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 48%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.8s ease;
}

.impact-trust-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.34);
}

.impact-trust-box:hover::before {
  left: 130%;
}

.impact-trust-box i {
  position: relative;
  z-index: 2;
  width: 49px;
  height: 49px;
  min-width: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: #BBF7D0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 24px;
}

.impact-trust-box div {
  position: relative;
  z-index: 2;
}

.impact-trust-box strong,
.impact-trust-box small {
  display: block;
}

.impact-trust-box strong {
  margin-bottom: 5px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 950;
}

.impact-trust-box small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.55;
}

/* Counter Grid */

.impact-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.impact-counter-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.impact-counter-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  z-index: 4;
}

.impact-counter-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -68px;
  right: -68px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
  z-index: -1;
}

.impact-counter-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.22);
}

.impact-counter-card:hover::before {
  transform: scaleX(1);
}

.impact-counter-card:hover::after {
  transform: scale(1.18);
  background: rgba(34, 197, 94, 0.10);
}

/* Featured Card */

.impact-counter-card.featured {
  color: var(--white-color);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(34, 197, 94, 0.24), transparent 35%),
    var(--primary-gradient);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.28);
}

.impact-counter-card.featured::before {
  background: var(--green-gradient);
}

.impact-counter-card.featured::after {
  background: rgba(255, 255, 255, 0.16);
}

/* Icon */

.impact-card-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  min-width: 66px;
  margin-bottom: 26px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.impact-card-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.impact-card-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    linear-gradient(135deg, var(--secondary-color), #38BDF8);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

/* Counter Value */

.impact-counter-value {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -1.5px;
}

.impact-counter-card.featured .impact-counter-value {
  color: var(--white-color);
}

.impact-counter-value em {
  font-style: normal;
  font-size: 29px;
  line-height: 1;
  color: var(--accent-color);
}

.impact-counter-card.featured .impact-counter-value em {
  color: #BBF7D0;
}

.impact-counter-card h4 {
  position: relative;
  z-index: 2;
  margin-bottom: 11px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 950;
}

.impact-counter-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.7;
}

.impact-counter-card.featured h4,
.impact-counter-card.featured p {
  color: var(--white-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .impact-numbers-section {
    padding: 95px 0;
  }

  .impact-numbers-wrapper {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .impact-left-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
  }

  .impact-trust-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 991px) {
  .impact-numbers-section {
    padding: 85px 0;
  }
}

@media (max-width: 767px) {
  .impact-numbers-section {
    padding: 70px 0;
  }

  .impact-left-content h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .impact-left-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .impact-counter-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .impact-counter-card {
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .impact-counter-value {
    font-size: 43px;
  }

  .impact-card-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .impact-numbers-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .impact-left-content h2 {
    font-size: 30px;
  }

  .impact-trust-box {
    padding: 17px;
    border-radius: 22px;
  }

  .impact-trust-box i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 21px;
  }

  .impact-counter-card {
    padding: 22px;
  }

  .impact-counter-value {
    font-size: 38px;
  }
}

/* ================= IMPACT NUMBERS SECTION END ================= */


/* ================= FOUNDER MESSAGE SECTION START ================= */

.founder-message-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--white-color) 0%, var(--body-bg) 100%);
  overflow: hidden;
}

.founder-message-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 80%, transparent 100%);
  pointer-events: none;
}

.founder-message-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 780px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.founder-message-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* BG Shapes */

.founder-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: founderFloat 7s ease-in-out infinite;
}

.founder-shape-1 {
  width: 285px;
  height: 285px;
  left: -135px;
  top: 100px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.founder-shape-2 {
  width: 390px;
  height: 390px;
  right: -185px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.2s;
}

@keyframes founderFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Main Card */

.founder-message-card {
  position: relative;
  border-radius: 42px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.founder-message-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.18);
}

.founder-message-card::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -125px;
  top: -135px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: -1;
}

.founder-message-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: 35%;
  bottom: -115px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
  z-index: -1;
}

/* Image Area */

.founder-image-area {
  position: relative;
  height: 100%;
  min-height: 650px;
  padding: 14px;
  overflow: hidden;
}

.founder-main-image {
  position: relative;
  height: 100%;
  min-height: 622px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--light-bg);
}

.founder-main-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.56)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent);
  pointer-events: none;
}

.founder-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.75s ease;
}

.founder-message-card:hover .founder-main-image img {
  transform: scale(1.07);
}

/* Floating Badge */

.founder-image-badge {
  position: absolute;
  z-index: 5;
  left: 34px;
  right: 34px;
  bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.20), transparent 30%),
    rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.23);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.30);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.founder-image-badge i {
  width: 49px;
  height: 49px;
  min-width: 49px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #BBF7D0;
  background: rgba(255, 255, 255, 0.15);
  font-size: 24px;
}

.founder-image-badge strong,
.founder-image-badge span {
  display: block;
}

.founder-image-badge strong {
  margin-bottom: 5px;
  color: var(--white-color);
  font-size: 15px;
  font-weight: 950;
}

.founder-image-badge span {
  color: rgba(255, 255, 255, 0.80);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.5;
}

/* Vertical Text */

.founder-vertical-text {
  position: absolute;
  z-index: 4;
  top: 36px;
  right: 34px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 16px 9px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.30);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Content Area */

.founder-content-area {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge */

.section-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.founder-content-area h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 45px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.founder-content-area h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-content-area p {
  margin-bottom: 15px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.85;
}

/* Founder Names */

.founder-name-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.founder-name-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-radius: 22px;
  background: var(--light-bg);
  border: 1px solid rgba(220, 232, 245, 0.95);
  overflow: hidden;
  transition: var(--transition);
}

.founder-name-card::before {
  content: "";
  position: absolute;
  inset: auto 16px 0 16px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.founder-name-card:hover {
  transform: translateY(-6px);
  background: var(--white-color);
  box-shadow: var(--shadow-sm);
}

.founder-name-card:hover::before {
  transform: scaleX(1);
}

.founder-name-icon {
  position: relative;
  z-index: 2;
  width: 49px;
  height: 49px;
  min-width: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.founder-name-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--green-gradient);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.24);
}

.founder-name-card h4,
.founder-name-card span {
  position: relative;
  z-index: 2;
}

.founder-name-card h4 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.founder-name-card span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 750;
}

/* Highlight Row */

.founder-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 18px;
}

.founder-highlight-item {
  position: relative;
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.founder-highlight-item::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  top: -48px;
  right: -48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: var(--transition);
}

.founder-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.22);
}

.founder-highlight-item:hover::after {
  background: rgba(34, 197, 94, 0.09);
  transform: scale(1.15);
}

.founder-highlight-item strong,
.founder-highlight-item span {
  position: relative;
  z-index: 2;
  display: block;
}

.founder-highlight-item strong {
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 950;
}

.founder-highlight-item span {
  color: var(--text-color);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
}

/* Buttons */

.founder-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.founder-actions .btn {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.founder-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.founder-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.founder-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 21px 44px rgba(37, 99, 235, 0.36);
}

.founder-btn-main:hover::before {
  left: 130%;
}

.founder-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.founder-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .founder-message-section {
    padding: 95px 0;
  }

  .founder-content-area {
    padding: 44px;
  }

  .founder-main-image,
  .founder-image-area {
    min-height: 620px;
  }
}

@media (max-width: 991px) {
  .founder-message-section {
    padding: 85px 0;
  }

  .founder-image-area {
    min-height: auto;
  }

  .founder-main-image {
    min-height: 520px;
  }

  .founder-content-area {
    padding: 42px 30px 46px;
    text-align: center;
    align-items: center;
  }

  .founder-content-area p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .founder-message-section {
    padding: 70px 0;
  }

  .founder-message-card {
    border-radius: 28px;
  }

  .founder-image-area {
    padding: 10px;
  }

  .founder-main-image {
    min-height: 390px;
    border-radius: 22px;
  }

  .founder-image-badge {
    position: static;
    margin-top: 12px;
    color: var(--heading-color);
    background: var(--light-bg);
    border: 1px solid rgba(220, 232, 245, 0.95);
    box-shadow: var(--shadow-sm);
  }

  .founder-image-badge strong {
    color: var(--heading-color);
  }

  .founder-image-badge span {
    color: var(--text-color);
  }

  .founder-image-badge i {
    color: var(--white-color);
    background: var(--green-gradient);
  }

  .founder-vertical-text {
    top: 24px;
    right: 24px;
  }

  .founder-content-area {
    padding: 28px 18px 28px;
  }

  .founder-content-area h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .founder-content-area p {
    font-size: 15px;
    line-height: 1.75;
  }

  .founder-name-grid,
  .founder-highlight-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .founder-name-card,
  .founder-highlight-item {
    text-align: left;
  }

  .founder-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .founder-message-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .founder-main-image {
    min-height: 315px;
  }

  .founder-vertical-text {
    display: none;
  }

  .founder-image-badge {
    align-items: flex-start;
    padding: 15px;
    border-radius: 20px;
  }

  .founder-image-badge i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 21px;
  }

  .founder-content-area h2 {
    font-size: 30px;
  }

  .founder-name-card {
    padding: 16px;
  }

  .founder-highlight-item {
    padding: 15px;
  }
}

/* ================= FOUNDER MESSAGE SECTION END ================= */


/* ================= PREMIUM GALLERY PREVIEW SECTION START ================= */

.gallery-preview-section {
  --gallery-primary: var(--primary-color, #2563eb);
  --gallery-secondary: var(--secondary-color, #0ea5e9);
  --gallery-accent: var(--accent-color, #22c55e);
  --gallery-dark: var(--heading-color, #0f172a);
  --gallery-text: var(--text-color, #64748b);
  --gallery-white: var(--white-color, #ffffff);
  --gallery-radius: 30px;
  --gallery-radius-lg: 38px;
  --gallery-transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);

  position: relative;
  padding: 105px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 92% 15%, rgba(34, 197, 94, 0.13), transparent 32%),
    radial-gradient(circle at 82% 88%, rgba(14, 165, 233, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f4fff8 100%);
}

.gallery-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.gallery-preview-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -210px;
  width: 920px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.gallery-preview-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width, 1320px);
}

/* Background Shapes */

.gallery-bg-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
  animation: galleryFloat 8s ease-in-out infinite;
}

.gallery-shape-1 {
  width: 300px;
  height: 300px;
  left: -150px;
  top: 110px;
  background: rgba(37, 99, 235, 0.14);
}

.gallery-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 90px;
  background: rgba(34, 197, 94, 0.14);
  animation-delay: 1.2s;
}

.gallery-shape-3 {
  width: 160px;
  height: 160px;
  left: 18%;
  bottom: 12%;
  background: rgba(14, 165, 233, 0.13);
  animation-delay: 2s;
}

@keyframes galleryFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-24px) scale(1.04);
  }
}

/* Section Heading */

.gallery-section-head {
  max-width: 890px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 9px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--gallery-primary);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.section-badge span {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, var(--gallery-primary), var(--gallery-secondary));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.gallery-section-head h2 {
  margin: 0 0 18px;
  color: var(--gallery-dark);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -1.7px;
}

.gallery-section-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--gallery-primary), var(--gallery-secondary), var(--gallery-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-section-head p {
  max-width: 770px;
  margin: 0 auto;
  color: var(--gallery-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
}

/* Filter Pills */

.gallery-filter-pills {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 44px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-filter-pills button {
  min-height: 42px;
  padding: 10px 17px;
  border: 0;
  border-radius: 999px;
  color: var(--gallery-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--gallery-transition);
}

.gallery-filter-pills button:hover,
.gallery-filter-pills button.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gallery-primary), var(--gallery-secondary));
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.22);
  transform: translateY(-2px);
}

/* Gallery Grid */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 22px;
}

.gallery-preview-item {
  position: relative;
  border-radius: var(--gallery-radius);
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.94);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: var(--gallery-transition);
}

.gallery-preview-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--gallery-radius-lg);
}

.gallery-preview-item.gallery-wide {
  grid-column: span 2;
}

.gallery-preview-item.gallery-tall {
  grid-row: span 2;
}

.gallery-preview-item::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 5px;
  z-index: 8;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gallery-accent), var(--gallery-secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--gallery-transition);
}

.gallery-preview-item:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow:
    0 30px 78px rgba(37, 99, 235, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.gallery-preview-item:hover::before {
  transform: scaleX(1);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.85s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.1);
}

/* Overlay */

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.40) 42%, rgba(15, 23, 42, 0.90) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.36), transparent 65%);
}

.gallery-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.24), transparent 45%),
    radial-gradient(circle at 80% 18%, rgba(14, 165, 233, 0.22), transparent 30%);
  opacity: 0;
  transition: var(--gallery-transition);
  pointer-events: none;
}

.gallery-preview-item:hover .gallery-overlay::before {
  opacity: 1;
}

/* Tag */

.gallery-tag {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1;
}

.gallery-tag i {
  color: #bbf7d0;
}

/* Content */

.gallery-content {
  position: relative;
  z-index: 4;
  max-width: 470px;
  padding-right: 62px;
}

.gallery-content span {
  display: inline-block;
  margin-bottom: 8px;
  color: #bbf7d0;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.gallery-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.45px;
}

.gallery-preview-item:not(.gallery-large) .gallery-content h3 {
  font-size: 18px;
}

.gallery-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

/* View Button */

.gallery-view-btn {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gallery-primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.25);
  text-decoration: none;
  transition: var(--gallery-transition);
}

.gallery-view-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  transform: rotate(12deg) scale(1.08);
}

.gallery-large .gallery-view-btn {
  width: 58px;
  height: 58px;
  border-radius: 21px;
}

/* Bottom CTA */

.gallery-bottom-cta {
  position: relative;
  margin-top: 44px;
  padding: 30px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(34, 197, 94, 0.30), transparent 34%),
    linear-gradient(135deg, #2563eb 0%, #0ea5e9 58%, #22c55e 125%);
  box-shadow: 0 24px 62px rgba(37, 99, 235, 0.27);
}

.gallery-bottom-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-22deg);
  transition: 0.9s ease;
}

.gallery-bottom-cta:hover::before {
  left: 130%;
}

.gallery-cta-icon,
.gallery-cta-text,
.gallery-btn-main {
  position: relative;
  z-index: 2;
}

.gallery-cta-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gallery-primary);
  background: #ffffff;
  font-size: 25px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
}

.gallery-bottom-cta h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.45px;
}

.gallery-bottom-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.gallery-btn-main {
  min-height: 53px;
  padding: 15px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--gallery-primary);
  background: #ffffff;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--gallery-transition);
}

.gallery-btn-main:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .gallery-preview-section {
    padding: 92px 0;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-preview-item.gallery-large {
    grid-column: span 2;
  }

  .gallery-preview-item.gallery-wide {
    grid-column: span 2;
  }

  .gallery-preview-item.gallery-tall {
    grid-row: span 1;
  }
}

@media (max-width: 991px) {
  .gallery-preview-section {
    padding: 82px 0;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 245px;
    gap: 20px;
  }

  .gallery-preview-item.gallery-large,
  .gallery-preview-item.gallery-wide {
    grid-column: span 2;
  }

  .gallery-bottom-cta {
    grid-template-columns: auto 1fr;
  }

  .gallery-btn-main {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .gallery-preview-section {
    padding: 68px 0;
  }

  .gallery-section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .gallery-section-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .gallery-section-head h2 span {
    display: inline;
  }

  .gallery-section-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .gallery-filter-pills {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .gallery-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter-pills button {
    flex: 0 0 auto;
    min-height: 39px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    gap: 18px;
  }

  .gallery-preview-item,
  .gallery-preview-item.gallery-large,
  .gallery-preview-item.gallery-wide,
  .gallery-preview-item.gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 25px;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-content {
    padding-right: 54px;
  }

  .gallery-content h3,
  .gallery-preview-item:not(.gallery-large) .gallery-content h3 {
    font-size: 20px;
  }

  .gallery-bottom-cta {
    margin-top: 30px;
    padding: 24px;
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .gallery-cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    font-size: 22px;
  }

  .gallery-bottom-cta h3 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .gallery-preview-section {
    padding: 56px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 28px;
    height: 28px;
  }

  .gallery-section-head h2 {
    font-size: 30px;
  }

  .gallery-preview-grid {
    grid-auto-rows: 250px;
  }

  .gallery-overlay {
    padding: 18px;
  }

  .gallery-view-btn {
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 18px;
    border-radius: 15px;
  }

  .gallery-tag {
    font-size: 10.5px;
    padding: 7px 11px;
  }

  .gallery-content {
    padding-right: 48px;
  }

  .gallery-content span {
    font-size: 10px;
  }

  .gallery-content h3,
  .gallery-preview-item:not(.gallery-large) .gallery-content h3 {
    font-size: 18.5px;
  }

  .gallery-content p {
    font-size: 12.5px;
  }

  .gallery-bottom-cta {
    padding: 22px;
  }
}




/* ================= PREMIUM GALLERY PREVIEW SECTION END ================= */


/* ================= EVENT GALLERY DETAIL START ================= */

.gallery-detail-section {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 197, 94, 0.10), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(14, 165, 233, 0.10), transparent 34%),
    #ffffff;
}

.gallery-detail-hero {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 42px;
  align-items: center;
  margin-bottom: 70px;
}

.gallery-detail-content h1 {
  margin: 18px 0 18px;
  color: #0f172a;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.gallery-detail-content p {
  max-width: 720px;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.gallery-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gallery-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.gallery-detail-meta i {
  color: var(--primary);
}

.gallery-detail-cover {
  height: 430px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.gallery-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-detail-block {
  margin-top: 55px;
}

.gallery-detail-head {
  margin-bottom: 24px;
}

.gallery-detail-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-detail-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-photo-item {
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  background: #f1f5f9;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.gallery-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery-photo-item:hover img {
  transform: scale(1.06);
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.gallery-video-card {
  height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}

.gallery-video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* admin image preview */
.gallery-admin-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.gallery-admin-preview-item {
  position: relative;
  height: 95px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.gallery-admin-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-admin-preview-item button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 10px;
  background: #dc2626;
  color: #fff;
  cursor: pointer;
}

/* responsive */
@media (max-width: 1199px) {
  .gallery-detail-hero {
    grid-template-columns: 1fr;
  }

  .gallery-detail-cover {
    height: 390px;
  }
}

@media (max-width: 767px) {
  .gallery-detail-section {
    padding: 115px 0 60px;
  }

  .gallery-detail-cover {
    height: 300px;
    border-radius: 24px;
  }

  .gallery-photo-grid,
  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-item,
  .gallery-video-card {
    height: 240px;
  }
}

/* ================= EVENT GALLERY DETAIL END ================= */



/* ================= ACTION CTA SECTION START ================= */

.action-cta-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--white-color) 0%, var(--body-bg) 100%);
  overflow: hidden;
}

.action-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.action-cta-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 780px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.action-cta-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.action-cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: actionCtaFloat 7s ease-in-out infinite;
}

.action-cta-shape-1 {
  width: 285px;
  height: 285px;
  left: -135px;
  top: 95px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(5px);
}

.action-cta-shape-2 {
  width: 390px;
  height: 390px;
  right: -185px;
  bottom: 75px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(6px);
  animation-delay: 1.2s;
}

@keyframes actionCtaFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Heading */

.action-cta-head {
  max-width: 870px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.section-badge i {
  font-size: 14px;
}

.action-cta-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.action-cta-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.action-cta-head p {
  max-width: 750px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* CTA Grid */

.action-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.action-cta-card {
  position: relative;
  min-height: 335px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.action-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  z-index: 4;
}

.action-cta-card::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  top: -72px;
  right: -72px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
  z-index: -1;
}

.action-cta-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.22);
}

.action-cta-card:hover::before {
  transform: scaleX(1);
}

.action-cta-card:hover::after {
  transform: scale(1.18);
  background: rgba(34, 197, 94, 0.10);
}

/* Featured Donate Card */

.action-cta-featured {
  color: var(--white-color);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(34, 197, 94, 0.25), transparent 35%),
    var(--primary-gradient);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.28);
}

.action-cta-featured::before {
  background: var(--green-gradient);
}

.action-cta-featured::after {
  background: rgba(255, 255, 255, 0.16);
}

/* Icon */

.action-cta-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  min-width: 68px;
  margin-bottom: 28px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  font-size: 29px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.action-cta-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.action-cta-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    linear-gradient(135deg, var(--secondary-color), #38BDF8);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.action-cta-icon.white {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.action-cta-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(37, 99, 235, 0.12);
  font-size: 60px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -1px;
}

.action-cta-featured .action-cta-number {
  color: rgba(255, 255, 255, 0.20);
}

/* Content */

.action-cta-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: var(--heading-color);
  font-size: 23px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.action-cta-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--text-color);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.75;
}

.action-cta-featured h3,
.action-cta-featured p {
  color: var(--white-color);
}

/* CTA Link */

.action-cta-link {
  position: relative;
  z-index: 2;
  min-height: 47px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.13);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition: var(--transition);
}

.action-cta-link:hover {
  gap: 13px;
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.action-cta-featured .action-cta-link {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: rgba(255, 255, 255, 0.25);
}

.action-cta-featured .action-cta-link:hover {
  color: var(--white-color);
  background: var(--green-gradient);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .action-cta-section {
    padding: 95px 0;
  }

  .action-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-cta-card {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .action-cta-section {
    padding: 85px 0;
  }

  .action-cta-head {
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  .action-cta-section {
    padding: 70px 0;
  }

  .action-cta-head {
    margin-bottom: 38px;
  }

  .action-cta-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .action-cta-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .action-cta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .action-cta-card {
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .action-cta-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .action-cta-number {
    top: 26px;
    right: 26px;
    font-size: 46px;
  }

  .action-cta-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .action-cta-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .action-cta-head h2 {
    font-size: 30px;
  }

  .action-cta-card {
    padding: 22px;
  }

  .action-cta-card h3 {
    font-size: 21px;
  }

  .action-cta-card p {
    font-size: 13.5px;
  }
}

/* ================= ACTION CTA SECTION END ================= */


/* ================= FOOTER START ================= */

.footer {
  position: relative;
  padding: 50px 0 28px;
  color: var(--footer-text);
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.24), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(34, 197, 94, 0.18), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.14), transparent 36%),
    linear-gradient(180deg, #111827 0%, var(--footer-bg) 100%);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.34;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: -230px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.16);
  filter: blur(6px);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

.footer .row {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.06), transparent 32%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(203, 213, 225, 0.15);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.footer .row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), transparent 45%, rgba(34, 197, 94, 0.08));
  pointer-events: none;
}

.footer .row > * {
  position: relative;
  z-index: 2;
}

/* Footer Brand */

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.footer-brand img {
  max-width: 190px;
  height: auto;
  display: block;
  padding: 12px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 232, 245, 0.88);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.60);
  transition: var(--transition);
}

.footer-brand:hover img {
  transform: translateY(-4px);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.70);
}

.footer p {
  margin: 0;
  color: var(--footer-text);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.82;
}

.footer h5 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: var(--white-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.footer h5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--green-gradient);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
}

/* Footer Links */

.footer a {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--footer-text);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: var(--transition);
}

.footer a::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: var(--accent-color);
  font-size: 11px;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white-color);
  transform: translateX(7px);
}

.footer a:hover::before {
  color: var(--secondary-color);
}

/* Contact */

.footer .col-lg-3 p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer .col-lg-3 p i {
  width: 39px;
  height: 39px;
  min-width: 39px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.20), transparent 35%),
    rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

/* Footer Bottom */

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  padding: 20px 2px 0;
  border-top: 1px solid rgba(203, 213, 225, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: rgba(203, 213, 225, 0.84);
  font-size: 13px;
  font-weight: 700;
}

/* ================= FLOATING BUTTONS START ================= */

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.floating-actions a {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 22px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  overflow: visible;
  transition: var(--transition);
}

.floating-actions a::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  z-index: -1;
  opacity: 0.38;
  animation: floatingPulse 1.8s ease-out infinite;
}

.floating-actions a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 35%),
    var(--primary-gradient);
}

.floating-actions a.whatsapp::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 35%),
    var(--green-gradient);
}

.floating-actions a.call::before {
  background: var(--primary-color);
}

.floating-actions a.whatsapp::before {
  background: var(--accent-color);
}

.floating-actions a:hover {
  color: var(--white-color);
  transform: translateY(-6px) scale(1.07);
}

@keyframes floatingPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.45;
  }

  70% {
    transform: scale(1.36);
    opacity: 0;
  }

  100% {
    transform: scale(1.36);
    opacity: 0;
  }
}

/* ================= FLOATING BUTTONS END ================= */


/* ================= MOBILE BOTTOM NAV START ================= */

.mobile-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 540px;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, 0.16), transparent 35%),
    radial-gradient(circle at 92% 20%, rgba(34, 197, 94, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(220, 232, 245, 0.96);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-bottom-nav a {
  position: relative;
  flex: 1;
  min-height: 54px;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  transition: var(--transition);
}

.mobile-bottom-nav a i {
  position: relative;
  z-index: 2;
  font-size: 18px;
  transition: var(--transition);
}

.mobile-bottom-nav a span {
  position: relative;
  z-index: 2;
}

.mobile-bottom-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 35%),
    var(--primary-gradient);
  opacity: 0;
  transform: scale(0.84);
  transition: var(--transition);
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--white-color);
}

.mobile-bottom-nav a.active::before,
.mobile-bottom-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.mobile-bottom-nav a.active i,
.mobile-bottom-nav a:hover i {
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .footer {
    padding: 78px 0 108px;
  }

  .footer .row {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 68px 0 112px;
  }

  .footer .row {
    padding: 24px;
    border-radius: 26px;
  }

  .footer-brand img {
    max-width: 165px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .footer h5 {
    margin-bottom: 18px;
  }

  .footer a {
    margin-bottom: 10px;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bottom-nav {
    display: flex;
  }
}

@media (max-width: 420px) {
  .footer {
    padding: 58px 0 106px;
  }

  .footer .row {
    padding: 20px;
    border-radius: 22px;
  }

  .footer-brand img {
    max-width: 150px;
  }

  .footer p,
  .footer a {
    font-size: 13px;
  }

  .footer .col-lg-3 p i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    font-size: 14px;
  }

  .mobile-bottom-nav {
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 24px;
  }

  .mobile-bottom-nav a {
    min-height: 50px;
    border-radius: 17px;
    font-size: 9.5px;
  }

  .mobile-bottom-nav a i {
    font-size: 16px;
  }
}

/* ================= MOBILE BOTTOM NAV END ================= */

/* ================= FOOTER END ================= */



/* ================= INDEX PAGE END ================= */


/* ================= ABOUT PAGE START ================= */


/* ================= NGO BACKGROUND SECTION START ================= */

.ngo-background-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 7% 12%, rgba(37, 99, 235, 0.16), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(34, 197, 94, 0.15), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, #f6faff 48%, var(--body-bg) 100%);
  overflow: hidden;
}

.ngo-background-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.ngo-background-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.ngo-background-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Glow Shapes */

.ngo-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ngoBgFloat 7s ease-in-out infinite;
}

.ngo-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 105px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.ngo-bg-shape-2 {
  width: 410px;
  height: 410px;
  right: -200px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes ngoBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Main Layout */

.ngo-background-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
  align-items: center;
}

/* Left Visual */

.ngo-background-visual {
  position: relative;
  min-height: 620px;
}

.ngo-background-image {
  position: relative;
  height: 620px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.ngo-background-image:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.ngo-background-image::before {
  content: "";
  position: absolute;
  inset: 34px 34px -20px -20px;
  border-radius: 44px;
  background: var(--green-gradient);
  opacity: 0.13;
  z-index: -1;
}

.ngo-background-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.ngo-background-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.ngo-background-image:hover img {
  transform: scale(1.07);
}

/* Floating Card */

.ngo-background-floating-card {
  position: absolute;
  left: -24px;
  bottom: 96px;
  z-index: 5;
  min-width: 270px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: ngoCardFloat 4.6s ease-in-out infinite;
}

@keyframes ngoCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.ngo-floating-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.28);
}

.ngo-background-floating-card strong,
.ngo-background-floating-card span {
  display: block;
}

.ngo-background-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.ngo-background-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Image Badge */

.ngo-background-badge {
  position: absolute;
  top: 34px;
  right: 28px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 35%),
    var(--primary-gradient);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.30);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ngo-background-badge i {
  color: #bbf7d0;
  font-size: 16px;
}

/* Right Content */

.ngo-background-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.ngo-background-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.ngo-background-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ngo-background-content p {
  margin-bottom: 16px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.ngo-background-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.ngo-point-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.95), transparent 38%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.ngo-point-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.ngo-point-item::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  top: -60px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: var(--transition);
}

.ngo-point-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-md);
}

.ngo-point-item:hover::before {
  transform: scaleX(1);
}

.ngo-point-item:hover::after {
  transform: scale(1.22);
  background: rgba(34, 197, 94, 0.10);
}

.ngo-point-item i {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.23);
  transition: var(--transition);
}

.ngo-point-item:hover i {
  transform: rotate(-5deg) translateY(-3px);
}

.ngo-point-item:nth-child(2) i {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.25);
}

.ngo-point-item:nth-child(3) i {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), #38bdf8);
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.24);
}

.ngo-point-item div {
  position: relative;
  z-index: 2;
}

.ngo-point-item h4 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.ngo-point-item span {
  display: block;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.58;
}

/* Buttons */

.ngo-background-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ngo-background-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.ngo-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.ngo-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.ngo-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.ngo-btn-main:hover::before {
  left: 130%;
}

.ngo-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.ngo-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .ngo-background-section {
    padding: 96px 0;
  }

  .ngo-background-wrapper {
    gap: 44px;
  }

  .ngo-background-visual {
    min-height: 570px;
  }

  .ngo-background-image {
    height: 570px;
  }

  .ngo-background-content h2 {
    font-size: clamp(36px, 4vw, 52px);
  }
}

@media (max-width: 991px) {
  .ngo-background-section {
    padding: 86px 0;
  }

  .ngo-background-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .ngo-background-content {
    text-align: center;
  }

  .ngo-background-content p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .ngo-background-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .ngo-background-actions {
    justify-content: center;
  }

  .ngo-background-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .ngo-background-image {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .ngo-background-section {
    padding: 70px 0;
  }

  .ngo-background-wrapper {
    gap: 38px;
  }

  .ngo-background-content h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .ngo-background-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .ngo-background-image {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .ngo-background-image::before {
    inset: 25px 25px -10px -10px;
    border-radius: 30px;
  }

  .ngo-background-image::after {
    inset: 10px;
    border-radius: 23px;
  }

  .ngo-background-image img {
    border-radius: 23px;
  }

  .ngo-background-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .ngo-background-badge {
    top: 22px;
    right: 22px;
    font-size: 10.5px;
    padding: 10px 13px;
  }

  .ngo-point-item {
    text-align: left;
  }

  .ngo-background-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ngo-background-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .ngo-background-content h2 {
    font-size: 30px;
  }

  .ngo-background-image {
    height: 315px;
  }

  .ngo-background-badge {
    display: none;
  }

  .ngo-background-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .ngo-floating-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .ngo-point-item {
    padding: 16px;
    border-radius: 20px;
  }

  .ngo-point-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 18px;
  }

  .ngo-point-item h4 {
    font-size: 15px;
  }

  .ngo-point-item span {
    font-size: 12.5px;
  }
}

/* ================= NGO BACKGROUND SECTION END ================= */


/* ================= SOCIAL DEVELOPMENT APPROACH SECTION START ================= */

.social-approach-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.15), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, var(--white-color) 48%, var(--body-bg) 100%);
  overflow: hidden;
}

.social-approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.social-approach-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.social-approach-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.social-approach-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: socialApproachFloat 7s ease-in-out infinite;
}

.social-approach-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 110px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.social-approach-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes socialApproachFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.social-approach-head {
  max-width: 900px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.social-approach-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.social-approach-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-approach-head p {
  max-width: 770px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Main Layout */

.social-approach-wrapper {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}

/* Left Cards */

.social-approach-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.approach-feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.95), transparent 38%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 16px 42px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.approach-feature-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  z-index: 5;
}

.approach-feature-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  top: -68px;
  right: -68px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
  z-index: -1;
}

.approach-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 22px 58px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.approach-feature-card:hover::before {
  transform: scaleX(1);
}

.approach-feature-card:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

/* Feature Icon */

.approach-feature-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  transition: var(--transition);
}

.approach-feature-card:hover .approach-feature-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.approach-feature-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.approach-feature-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), #38bdf8);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.25);
}

.approach-feature-icon.orange {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.23);
}

.approach-feature-card h3,
.approach-feature-card p {
  position: relative;
  z-index: 2;
}

.approach-feature-card h3 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.35px;
}

.approach-feature-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.74;
}

/* Right Visual */

.social-approach-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-circle-card {
  position: relative;
  width: min(100%, 535px);
  min-height: 535px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.approach-circle-card::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px dashed rgba(37, 99, 235, 0.25);
  animation: approachRotate 22s linear infinite;
}

.approach-circle-card::after {
  content: "";
  position: absolute;
  width: 365px;
  height: 365px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 34%),
    var(--primary-gradient);
  opacity: 0.11;
  filter: blur(2px);
}

@keyframes approachRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Center Circle */

.approach-circle-inner {
  position: relative;
  z-index: 3;
  width: 255px;
  height: 255px;
  padding: 34px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #2563eb 0%, #0ea5e9 58%, #22c55e 120%);
  box-shadow:
    0 24px 60px rgba(37, 99, 235, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-align: center;
}

.approach-circle-inner span {
  margin-bottom: 8px;
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach-circle-inner h3 {
  margin: 0 0 8px;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.approach-circle-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

/* Orbit Items */

.approach-orbit {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.95), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.94);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: approachOrbitFloat 4.5s ease-in-out infinite;
}

.approach-orbit i {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 15px;
}

.approach-orbit span {
  color: var(--heading-color);
  font-size: 12px;
  font-weight: 900;
}

.approach-orbit-1 {
  top: 72px;
  left: 36px;
}

.approach-orbit-2 {
  top: 82px;
  right: 30px;
  animation-delay: 0.8s;
}

.approach-orbit-2 i {
  background: var(--green-gradient);
}

.approach-orbit-3 {
  left: 24px;
  bottom: 112px;
  animation-delay: 1.4s;
}

.approach-orbit-3 i {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

.approach-orbit-4 {
  right: 32px;
  bottom: 100px;
  animation-delay: 2s;
}

.approach-orbit-4 i {
  background: linear-gradient(135deg, var(--secondary-color), #38bdf8);
}

@keyframes approachOrbitFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Trust Box */

.approach-trust-box {
  position: absolute;
  left: 50%;
  bottom: 5px;
  z-index: 5;
  width: calc(100% - 70px);
  max-width: 445px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.22), transparent 30%),
    var(--green-gradient);
  box-shadow: 0 22px 52px rgba(34, 197, 94, 0.30);
  transform: translateX(-50%);
}

.approach-trust-box i {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

.approach-trust-box strong,
.approach-trust-box span {
  display: block;
}

.approach-trust-box strong {
  margin-bottom: 4px;
  color: var(--white-color);
  font-size: 14.5px;
  font-weight: 950;
}

.approach-trust-box span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
}


/* ================= PREMIUM POLISH ADD-ON START ================= */

/* Section Premium Depth */
.social-approach-section {
  background:
    radial-gradient(circle at 6% 10%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(14, 165, 233, 0.14), transparent 32%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 45%, #f8fbff 100%);
}

.social-approach-section::before {
  opacity: 0.9;
}

.social-approach-section .container::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.08));
  transform: rotate(18deg);
  z-index: -1;
}

.social-approach-section .container::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 68%);
  z-index: -1;
}

/* Premium Badge */
.social-approach-head .section-badge {
  position: relative;
  overflow: hidden;
}

.social-approach-head .section-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transform: skewX(-22deg);
  animation: approachBadgeShine 3.8s ease-in-out infinite;
}

@keyframes approachBadgeShine {
  0% {
    left: -80%;
  }

  45%, 100% {
    left: 130%;
  }
}

/* Heading Premium */
.social-approach-head h2 {
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.social-approach-head h2 span {
  position: relative;
}

.social-approach-head h2 span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 160px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.25));
  transform: translateX(-50%);
}

/* Feature Cards Premium */
.approach-feature-card {
  border-color: rgba(226, 239, 255, 0.95);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.08), transparent 34%);
}

.approach-feature-card::before {
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9, #22c55e);
}

.approach-feature-card::after {
  width: 160px;
  height: 160px;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.11), transparent 66%);
}

.approach-feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow:
    0 28px 70px rgba(37, 99, 235, 0.16),
    0 12px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.approach-feature-card:hover .approach-feature-icon {
  transform: rotate(-6deg) translateY(-5px) scale(1.06);
}

.approach-feature-icon {
  position: relative;
}

.approach-feature-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(37, 99, 235, 0.16);
  opacity: 0;
  transform: scale(0.85);
  transition: var(--transition);
}

.approach-feature-card:hover .approach-feature-icon::after {
  opacity: 1;
  transform: scale(1);
}

.approach-feature-card h3 {
  color: #0b1220;
}

.approach-feature-card p {
  color: #64748b;
}

/* Right Visual Premium */
.approach-circle-card {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 1), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(34, 197, 94, 0.10), transparent 38%),
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(14, 165, 233, 0.28), rgba(34, 197, 94, 0.42)) border-box;
  box-shadow:
    0 30px 90px rgba(37, 99, 235, 0.18),
    0 14px 32px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.approach-circle-card::before {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow:
    0 0 0 18px rgba(37, 99, 235, 0.025),
    0 0 0 38px rgba(34, 197, 94, 0.025);
}

.approach-circle-inner {
  box-shadow:
    0 28px 70px rgba(37, 99, 235, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: approachCenterFloat 4.8s ease-in-out infinite;
}

@keyframes approachCenterFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Orbit Premium */
.approach-orbit {
  border-color: rgba(226, 239, 255, 1);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.approach-orbit:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
}

.approach-orbit i {
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

/* Trust Box Premium */
.approach-trust-box {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.25), transparent 32%),
    linear-gradient(135deg, #16a34a, #22c55e, #0ea5e9);
  box-shadow:
    0 26px 62px rgba(34, 197, 94, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.approach-trust-box i {
  color: #ffffff;
}

/* Mobile Premium Fix */
@media (max-width: 767px) {
  .social-approach-section .container::before,
  .social-approach-section .container::after {
    display: none;
  }

  .social-approach-head h2 span::after {
    width: 110px;
    height: 6px;
    bottom: -7px;
  }

  .approach-feature-card:hover {
    transform: translateY(-5px);
  }

  .approach-circle-inner {
    animation: none;
  }

  .approach-orbit:hover {
    transform: none;
  }
}

@media (max-width: 575px) {
  .approach-feature-card {
    box-shadow:
      0 14px 36px rgba(15, 23, 42, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .approach-circle-card {
    box-shadow:
      0 18px 48px rgba(37, 99, 235, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}

/* ================= PREMIUM POLISH ADD-ON END ================= */

/* ================= LAPTOP RESPONSIVE ================= */

@media (max-width: 1199px) {
  .social-approach-section {
    padding: 90px 0;
  }

  .social-approach-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .social-approach-head {
    margin-bottom: 46px;
  }

  .social-approach-head h2 {
    font-size: 42px;
  }

  .approach-feature-card {
    padding: 20px;
    border-radius: 26px;
  }

  .approach-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    font-size: 22px;
  }

  .approach-feature-card h3 {
    font-size: 17px;
  }

  .approach-feature-card p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .social-approach-visual {
    min-height: 540px;
  }

  .approach-circle-card {
    width: 100%;
    min-height: 500px;
    border-radius: 40px;
  }

  .approach-circle-inner {
    width: 230px;
    height: 230px;
  }

  .approach-circle-inner h3 {
    font-size: 26px;
  }

  .approach-orbit {
    min-width: 128px;
    padding: 10px 12px;
  }

  .approach-orbit-1 {
    top: 66px;
    left: 24px;
  }

  .approach-orbit-2 {
    top: 74px;
    right: 20px;
  }

  .approach-orbit-3 {
    left: 20px;
    bottom: 108px;
  }

  .approach-orbit-4 {
    right: 20px;
    bottom: 96px;
  }
}

/* ================= TABLET RESPONSIVE ================= */

@media (max-width: 991px) {
  .social-approach-section {
    padding: 80px 0;
  }

  .social-approach-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .social-approach-head {
    max-width: 760px;
    margin-bottom: 42px;
  }

  .social-approach-head h2 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .social-approach-head p {
    font-size: 15.5px;
  }

  .social-approach-content {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .approach-feature-card {
    padding: 22px;
  }

  .social-approach-visual {
    max-width: 640px;
    min-height: 560px;
    margin: 0 auto;
  }

  .approach-circle-card {
    min-height: 515px;
  }

  .approach-circle-inner {
    width: 240px;
    height: 240px;
  }

  .approach-trust-box {
    bottom: 0;
  }
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 767px) {
  .social-approach-section {
    padding: 68px 0;
  }

  .social-approach-shape {
    display: none;
  }

  .social-approach-head {
    margin-bottom: 36px;
  }

  .social-approach-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .social-approach-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .social-approach-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-approach-content {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .approach-feature-card {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
  }

  .approach-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    font-size: 21px;
  }

  .approach-feature-card h3 {
    font-size: 17px;
  }

  .approach-feature-card p {
    font-size: 13.8px;
  }

  .social-approach-visual {
    width: 100%;
    min-height: auto;
    display: block;
  }

  .approach-circle-card {
    width: 100%;
    min-height: auto;
    padding: 24px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .approach-circle-card::before,
  .approach-circle-card::after {
    display: none;
  }

  .approach-circle-inner {
    width: 220px;
    height: 220px;
    margin: 0 auto 10px;
  }

  .approach-circle-inner h3 {
    font-size: 25px;
  }

  .approach-orbit {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: auto;
    justify-content: flex-start;
    animation: none;
  }

  .approach-trust-box {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    transform: none;
  }
}

@media (max-width: 575px) {
  .social-approach-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .social-approach-head h2 {
    font-size: 30px;
  }

  .social-approach-head p {
    font-size: 14.5px;
  }

  .approach-feature-card {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .approach-feature-card h3 {
    font-size: 16.5px;
  }

  .approach-feature-card p {
    font-size: 13.4px;
    line-height: 1.65;
  }

  .approach-circle-card {
    padding: 20px;
    border-radius: 26px;
  }

  .approach-circle-inner {
    width: 190px;
    height: 190px;
    padding: 22px;
  }

  .approach-circle-inner span {
    font-size: 10.5px;
  }

  .approach-circle-inner h3 {
    font-size: 22px;
  }

  .approach-circle-inner p {
    font-size: 12px;
  }

  .approach-orbit {
    padding: 11px 12px;
  }

  .approach-orbit i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 12px;
    font-size: 14px;
  }

  .approach-trust-box {
    padding: 16px;
    border-radius: 21px;
  }

  .approach-trust-box i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    font-size: 20px;
  }

  .approach-trust-box strong {
    font-size: 13.5px;
  }

  .approach-trust-box span {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .social-approach-head h2 {
    font-size: 27px;
  }

  .approach-feature-card {
    padding: 16px;
  }

  .approach-circle-inner {
    width: 170px;
    height: 170px;
  }

  .approach-circle-inner h3 {
    font-size: 20px;
  }

  .approach-trust-box {
    flex-direction: column;
  }
}

/* ================= SOCIAL DEVELOPMENT APPROACH SECTION END ================= */

/* ================= MISSION VISION VALUES SECTION START ================= */

.mission-vision-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--white-color) 0%, var(--body-bg) 100%);
  overflow: hidden;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.mission-vision-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 820px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.mission-vision-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* BG Shapes */

.mvv-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: mvvFloat 7s ease-in-out infinite;
}

.mvv-shape-1 {
  width: 290px;
  height: 290px;
  left: -140px;
  top: 110px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(6px);
}

.mvv-shape-2 {
  width: 390px;
  height: 390px;
  right: -190px;
  bottom: 85px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(7px);
  animation-delay: 1.2s;
}

@keyframes mvvFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.mvv-section-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.75), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.mvv-section-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.mvv-section-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mvv-section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Main Cards */

.mvv-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv-feature-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.95), transparent 36%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.mvv-feature-card::before {
  content: "";
  position: absolute;
  inset: auto 26px 0 26px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  z-index: 5;
}

.mvv-feature-card::after {
  content: "";
  position: absolute;
  width: 175px;
  height: 175px;
  top: -78px;
  right: -78px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
  z-index: -1;
}

.mvv-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 26px 68px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.mvv-feature-card:hover::before {
  transform: scaleX(1);
}

.mvv-feature-card:hover::after {
  transform: scale(1.18);
  background: rgba(34, 197, 94, 0.11);
}

.mvv-feature-card.featured {
  color: var(--white-color);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(34, 197, 94, 0.26), transparent 35%),
    linear-gradient(135deg, #2563EB 0%, #0EA5E9 58%, #22C55E 120%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.28);
}

.mvv-feature-card.featured::before {
  background: var(--green-gradient);
}

.mvv-feature-card.featured::after {
  background: rgba(255, 255, 255, 0.16);
}

.mvv-card-glow {
  position: absolute;
  width: 210px;
  height: 210px;
  left: -110px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
  filter: blur(4px);
  pointer-events: none;
}

.mvv-feature-card.featured .mvv-card-glow {
  background: rgba(255, 255, 255, 0.14);
}

/* Icon */

.mvv-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  min-width: 68px;
  margin-bottom: 28px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--primary-gradient);
  font-size: 29px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  transition: var(--transition);
}

.mvv-feature-card:hover .mvv-icon {
  transform: translateY(-4px) rotate(-5deg);
}

.mvv-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 35%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.mvv-icon.white {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.20);
}

.mvv-number {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(37, 99, 235, 0.11);
  font-size: 62px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -1px;
}

.mvv-feature-card.featured .mvv-number {
  color: rgba(255, 255, 255, 0.22);
}

/* Card Content */

.mvv-feature-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.5px;
}

.mvv-feature-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  color: var(--text-color);
  font-size: 14.8px;
  font-weight: 500;
  line-height: 1.78;
}

.mvv-feature-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mvv-feature-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
}

.mvv-feature-card ul li:last-child {
  margin-bottom: 0;
}

.mvv-feature-card ul li i {
  margin-top: 2px;
  color: var(--accent-color);
  font-size: 14px;
}

.mvv-feature-card.featured h3,
.mvv-feature-card.featured p,
.mvv-feature-card.featured ul li {
  color: var(--white-color);
}

.mvv-feature-card.featured ul li i {
  color: #BBF7D0;
}

/* Core Values */

.core-values-wrapper {
  margin-top: 28px;
  padding: 34px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.small-badge {
  margin-bottom: 18px;
}

.core-values-left h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -0.8px;
}

.core-values-left p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.core-value-item {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: var(--white-color);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.core-value-item::before {
  content: "";
  position: absolute;
  inset: auto 16px 0 16px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.core-value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.22);
}

.core-value-item:hover::before {
  transform: scaleX(1);
}

.core-value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.core-value-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.24);
}

.core-value-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), #38BDF8);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.24);
}

.core-value-icon.orange {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.core-value-item h4 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 15.5px;
  font-weight: 950;
}

.core-value-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1.55;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .mission-vision-section {
    padding: 95px 0;
  }

  .mvv-main-grid {
    gap: 20px;
  }

  .mvv-feature-card {
    padding: 28px;
  }

  .core-values-wrapper {
    grid-template-columns: 1fr;
  }

  .core-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .mission-vision-section {
    padding: 85px 0;
  }

  .mvv-section-head {
    margin-bottom: 44px;
  }

  .mvv-main-grid {
    grid-template-columns: 1fr;
  }

  .mvv-feature-card {
    min-height: auto;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-left {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .mission-vision-section {
    padding: 70px 0;
  }

  .mvv-section-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .mvv-section-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .mvv-feature-card {
    padding: 26px;
    border-radius: 28px;
  }

  .mvv-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .mvv-number {
    top: 26px;
    right: 26px;
    font-size: 48px;
  }

  .mvv-feature-card h3 {
    font-size: 22px;
  }

  .core-values-wrapper {
    padding: 26px;
    border-radius: 28px;
  }

  .core-values-left h3 {
    font-size: 26px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mission-vision-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .mvv-section-head h2 {
    font-size: 30px;
  }

  .mvv-feature-card {
    padding: 22px;
  }

  .mvv-feature-card h3 {
    font-size: 21px;
  }

  .mvv-feature-card p,
  .mvv-feature-card ul li {
    font-size: 13.3px;
  }

  .core-values-wrapper {
    padding: 22px;
  }

  .core-value-item {
    padding: 18px;
    border-radius: 22px;
  }
}

/* ================= MISSION VISION VALUES SECTION END ================= */


/* ================= FOUNDER LEADERSHIP SECTION START ================= */

.founder-leadership-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(34, 197, 94, 0.14), transparent 32%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 100%);
  overflow: hidden;
}

.founder-leadership-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.founder-leadership-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -185px;
  width: 820px;
  height: 290px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.founder-leadership-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.founder-leader-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: founderLeaderFloat 7s ease-in-out infinite;
}

.founder-leader-shape-1 {
  width: 290px;
  height: 290px;
  left: -140px;
  top: 110px;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(6px);
}

.founder-leader-shape-2 {
  width: 390px;
  height: 390px;
  right: -190px;
  bottom: 85px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(7px);
  animation-delay: 1.2s;
}

@keyframes founderLeaderFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.founder-leader-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.75), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.founder-leader-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.founder-leader-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-leader-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Founder Grid */

.founder-leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founder-leader-card {
  position: relative;
  min-height: 520px;
  padding: 16px;
  border-radius: 38px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(34, 197, 94, 0.35)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 20px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.founder-leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.16);
}

.founder-leader-card.featured {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(14, 165, 233, 0.94), rgba(34, 197, 94, 0.94)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.40), rgba(255, 255, 255, 0.16)) border-box;
}

.founder-card-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
}

.founder-leader-card.featured .founder-card-pattern {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
}

/* Image */

.founder-leader-image {
  position: relative;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--light-bg);
}

.founder-leader-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.52)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent);
  pointer-events: none;
}

.founder-leader-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.75s ease;
}

.founder-leader-card:hover .founder-leader-image img {
  transform: scale(1.07);
}

/* Content */

.founder-leader-content {
  position: relative;
  z-index: 3;
  padding: 26px 10px 8px;
}

.founder-role-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  margin-bottom: 16px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.founder-role-badge i {
  color: var(--accent-color);
}

.founder-leader-card.featured .founder-role-badge {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.20);
}

.founder-leader-card.featured .founder-role-badge i {
  color: #BBF7D0;
}

.founder-leader-content h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.founder-leader-content p {
  margin: 0 0 20px;
  color: var(--text-color);
  font-size: 14.8px;
  font-weight: 500;
  line-height: 1.78;
}

.founder-leader-card.featured .founder-leader-content h3,
.founder-leader-card.featured .founder-leader-content p {
  color: var(--white-color);
}

/* Focus List */

.founder-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-focus-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: var(--radius-full);
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid rgba(220, 232, 245, 0.95);
  font-size: 12px;
  font-weight: 800;
}

.founder-focus-list span i {
  color: var(--accent-color);
  font-size: 12px;
}

.founder-leader-card.featured .founder-focus-list span {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.20);
}

.founder-leader-card.featured .founder-focus-list span i {
  color: #BBF7D0;
}

/* Message Strip */

.founder-message-strip {
  margin-top: 32px;
  padding: 28px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(34, 197, 94, 0.26), transparent 34%),
    var(--primary-gradient);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.25);
  color: var(--white-color);
  overflow: hidden;
}

.founder-message-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #BBF7D0;
  background: rgba(255, 255, 255, 0.14);
  font-size: 26px;
}

.founder-message-strip h3 {
  margin: 0 0 5px;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.founder-message-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.founder-message-btn {
  min-height: 52px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.founder-message-btn:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .founder-leadership-section {
    padding: 95px 0;
  }

  .founder-leader-image {
    height: 330px;
  }

  .founder-leader-content h3 {
    font-size: 27px;
  }
}

@media (max-width: 991px) {
  .founder-leadership-section {
    padding: 85px 0;
  }

  .founder-leader-head {
    margin-bottom: 44px;
  }

  .founder-leader-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .founder-leader-card {
    min-height: auto;
  }

  .founder-message-strip {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-message-btn {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .founder-leadership-section {
    padding: 70px 0;
  }

  .founder-leader-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .founder-leader-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .founder-leader-card {
    padding: 12px;
    border-radius: 28px;
  }

  .founder-leader-image {
    height: 310px;
    border-radius: 22px;
  }

  .founder-leader-content {
    padding: 22px 8px 8px;
  }

  .founder-leader-content h3 {
    font-size: 24px;
  }

  .founder-message-strip {
    padding: 24px;
    border-radius: 26px;
  }

  .founder-message-strip h3 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .founder-leadership-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .founder-leader-head h2 {
    font-size: 30px;
  }

  .founder-leader-image {
    height: 270px;
  }

  .founder-leader-content h3 {
    font-size: 22px;
  }

  .founder-leader-content p {
    font-size: 13.5px;
  }

  .founder-focus-list span {
    width: 100%;
  }

  .founder-message-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 19px;
    font-size: 23px;
  }
}

/* ================= FOUNDER LEADERSHIP SECTION END ================= */


/* ================= ABOUT SECTION END ================= */


/* ================= INTIATIVES SECTION START ================= */

/* ================= EDUCATION AWARENESS SECTION START ================= */

.education-awareness-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.15), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, #f6faff 50%, var(--body-bg) 100%);
  overflow: hidden;
}

.education-awareness-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.education-awareness-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.education-awareness-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.education-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: eduBgFloat 7s ease-in-out infinite;
}

.education-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.education-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes eduBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Main Layout */

.education-awareness-wrapper {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 62px;
  align-items: center;
}

/* Content */

.education-awareness-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.education-awareness-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size:40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.education-awareness-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.education-awareness-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.education-awareness-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.education-awareness-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.education-awareness-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.education-awareness-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: var(--transition);
}

.education-awareness-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.education-awareness-item:hover::before {
  transform: scaleX(1);
}

.education-awareness-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

.education-awareness-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.education-awareness-item:hover .education-awareness-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.education-awareness-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.education-awareness-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), #38bdf8);
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.education-awareness-item div {
  position: relative;
  z-index: 2;
}

.education-awareness-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.education-awareness-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.education-awareness-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.education-awareness-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.education-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.education-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.education-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.education-btn-main:hover::before {
  left: 130%;
}

.education-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.education-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Visual */

.education-awareness-visual {
  position: relative;
  min-height: 610px;
}

.education-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.education-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.education-image-card::before {
  content: "";
  position: absolute;
  inset: 34px -20px -20px 34px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.education-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.17), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.education-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.education-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.education-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: eduCardFloat 4.7s ease-in-out infinite;
}

.education-floating-card.education-card-1 {
  left: -24px;
  top: 95px;
}

.education-floating-card.education-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes eduCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.education-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.education-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.education-floating-card strong,
.education-floating-card span {
  display: block;
}

.education-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.education-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.education-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #2563eb, #0ea5e9, #22c55e);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

.education-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.education-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.education-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .education-awareness-section {
    padding: 95px 0;
  }

  .education-awareness-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .education-awareness-content h2 {
    font-size: 42px;
  }

  .education-awareness-visual {
    min-height: 560px;
  }

  .education-image-card {
    height: 560px;
  }

  .education-floating-card {
    min-width: 230px;
  }

  .education-card-1 {
    left: -8px;
  }

  .education-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .education-awareness-section {
    padding: 84px 0;
  }

  .education-awareness-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .education-awareness-content {
    text-align: center;
  }

  .education-awareness-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .education-awareness-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .education-awareness-actions {
    justify-content: center;
  }

  .education-awareness-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .education-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .education-awareness-section {
    padding: 68px 0;
  }

  .education-bg-shape {
    display: none;
  }

  .education-awareness-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .education-awareness-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .education-awareness-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .education-awareness-visual {
    width: 100%;
  }

  .education-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .education-image-card::before {
    inset: 25px -10px -10px 25px;
    border-radius: 30px;
  }

  .education-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .education-image-card img {
    border-radius: 23px;
  }

  .education-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .education-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .education-awareness-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .education-awareness-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .education-awareness-content h2 {
    font-size: 30px;
  }

  .education-awareness-content > p {
    font-size: 14.5px;
  }

  .education-awareness-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .education-awareness-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .education-awareness-item h4 {
    font-size: 15.5px;
  }

  .education-awareness-item p {
    font-size: 13.2px;
  }

  .education-image-card {
    height: 315px;
  }

  .education-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .education-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .education-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .education-stats-card h3 {
    font-size: 19px;
  }

  .education-stats-card p {
    font-size: 12px;
  }

  .education-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .education-awareness-content h2 {
    font-size: 27px;
  }

  .education-image-card {
    height: 285px;
  }

  .education-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= EDUCATION AWARENESS SECTION END ================= */

/* ================= SKILL DEVELOPMENT SECTION START ================= */

.skill-development-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(34, 197, 94, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(37, 99, 235, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(14, 165, 233, 0.13), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, #ffffff 52%, #f6faff 100%);
  overflow: hidden;
}

.skill-development-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.skill-development-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.skill-development-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.skill-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: skillBgFloat 7s ease-in-out infinite;
}

.skill-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(34, 197, 94, 0.13);
  filter: blur(7px);
}

.skill-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes skillBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Main Layout */

.skill-development-wrapper {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 62px;
  align-items: center;
}

/* Visual */

.skill-development-visual {
  position: relative;
  min-height: 610px;
}

.skill-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(34, 197, 94, 0.38), rgba(14, 165, 233, 0.24), rgba(37, 99, 235, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(34, 197, 94, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.skill-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.16),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.skill-image-card::before {
  content: "";
  position: absolute;
  inset: 34px 34px -20px -20px;
  border-radius: 44px;
  background: var(--green-gradient);
  opacity: 0.12;
  z-index: -1;
}

.skill-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(34, 197, 94, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.skill-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.skill-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.skill-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: skillCardFloat 4.7s ease-in-out infinite;
}

.skill-card-1 {
  left: -24px;
  top: 95px;
}

.skill-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes skillCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.skill-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.skill-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.skill-floating-card strong,
.skill-floating-card span {
  display: block;
}

.skill-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.skill-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.skill-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #16a34a, #22c55e, #0ea5e9);
  box-shadow: 0 24px 58px rgba(34, 197, 94, 0.28);
}

.skill-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.skill-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.skill-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* Content */

.skill-development-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.skill-development-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.skill-development-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skill-development-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.skill-development-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.skill-development-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.skill-development-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--green-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.skill-development-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.07);
  transition: var(--transition);
}

.skill-development-item:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.24);
  box-shadow:
    0 20px 52px rgba(34, 197, 94, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.skill-development-item:hover::before {
  transform: scaleX(1);
}

.skill-development-item:hover::after {
  transform: scale(1.24);
  background: rgba(37, 99, 235, 0.09);
}

.skill-development-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.skill-development-item:hover .skill-development-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.skill-development-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.skill-development-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), #38bdf8);
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.skill-development-item div {
  position: relative;
  z-index: 2;
}

.skill-development-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.skill-development-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.skill-development-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.skill-development-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.skill-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.26);
}

.skill-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.skill-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(34, 197, 94, 0.36);
}

.skill-btn-main:hover::before {
  left: 130%;
}

.skill-btn-soft {
  color: var(--primary-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: var(--shadow-sm);
}

.skill-btn-soft:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .skill-development-section {
    padding: 95px 0;
  }

  .skill-development-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .skill-development-content h2 {
    font-size: 42px;
  }

  .skill-development-visual {
    min-height: 560px;
  }

  .skill-image-card {
    height: 560px;
  }

  .skill-floating-card {
    min-width: 230px;
  }

  .skill-card-1 {
    left: -8px;
  }

  .skill-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .skill-development-section {
    padding: 84px 0;
  }

  .skill-development-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .skill-development-content {
    text-align: center;
    order: 1;
  }

  .skill-development-visual {
    order: 2;
  }

  .skill-development-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .skill-development-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .skill-development-actions {
    justify-content: center;
  }

  .skill-development-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .skill-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .skill-development-section {
    padding: 68px 0;
  }

  .skill-bg-shape {
    display: none;
  }

  .skill-development-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .skill-development-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .skill-development-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .skill-development-visual {
    width: 100%;
  }

  .skill-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .skill-image-card::before {
    inset: 25px 25px -10px -10px;
    border-radius: 30px;
  }

  .skill-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .skill-image-card img {
    border-radius: 23px;
  }

  .skill-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .skill-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .skill-development-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .skill-development-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .skill-development-content h2 {
    font-size: 30px;
  }

  .skill-development-content > p {
    font-size: 14.5px;
  }

  .skill-development-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .skill-development-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .skill-development-item h4 {
    font-size: 15.5px;
  }

  .skill-development-item p {
    font-size: 13.2px;
  }

  .skill-image-card {
    height: 315px;
  }

  .skill-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .skill-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .skill-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .skill-stats-card h3 {
    font-size: 19px;
  }

  .skill-stats-card p {
    font-size: 12px;
  }

  .skill-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .skill-development-content h2 {
    font-size: 27px;
  }

  .skill-image-card {
    height: 285px;
  }

  .skill-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= SKILL DEVELOPMENT SECTION END ================= */

/* ================= VOCATIONAL TRAINING SECTION START ================= */

.vocational-training-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(34, 197, 94, 0.14), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(14, 165, 233, 0.13), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, #f6faff 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.vocational-training-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.vocational-training-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.vocational-training-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.vocational-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: vocationalBgFloat 7s ease-in-out infinite;
}

.vocational-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.vocational-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes vocationalBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Layout */

.vocational-training-wrapper {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 62px;
  align-items: center;
}

/* Content */

.vocational-training-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.vocational-training-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.vocational-training-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vocational-training-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.vocational-training-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.vocational-training-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.vocational-training-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.vocational-training-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: var(--transition);
}

.vocational-training-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.vocational-training-item:hover::before {
  transform: scaleX(1);
}

.vocational-training-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

.vocational-training-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.vocational-training-item:hover .vocational-training-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.vocational-training-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.vocational-training-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), #38bdf8);
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.vocational-training-item div {
  position: relative;
  z-index: 2;
}

.vocational-training-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.vocational-training-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.vocational-training-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.vocational-training-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.vocational-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.vocational-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.vocational-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.vocational-btn-main:hover::before {
  left: 130%;
}

.vocational-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.vocational-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Visual */

.vocational-training-visual {
  position: relative;
  min-height: 610px;
}

.vocational-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.vocational-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.vocational-image-card::before {
  content: "";
  position: absolute;
  inset: 34px -20px -20px 34px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.vocational-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.17), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.vocational-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.vocational-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.vocational-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: vocationalCardFloat 4.7s ease-in-out infinite;
}

.vocational-card-1 {
  left: -24px;
  top: 95px;
}

.vocational-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes vocationalCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.vocational-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.vocational-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.vocational-floating-card strong,
.vocational-floating-card span {
  display: block;
}

.vocational-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.vocational-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.vocational-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #2563eb, #0ea5e9, #22c55e);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

.vocational-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.vocational-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.vocational-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .vocational-training-section {
    padding: 95px 0;
  }

  .vocational-training-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .vocational-training-content h2 {
    font-size: 42px;
  }

  .vocational-training-visual {
    min-height: 560px;
  }

  .vocational-image-card {
    height: 560px;
  }

  .vocational-floating-card {
    min-width: 230px;
  }

  .vocational-card-1 {
    left: -8px;
  }

  .vocational-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .vocational-training-section {
    padding: 84px 0;
  }

  .vocational-training-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .vocational-training-content {
    text-align: center;
  }

  .vocational-training-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .vocational-training-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .vocational-training-actions {
    justify-content: center;
  }

  .vocational-training-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .vocational-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .vocational-training-section {
    padding: 68px 0;
  }

  .vocational-bg-shape {
    display: none;
  }

  .vocational-training-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .vocational-training-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .vocational-training-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .vocational-training-visual {
    width: 100%;
  }

  .vocational-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .vocational-image-card::before {
    inset: 25px -10px -10px 25px;
    border-radius: 30px;
  }

  .vocational-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .vocational-image-card img {
    border-radius: 23px;
  }

  .vocational-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .vocational-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .vocational-training-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .vocational-training-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .vocational-training-content h2 {
    font-size: 30px;
  }

  .vocational-training-content > p {
    font-size: 14.5px;
  }

  .vocational-training-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .vocational-training-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .vocational-training-item h4 {
    font-size: 15.5px;
  }

  .vocational-training-item p {
    font-size: 13.2px;
  }

  .vocational-image-card {
    height: 315px;
  }

  .vocational-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .vocational-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .vocational-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .vocational-stats-card h3 {
    font-size: 19px;
  }

  .vocational-stats-card p {
    font-size: 12px;
  }

  .vocational-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .vocational-training-content h2 {
    font-size: 27px;
  }

  .vocational-image-card {
    height: 285px;
  }

  .vocational-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= VOCATIONAL TRAINING SECTION END ================= */

/* ================= CAREER GUIDANCE SECTION START ================= */

.career-guidance-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(14, 165, 233, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(37, 99, 235, 0.14), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, #ffffff 52%, #f6faff 100%);
  overflow: hidden;
}

.career-guidance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.career-guidance-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.career-guidance-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.career-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: careerBgFloat 7s ease-in-out infinite;
}

.career-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(14, 165, 233, 0.13);
  filter: blur(7px);
}

.career-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes careerBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Layout */

.career-guidance-wrapper {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 62px;
  align-items: center;
}

/* Visual */

.career-guidance-visual {
  position: relative;
  min-height: 610px;
}

.career-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(14, 165, 233, 0.38), rgba(37, 99, 235, 0.28), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(14, 165, 233, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.career-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.16),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.career-image-card::before {
  content: "";
  position: absolute;
  inset: 34px 34px -20px -20px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.career-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(14, 165, 233, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.career-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.career-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.career-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: careerCardFloat 4.7s ease-in-out infinite;
}

.career-card-1 {
  left: -24px;
  top: 95px;
}

.career-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes careerCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.career-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.career-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.career-floating-card strong,
.career-floating-card span {
  display: block;
}

.career-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.career-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.career-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #0ea5e9, #2563eb, #22c55e);
  box-shadow: 0 24px 58px rgba(14, 165, 233, 0.28);
}

.career-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.career-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.career-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* Content */

.career-guidance-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.section-badge i {
  font-size: 14px;
}

.career-guidance-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size:40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.career-guidance-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-guidance-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.career-guidance-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.career-guidance-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.career-guidance-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.career-guidance-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.07);
  transition: var(--transition);
}

.career-guidance-item:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.24);
  box-shadow:
    0 20px 52px rgba(14, 165, 233, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.career-guidance-item:hover::before {
  transform: scaleX(1);
}

.career-guidance-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

.career-guidance-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.career-guidance-item:hover .career-guidance-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.career-guidance-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.career-guidance-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), #38bdf8);
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.career-guidance-item div {
  position: relative;
  z-index: 2;
}

.career-guidance-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.career-guidance-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.career-guidance-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.career-guidance-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.career-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.career-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.career-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.career-btn-main:hover::before {
  left: 130%;
}

.career-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.career-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .career-guidance-section {
    padding: 95px 0;
  }

  .career-guidance-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .career-guidance-content h2 {
    font-size: 42px;
  }

  .career-guidance-visual {
    min-height: 560px;
  }

  .career-image-card {
    height: 560px;
  }

  .career-floating-card {
    min-width: 230px;
  }

  .career-card-1 {
    left: -8px;
  }

  .career-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .career-guidance-section {
    padding: 84px 0;
  }

  .career-guidance-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .career-guidance-content {
    text-align: center;
    order: 1;
  }

  .career-guidance-visual {
    order: 2;
  }

  .career-guidance-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .career-guidance-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .career-guidance-actions {
    justify-content: center;
  }

  .career-guidance-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .career-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .career-guidance-section {
    padding: 68px 0;
  }

  .career-bg-shape {
    display: none;
  }

  .career-guidance-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .career-guidance-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .career-guidance-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .career-guidance-visual {
    width: 100%;
  }

  .career-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .career-image-card::before {
    inset: 25px 25px -10px -10px;
    border-radius: 30px;
  }

  .career-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .career-image-card img {
    border-radius: 23px;
  }

  .career-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .career-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .career-guidance-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .career-guidance-section {
    padding: 58px 0;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .section-badge span {
    width: 27px;
    height: 27px;
  }

  .career-guidance-content h2 {
    font-size: 30px;
  }

  .career-guidance-content > p {
    font-size: 14.5px;
  }

  .career-guidance-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .career-guidance-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .career-guidance-item h4 {
    font-size: 15.5px;
  }

  .career-guidance-item p {
    font-size: 13.2px;
  }

  .career-image-card {
    height: 315px;
  }

  .career-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .career-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .career-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .career-stats-card h3 {
    font-size: 19px;
  }

  .career-stats-card p {
    font-size: 12px;
  }

  .career-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .career-guidance-content h2 {
    font-size: 27px;
  }

  .career-image-card {
    height: 285px;
  }

  .career-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= CAREER GUIDANCE SECTION END ================= */

/* ================= WOMEN EMPOWERMENT SECTION START ================= */

.women-empowerment-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 48%, var(--body-bg) 100%);
  overflow: hidden;
}

.women-empowerment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.women-empowerment-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.women-empowerment-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.women-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: womenBgFloat 7s ease-in-out infinite;
}

.women-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.women-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes womenBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Layout */

.women-empowerment-wrapper {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 62px;
  align-items: center;
}

/* Content */

.women-empowerment-content {
  position: relative;
  z-index: 2;
}

/* Section Badge */

.women-empowerment-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.women-empowerment-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.women-empowerment-section .section-badge i {
  font-size: 14px;
}

/* Heading */

.women-empowerment-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.women-empowerment-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.women-empowerment-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.women-empowerment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.women-empowerment-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.women-empowerment-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.women-empowerment-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.women-empowerment-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.women-empowerment-item:hover::before {
  transform: scaleX(1);
}

.women-empowerment-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

/* List Icons */

.women-empowerment-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.women-empowerment-item:hover .women-empowerment-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.women-empowerment-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.women-empowerment-icon.pink {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.women-empowerment-item div {
  position: relative;
  z-index: 2;
}

.women-empowerment-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.women-empowerment-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.women-empowerment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.women-empowerment-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.women-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.women-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.women-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.women-btn-main:hover::before {
  left: 130%;
}

.women-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.women-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Visual */

.women-empowerment-visual {
  position: relative;
  min-height: 610px;
}

.women-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.women-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.women-image-card::before {
  content: "";
  position: absolute;
  inset: 34px -20px -20px 34px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.women-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.17), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.women-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.women-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.women-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: womenCardFloat 4.7s ease-in-out infinite;
}

.women-card-1 {
  left: -24px;
  top: 95px;
}

.women-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes womenCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.women-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.women-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.women-floating-card strong,
.women-floating-card span {
  display: block;
}

.women-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.women-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.women-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

.women-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.women-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.women-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .women-empowerment-section {
    padding: 95px 0;
  }

  .women-empowerment-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .women-empowerment-content h2 {
    font-size: 42px;
  }

  .women-empowerment-visual {
    min-height: 560px;
  }

  .women-image-card {
    height: 560px;
  }

  .women-floating-card {
    min-width: 230px;
  }

  .women-card-1 {
    left: -8px;
  }

  .women-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .women-empowerment-section {
    padding: 84px 0;
  }

  .women-empowerment-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .women-empowerment-content {
    text-align: center;
  }

  .women-empowerment-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .women-empowerment-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .women-empowerment-actions {
    justify-content: center;
  }

  .women-empowerment-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .women-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .women-empowerment-section {
    padding: 68px 0;
  }

  .women-bg-shape {
    display: none;
  }

  .women-empowerment-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .women-empowerment-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .women-empowerment-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .women-empowerment-visual {
    width: 100%;
  }

  .women-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .women-image-card::before {
    inset: 25px -10px -10px 25px;
    border-radius: 30px;
  }

  .women-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .women-image-card img {
    border-radius: 23px;
  }

  .women-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .women-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .women-empowerment-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .women-empowerment-section {
    padding: 58px 0;
  }

  .women-empowerment-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .women-empowerment-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .women-empowerment-content h2 {
    font-size: 30px;
  }

  .women-empowerment-content > p {
    font-size: 14.5px;
  }

  .women-empowerment-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .women-empowerment-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .women-empowerment-item h4 {
    font-size: 15.5px;
  }

  .women-empowerment-item p {
    font-size: 13.2px;
  }

  .women-image-card {
    height: 315px;
  }

  .women-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .women-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .women-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .women-stats-card h3 {
    font-size: 19px;
  }

  .women-stats-card p {
    font-size: 12px;
  }

  .women-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .women-empowerment-content h2 {
    font-size: 27px;
  }

  .women-image-card {
    height: 285px;
  }

  .women-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= WOMEN EMPOWERMENT SECTION END ================= */


/* ================= YOUTH EMPOWERMENT SECTION START ================= */

.youth-empowerment-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.youth-empowerment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.youth-empowerment-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.youth-empowerment-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.youth-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: youthBgFloat 7s ease-in-out infinite;
}

.youth-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.youth-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes youthBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Layout */

.youth-empowerment-wrapper {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 62px;
  align-items: center;
}

/* Visual */

.youth-empowerment-visual {
  position: relative;
  min-height: 610px;
}

.youth-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.youth-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.youth-image-card::before {
  content: "";
  position: absolute;
  inset: 34px 34px -20px -20px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.youth-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.17), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.youth-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.youth-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.youth-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: youthCardFloat 4.7s ease-in-out infinite;
}

.youth-card-1 {
  left: -24px;
  top: 95px;
}

.youth-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes youthCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.youth-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.youth-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.youth-floating-card strong,
.youth-floating-card span {
  display: block;
}

.youth-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.youth-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.youth-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

.youth-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.youth-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.youth-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* Content */

.youth-empowerment-content {
  position: relative;
  z-index: 2;
}

/* Section Badge */

.youth-empowerment-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.youth-empowerment-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.youth-empowerment-section .section-badge i {
  font-size: 14px;
}

/* Heading */

.youth-empowerment-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.youth-empowerment-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.youth-empowerment-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.youth-empowerment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.youth-empowerment-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.youth-empowerment-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.youth-empowerment-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.youth-empowerment-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.youth-empowerment-item:hover::before {
  transform: scaleX(1);
}

.youth-empowerment-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

/* List Icons */

.youth-empowerment-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.youth-empowerment-item:hover .youth-empowerment-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.youth-empowerment-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.youth-empowerment-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.youth-empowerment-item div {
  position: relative;
  z-index: 2;
}

.youth-empowerment-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.youth-empowerment-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.youth-empowerment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.youth-empowerment-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.youth-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.youth-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.youth-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.youth-btn-main:hover::before {
  left: 130%;
}

.youth-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.youth-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .youth-empowerment-section {
    padding: 95px 0;
  }

  .youth-empowerment-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .youth-empowerment-content h2 {
    font-size: 42px;
  }

  .youth-empowerment-visual {
    min-height: 560px;
  }

  .youth-image-card {
    height: 560px;
  }

  .youth-floating-card {
    min-width: 230px;
  }

  .youth-card-1 {
    left: -8px;
  }

  .youth-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .youth-empowerment-section {
    padding: 84px 0;
  }

  .youth-empowerment-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .youth-empowerment-content {
    text-align: center;
    order: 1;
  }

  .youth-empowerment-visual {
    order: 2;
  }

  .youth-empowerment-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .youth-empowerment-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .youth-empowerment-actions {
    justify-content: center;
  }

  .youth-empowerment-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .youth-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .youth-empowerment-section {
    padding: 68px 0;
  }

  .youth-bg-shape {
    display: none;
  }

  .youth-empowerment-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .youth-empowerment-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .youth-empowerment-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .youth-empowerment-visual {
    width: 100%;
  }

  .youth-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .youth-image-card::before {
    inset: 25px 25px -10px -10px;
    border-radius: 30px;
  }

  .youth-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .youth-image-card img {
    border-radius: 23px;
  }

  .youth-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .youth-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .youth-empowerment-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .youth-empowerment-section {
    padding: 58px 0;
  }

  .youth-empowerment-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .youth-empowerment-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .youth-empowerment-content h2 {
    font-size: 30px;
  }

  .youth-empowerment-content > p {
    font-size: 14.5px;
  }

  .youth-empowerment-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .youth-empowerment-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .youth-empowerment-item h4 {
    font-size: 15.5px;
  }

  .youth-empowerment-item p {
    font-size: 13.2px;
  }

  .youth-image-card {
    height: 315px;
  }

  .youth-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .youth-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .youth-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .youth-stats-card h3 {
    font-size: 19px;
  }

  .youth-stats-card p {
    font-size: 12px;
  }

  .youth-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .youth-empowerment-content h2 {
    font-size: 27px;
  }

  .youth-image-card {
    height: 285px;
  }

  .youth-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= YOUTH EMPOWERMENT SECTION END ================= */


/* ================= COMMUNITY WELFARE SECTION START ================= */

.community-welfare-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 50%, var(--body-bg) 100%);
  overflow: hidden;
}

.community-welfare-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.community-welfare-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.community-welfare-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.community-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: communityBgFloat 7s ease-in-out infinite;
}

.community-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.community-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes communityBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Layout */

.community-welfare-wrapper {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 62px;
  align-items: center;
}

/* Content */

.community-welfare-content {
  position: relative;
  z-index: 2;
}

/* Section Badge */

.community-welfare-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.community-welfare-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.community-welfare-section .section-badge i {
  font-size: 14px;
}

/* Heading */

.community-welfare-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.community-welfare-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.community-welfare-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.community-welfare-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.community-welfare-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.community-welfare-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.community-welfare-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.community-welfare-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.community-welfare-item:hover::before {
  transform: scaleX(1);
}

.community-welfare-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

/* List Icons */

.community-welfare-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.community-welfare-item:hover .community-welfare-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.community-welfare-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.community-welfare-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.community-welfare-item div {
  position: relative;
  z-index: 2;
}

.community-welfare-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.community-welfare-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.community-welfare-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.community-welfare-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.community-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.community-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.community-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.community-btn-main:hover::before {
  left: 130%;
}

.community-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.community-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Visual */

.community-welfare-visual {
  position: relative;
  min-height: 610px;
}

.community-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.community-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.community-image-card::before {
  content: "";
  position: absolute;
  inset: 34px -20px -20px 34px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.community-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.17), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.community-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.community-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.community-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: communityCardFloat 4.7s ease-in-out infinite;
}

.community-card-1 {
  left: -24px;
  top: 95px;
}

.community-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes communityCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.community-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.community-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.community-floating-card strong,
.community-floating-card span {
  display: block;
}

.community-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.community-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.community-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

.community-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.community-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.community-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .community-welfare-section {
    padding: 95px 0;
  }

  .community-welfare-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .community-welfare-content h2 {
    font-size: 42px;
  }

  .community-welfare-visual {
    min-height: 560px;
  }

  .community-image-card {
    height: 560px;
  }

  .community-floating-card {
    min-width: 230px;
  }

  .community-card-1 {
    left: -8px;
  }

  .community-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .community-welfare-section {
    padding: 84px 0;
  }

  .community-welfare-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .community-welfare-content {
    text-align: center;
  }

  .community-welfare-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .community-welfare-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .community-welfare-actions {
    justify-content: center;
  }

  .community-welfare-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .community-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .community-welfare-section {
    padding: 68px 0;
  }

  .community-bg-shape {
    display: none;
  }

  .community-welfare-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .community-welfare-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .community-welfare-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .community-welfare-visual {
    width: 100%;
  }

  .community-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .community-image-card::before {
    inset: 25px -10px -10px 25px;
    border-radius: 30px;
  }

  .community-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .community-image-card img {
    border-radius: 23px;
  }

  .community-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .community-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .community-welfare-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .community-welfare-section {
    padding: 58px 0;
  }

  .community-welfare-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .community-welfare-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .community-welfare-content h2 {
    font-size: 30px;
  }

  .community-welfare-content > p {
    font-size: 14.5px;
  }

  .community-welfare-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .community-welfare-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .community-welfare-item h4 {
    font-size: 15.5px;
  }

  .community-welfare-item p {
    font-size: 13.2px;
  }

  .community-image-card {
    height: 315px;
  }

  .community-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .community-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .community-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .community-stats-card h3 {
    font-size: 19px;
  }

  .community-stats-card p {
    font-size: 12px;
  }

  .community-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .community-welfare-content h2 {
    font-size: 27px;
  }

  .community-image-card {
    height: 285px;
  }

  .community-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= COMMUNITY WELFARE SECTION END ================= */


/* ================= SOCIAL AWARENESS SECTION START ================= */

.social-awareness-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.social-awareness-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.social-awareness-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.social-awareness-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.social-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: socialBgFloat 7s ease-in-out infinite;
}

.social-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.social-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes socialBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Layout */

.social-awareness-wrapper {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 62px;
  align-items: center;
}

/* Visual */

.social-awareness-visual {
  position: relative;
  min-height: 610px;
}

.social-image-card {
  position: relative;
  height: 610px;
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: var(--transition);
  isolation: isolate;
}

.social-image-card:hover {
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    0 30px 85px rgba(37, 99, 235, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.10);
}

.social-image-card::before {
  content: "";
  position: absolute;
  inset: 34px 34px -20px -20px;
  border-radius: 44px;
  background: var(--primary-gradient);
  opacity: 0.12;
  z-index: -1;
}

.social-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.17), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.social-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  transition: 0.8s ease;
}

.social-image-card:hover img {
  transform: scale(1.07);
}

/* Floating Cards */

.social-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: socialCardFloat 4.7s ease-in-out infinite;
}

.social-card-1 {
  left: -24px;
  top: 95px;
}

.social-card-2 {
  right: -18px;
  bottom: 135px;
  animation-delay: 1.2s;
}

@keyframes socialCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.social-floating-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.social-floating-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.social-floating-card strong,
.social-floating-card span {
  display: block;
}

.social-floating-card strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.social-floating-card span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Stats Card */

.social-stats-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

.social-stats-card h3 {
  margin: 0 0 4px;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 950;
}

.social-stats-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.social-stats-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

/* Content */

.social-awareness-content {
  position: relative;
  z-index: 2;
}

/* Section Badge */

.social-awareness-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.social-awareness-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.social-awareness-section .section-badge i {
  font-size: 14px;
}

/* Heading */

.social-awareness-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.social-awareness-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-awareness-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List Cards */

.social-awareness-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.social-awareness-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.social-awareness-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.social-awareness-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.social-awareness-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.social-awareness-item:hover::before {
  transform: scaleX(1);
}

.social-awareness-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

/* List Icons */

.social-awareness-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.social-awareness-item:hover .social-awareness-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.social-awareness-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.social-awareness-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.social-awareness-item div {
  position: relative;
  z-index: 2;
}

.social-awareness-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.social-awareness-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.social-awareness-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.social-awareness-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.social-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.social-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.social-btn-main:hover::before {
  left: 130%;
}

.social-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.social-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .social-awareness-section {
    padding: 95px 0;
  }

  .social-awareness-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .social-awareness-content h2 {
    font-size: 42px;
  }

  .social-awareness-visual {
    min-height: 560px;
  }

  .social-image-card {
    height: 560px;
  }

  .social-floating-card {
    min-width: 230px;
  }

  .social-card-1 {
    left: -8px;
  }

  .social-card-2 {
    right: -8px;
  }
}

@media (max-width: 991px) {
  .social-awareness-section {
    padding: 84px 0;
  }

  .social-awareness-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .social-awareness-content {
    text-align: center;
    order: 1;
  }

  .social-awareness-visual {
    order: 2;
  }

  .social-awareness-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .social-awareness-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .social-awareness-actions {
    justify-content: center;
  }

  .social-awareness-visual {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
  }

  .social-image-card {
    height: 520px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .social-awareness-section {
    padding: 68px 0;
  }

  .social-bg-shape {
    display: none;
  }

  .social-awareness-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .social-awareness-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .social-awareness-item {
    text-align: left;
    padding: 18px;
    border-radius: 22px;
  }

  .social-awareness-visual {
    width: 100%;
  }

  .social-image-card {
    height: 390px;
    padding: 10px;
    border-radius: 30px;
  }

  .social-image-card::before {
    inset: 25px 25px -10px -10px;
    border-radius: 30px;
  }

  .social-image-card::after {
    inset: 10px;
    border-radius: 23px;
  }

  .social-image-card img {
    border-radius: 23px;
  }

  .social-floating-card {
    position: static;
    width: 100%;
    min-width: auto;
    margin-top: 14px;
    animation: none;
  }

  .social-stats-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .social-awareness-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .social-awareness-section {
    padding: 58px 0;
  }

  .social-awareness-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .social-awareness-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .social-awareness-content h2 {
    font-size: 30px;
  }

  .social-awareness-content > p {
    font-size: 14.5px;
  }

  .social-awareness-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .social-awareness-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .social-awareness-item h4 {
    font-size: 15.5px;
  }

  .social-awareness-item p {
    font-size: 13.2px;
  }

  .social-image-card {
    height: 315px;
  }

  .social-floating-card {
    padding: 15px;
    border-radius: 22px;
  }

  .social-floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .social-stats-card {
    padding: 16px;
    border-radius: 22px;
  }

  .social-stats-card h3 {
    font-size: 19px;
  }

  .social-stats-card p {
    font-size: 12px;
  }

  .social-stats-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .social-awareness-content h2 {
    font-size: 27px;
  }

  .social-image-card {
    height: 285px;
  }

  .social-stats-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= SOCIAL AWARENESS SECTION END ================= */

/* ================= INITIATIVES SECTION END ================= */

/* ================= EVENT SECTION START ================= */


/* ================= UPCOMING EVENT SECTION START ================= */

.upcoming-event-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 50%, var(--body-bg) 100%);
  overflow: hidden;
}

.upcoming-event-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.upcoming-event-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.upcoming-event-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.event-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: eventBgFloat 7s ease-in-out infinite;
}

.event-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.event-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes eventBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.upcoming-event-head {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.upcoming-event-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.upcoming-event-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.upcoming-event-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.upcoming-event-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.upcoming-event-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Main Wrapper */

.upcoming-event-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

/* Featured Event */

.featured-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  min-height: 560px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.featured-event-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: 3;
}

.featured-event-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.featured-event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.54) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.featured-event-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.8s ease;
}

.featured-event-card:hover .featured-event-image img {
  transform: scale(1.07);
}

.event-date-box {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 5;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  color: var(--white-color);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.30);
}

.event-date-box strong {
  display: block;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.event-date-box span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.event-status-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 850;
}

/* Featured Content */

.featured-event-content {
  position: relative;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event-content::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.event-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.07);
  color: var(--primary-color);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12.5px;
  font-weight: 850;
}

.featured-event-content h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: var(--heading-color);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -1px;
}

.featured-event-content > p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.78;
}

.event-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.event-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.event-info-item i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.event-info-item:nth-child(2) i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.event-info-item strong,
.event-info-item span {
  display: block;
}

.event-info-item strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 950;
}

.event-info-item span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 650;
}

/* Buttons */

.featured-event-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.featured-event-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 23px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.event-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.event-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.event-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.event-btn-main:hover::before {
  left: 130%;
}

.event-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.event-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Side Event List */

.event-side-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.event-mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr 46px;
  gap: 16px;
  align-items: center;
  min-height: 174px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.event-mini-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 5px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.event-mini-card::after {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.event-mini-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 26px 64px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.event-mini-card:hover::before {
  transform: scaleX(1);
}

.event-mini-card:hover::after {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.event-mini-date {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 86px;
  border-radius: 23px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.event-mini-date.green {
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.event-mini-date.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
}

.event-mini-date strong {
  display: block;
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
}

.event-mini-date span {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.55px;
}

.event-mini-content {
  position: relative;
  z-index: 2;
}

.event-mini-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.event-mini-tag.green {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border-color: rgba(34, 197, 94, 0.14);
}

.event-mini-tag.sky {
  color: var(--secondary-color);
  background: rgba(14, 165, 233, 0.09);
  border-color: rgba(14, 165, 233, 0.14);
}

.event-mini-content h4 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.32;
  letter-spacing: -0.25px;
}

.event-mini-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
}

.event-mini-content p i {
  color: var(--primary-color);
}

.event-mini-link {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition);
}

.event-mini-link:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: rotate(12deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .upcoming-event-section {
    padding: 95px 0;
  }

  .upcoming-event-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-event-card {
    min-height: auto;
  }

  .event-side-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .event-mini-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .event-mini-link {
    position: absolute;
    right: 22px;
    top: 22px;
  }
}

@media (max-width: 991px) {
  .upcoming-event-section {
    padding: 84px 0;
  }

  .upcoming-event-head {
    margin-bottom: 44px;
  }

  .featured-event-card {
    grid-template-columns: 1fr;
  }

  .featured-event-image,
  .featured-event-image img {
    min-height: 430px;
  }

  .event-side-list {
    grid-template-columns: 1fr;
  }

  .event-mini-card {
    grid-template-columns: 86px 1fr 46px;
  }

  .event-mini-link {
    position: relative;
    right: auto;
    top: auto;
  }
}

@media (max-width: 767px) {
  .upcoming-event-section {
    padding: 68px 0;
  }

  .event-bg-shape {
    display: none;
  }

  .upcoming-event-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .upcoming-event-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .featured-event-card {
    border-radius: 28px;
  }

  .featured-event-card::before {
    inset: 12px;
    border-radius: 22px;
  }

  .featured-event-image,
  .featured-event-image img {
    min-height: 340px;
  }

  .featured-event-content {
    padding: 28px;
  }

  .event-info-grid {
    grid-template-columns: 1fr;
  }

  .featured-event-actions .btn {
    width: 100%;
  }

  .event-mini-card {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 26px;
  }

  .event-mini-link {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 575px) {
  .upcoming-event-section {
    padding: 58px 0;
  }

  .upcoming-event-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .upcoming-event-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .upcoming-event-head h2 {
    font-size: 30px;
  }

  .upcoming-event-head p {
    font-size: 14.5px;
  }

  .featured-event-image,
  .featured-event-image img {
    min-height: 285px;
  }

  .event-date-box {
    left: 16px;
    top: 16px;
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .event-date-box strong {
    font-size: 25px;
  }

  .event-date-box span {
    font-size: 10px;
  }

  .event-status-badge {
    left: 16px;
    bottom: 16px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .featured-event-content {
    padding: 24px 20px;
  }

  .event-meta span {
    width: 100%;
  }

  .featured-event-content h3 {
    font-size: 25px;
  }

  .featured-event-content > p {
    font-size: 14px;
  }

  .event-info-item {
    padding: 14px;
  }

  .event-mini-date {
    width: 72px;
    height: 78px;
    border-radius: 20px;
  }

  .event-mini-date strong {
    font-size: 24px;
  }

  .event-mini-content h4 {
    font-size: 16px;
    padding-right: 48px;
  }
}

@media (max-width: 380px) {
  .upcoming-event-head h2 {
    font-size: 27px;
  }

  .featured-event-image,
  .featured-event-image img {
    min-height: 250px;
  }

  .event-info-item {
    flex-direction: column;
  }
}

/* ================= UPCOMING EVENT SECTION END ================= */


/* ================= ONGOING EVENTS SECTION START ================= */

.ongoing-event-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.ongoing-event-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.ongoing-event-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.ongoing-event-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.ongoing-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ongoingBgFloat 7s ease-in-out infinite;
}

.ongoing-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.ongoing-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes ongoingBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.ongoing-event-head {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.ongoing-event-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ongoing-event-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.ongoing-event-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.ongoing-event-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ongoing-event-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Main Wrapper */

.ongoing-event-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: stretch;
}

/* Feature Card */

.ongoing-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 565px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.ongoing-feature-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: 4;
}

.ongoing-feature-image {
  position: relative;
  min-height: 565px;
  overflow: hidden;
}

.ongoing-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.ongoing-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 565px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.85s ease;
}

.ongoing-feature-card:hover .ongoing-feature-image img {
  transform: scale(1.07);
}

/* Live Badge */

.ongoing-live-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.22), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.30);
  font-size: 13px;
  font-weight: 900;
}

.ongoing-live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.70);
  animation: ongoingPulse 1.5s infinite;
}

@keyframes ongoingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.70);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.ongoing-date-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 5;
  width: calc(100% - 48px);
  padding: 17px 18px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white-color);
}

.ongoing-date-card strong {
  display: block;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.ongoing-date-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 850;
}

/* Feature Content */

.ongoing-feature-content {
  position: relative;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ongoing-feature-content::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.ongoing-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ongoing-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.07);
  color: var(--primary-color);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12.5px;
  font-weight: 850;
}

.ongoing-feature-content h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: var(--heading-color);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -1px;
}

.ongoing-feature-content > p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.78;
}

/* Progress */

.ongoing-progress-box {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 23px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.ongoing-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ongoing-progress-top span {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 900;
}

.ongoing-progress-top strong {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 950;
}

.ongoing-progress-line {
  width: 100%;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.ongoing-progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/* Info Grid */

.ongoing-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.ongoing-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-color);
}

.ongoing-info-item i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.ongoing-info-item:nth-child(2) i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.ongoing-info-item strong,
.ongoing-info-item span {
  display: block;
}

.ongoing-info-item strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 950;
}

.ongoing-info-item span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 650;
}

/* Buttons */

.ongoing-event-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ongoing-event-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 23px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.ongoing-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.ongoing-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.ongoing-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.ongoing-btn-main:hover::before {
  left: 130%;
}

.ongoing-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.ongoing-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Small Event List */

.ongoing-event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ongoing-small-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr 46px;
  gap: 16px;
  align-items: center;
  min-height: 174px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.ongoing-small-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 5px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.ongoing-small-card::after {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.ongoing-small-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 26px 64px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.ongoing-small-card:hover::before {
  transform: scaleX(1);
}

.ongoing-small-card:hover::after {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.ongoing-small-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 22px;
}

.ongoing-small-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.ongoing-small-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
}

.ongoing-small-content {
  position: relative;
  z-index: 2;
}

.ongoing-small-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.ongoing-small-tag.green {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border-color: rgba(34, 197, 94, 0.14);
}

.ongoing-small-tag.sky {
  color: var(--secondary-color);
  background: rgba(14, 165, 233, 0.09);
  border-color: rgba(14, 165, 233, 0.14);
}

.ongoing-small-content h4 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.32;
  letter-spacing: -0.25px;
}

.ongoing-small-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
}

.ongoing-small-content p i {
  color: var(--primary-color);
}

.ongoing-small-link {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition);
}

.ongoing-small-link:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: rotate(12deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .ongoing-event-section {
    padding: 95px 0;
  }

  .ongoing-event-wrapper {
    grid-template-columns: 1fr;
  }

  .ongoing-feature-card {
    min-height: auto;
  }

  .ongoing-event-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .ongoing-small-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ongoing-small-link {
    position: absolute;
    right: 22px;
    top: 22px;
  }
}

@media (max-width: 991px) {
  .ongoing-event-section {
    padding: 84px 0;
  }

  .ongoing-event-head {
    margin-bottom: 44px;
  }

  .ongoing-feature-card {
    grid-template-columns: 1fr;
  }

  .ongoing-feature-image,
  .ongoing-feature-image img {
    min-height: 430px;
  }

  .ongoing-event-list {
    grid-template-columns: 1fr;
  }

  .ongoing-small-card {
    grid-template-columns: 62px 1fr 46px;
  }

  .ongoing-small-link {
    position: relative;
    right: auto;
    top: auto;
  }
}

@media (max-width: 767px) {
  .ongoing-event-section {
    padding: 68px 0;
  }

  .ongoing-bg-shape {
    display: none;
  }

  .ongoing-event-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .ongoing-event-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .ongoing-feature-card {
    border-radius: 28px;
  }

  .ongoing-feature-card::before {
    inset: 12px;
    border-radius: 22px;
  }

  .ongoing-feature-image,
  .ongoing-feature-image img {
    min-height: 340px;
  }

  .ongoing-feature-content {
    padding: 28px;
  }

  .ongoing-info-grid {
    grid-template-columns: 1fr;
  }

  .ongoing-event-actions .btn {
    width: 100%;
  }

  .ongoing-small-card {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 26px;
  }

  .ongoing-small-link {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 575px) {
  .ongoing-event-section {
    padding: 58px 0;
  }

  .ongoing-event-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .ongoing-event-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .ongoing-event-head h2 {
    font-size: 30px;
  }

  .ongoing-event-head p {
    font-size: 14.5px;
  }

  .ongoing-feature-image,
  .ongoing-feature-image img {
    min-height: 285px;
  }

  .ongoing-live-badge {
    left: 16px;
    top: 16px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .ongoing-date-card {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 14px 15px;
    border-radius: 21px;
  }

  .ongoing-date-card strong {
    font-size: 27px;
  }

  .ongoing-date-card span {
    font-size: 12px;
  }

  .ongoing-feature-content {
    padding: 24px 20px;
  }

  .ongoing-meta span {
    width: 100%;
  }

  .ongoing-feature-content h3 {
    font-size: 25px;
  }

  .ongoing-feature-content > p {
    font-size: 14px;
  }

  .ongoing-progress-box {
    padding: 15px;
  }

  .ongoing-info-item {
    padding: 14px;
  }

  .ongoing-small-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 20px;
  }

  .ongoing-small-content h4 {
    font-size: 16px;
    padding-right: 48px;
  }
}

@media (max-width: 380px) {
  .ongoing-event-head h2 {
    font-size: 27px;
  }

  .ongoing-feature-image,
  .ongoing-feature-image img {
    min-height: 250px;
  }

  .ongoing-info-item {
    flex-direction: column;
  }
}

/* ================= ONGOING EVENTS SECTION END ================= */

/* ================= COMPLETED EVENTS SECTION START ================= */

.completed-event-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 50%, var(--body-bg) 100%);
  overflow: hidden;
}

.completed-event-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.completed-event-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.completed-event-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.completed-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: completedBgFloat 7s ease-in-out infinite;
}

.completed-bg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.completed-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes completedBgFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.completed-event-head {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.completed-event-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.completed-event-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.completed-event-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.completed-event-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.completed-event-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Featured Completed Event */

.completed-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  margin-bottom: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.completed-feature-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: 4;
}

.completed-feature-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.completed-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.completed-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.85s ease;
}

.completed-feature-card:hover .completed-feature-image img {
  transform: scale(1.07);
}

.completed-status-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.22), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.30);
  font-size: 13px;
  font-weight: 900;
}

.completed-date-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 5;
  width: calc(100% - 48px);
  padding: 17px 18px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white-color);
}

.completed-date-card strong {
  display: block;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.completed-date-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 850;
}

/* Content */

.completed-feature-content {
  position: relative;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.completed-feature-content::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.completed-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.completed-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.07);
  color: var(--primary-color);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12.5px;
  font-weight: 850;
}

.completed-feature-content h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: var(--heading-color);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -1px;
}

.completed-feature-content > p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.78;
}

/* Impact */

.completed-impact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.completed-impact-item {
  padding: 18px 14px;
  border-radius: 22px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.completed-impact-item:hover {
  transform: translateY(-5px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.completed-impact-item i {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.completed-impact-item:nth-child(2) i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.completed-impact-item:nth-child(3) i {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.completed-impact-item strong,
.completed-impact-item span {
  display: block;
}

.completed-impact-item strong {
  color: var(--heading-color);
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}

.completed-impact-item span {
  margin-top: 6px;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 700;
}

/* Buttons */

.completed-event-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.completed-event-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 23px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.completed-btn-main {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.completed-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-22deg);
  transition: 0.75s ease;
}

.completed-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.completed-btn-main:hover::before {
  left: 130%;
}

.completed-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.completed-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Completed Grid */

.completed-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.completed-event-card {
  position: relative;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.completed-event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 26px 64px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.completed-card-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.completed-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.55) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), transparent 60%);
  pointer-events: none;
}

.completed-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.8s ease;
}

.completed-event-card:hover .completed-card-image img {
  transform: scale(1.08);
}

.completed-card-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 850;
}

.completed-card-content {
  padding: 24px;
}

.completed-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 13px;
}

.completed-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12px;
  font-weight: 850;
}

.completed-card-content h4 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.32;
  letter-spacing: -0.35px;
}

.completed-card-content p {
  margin: 0 0 18px;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

.completed-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-size: 13.5px;
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition);
}

.completed-card-content a:hover {
  gap: 11px;
  color: var(--accent-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .completed-event-section {
    padding: 95px 0;
  }

  .completed-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .completed-feature-image,
  .completed-feature-image img {
    min-height: 430px;
  }

  .completed-event-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .completed-card-content {
    padding: 22px;
  }
}

@media (max-width: 991px) {
  .completed-event-section {
    padding: 84px 0;
  }

  .completed-event-head {
    margin-bottom: 44px;
  }

  .completed-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .completed-impact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .completed-event-section {
    padding: 68px 0;
  }

  .completed-bg-shape {
    display: none;
  }

  .completed-event-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .completed-event-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .completed-feature-card {
    border-radius: 28px;
  }

  .completed-feature-card::before {
    inset: 12px;
    border-radius: 22px;
  }

  .completed-feature-image,
  .completed-feature-image img {
    min-height: 340px;
  }

  .completed-feature-content {
    padding: 28px;
  }

  .completed-impact-grid {
    grid-template-columns: 1fr;
  }

  .completed-event-actions .btn {
    width: 100%;
  }

  .completed-event-grid {
    grid-template-columns: 1fr;
  }

  .completed-card-image {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .completed-event-section {
    padding: 58px 0;
  }

  .completed-event-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .completed-event-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .completed-event-head h2 {
    font-size: 30px;
  }

  .completed-event-head p {
    font-size: 14.5px;
  }

  .completed-feature-image,
  .completed-feature-image img {
    min-height: 285px;
  }

  .completed-status-badge {
    left: 16px;
    top: 16px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .completed-date-card {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 14px 15px;
    border-radius: 21px;
  }

  .completed-date-card strong {
    font-size: 27px;
  }

  .completed-date-card span {
    font-size: 12px;
  }

  .completed-feature-content {
    padding: 24px 20px;
  }

  .completed-meta span {
    width: 100%;
  }

  .completed-feature-content h3 {
    font-size: 25px;
  }

  .completed-feature-content > p {
    font-size: 14px;
  }

  .completed-impact-item {
    padding: 16px 14px;
  }

  .completed-card-image {
    height: 230px;
  }

  .completed-card-content {
    padding: 21px;
  }

  .completed-card-content h4 {
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  .completed-event-head h2 {
    font-size: 27px;
  }

  .completed-feature-image,
  .completed-feature-image img {
    min-height: 250px;
  }

  .completed-card-image {
    height: 210px;
  }
}

/* ================= COMPLETED EVENTS SECTION END ================= */


/* ================= EVENT CATEGORY MANAGEMENT SECTION START ================= */

.event-category-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.event-category-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.event-category-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.event-category-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.event-category-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: eventCategoryFloat 7s ease-in-out infinite;
}

.event-category-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.event-category-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes eventCategoryFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.event-category-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.event-category-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.event-category-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.event-category-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.event-category-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-category-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.event-category-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: stretch;
}

/* Left Panel */

.event-category-panel {
  position: relative;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.event-category-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.category-panel-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.category-panel-top h3 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.7px;
}

.category-panel-top p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
}

.category-add-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: var(--transition);
}

.category-add-btn:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.35);
}

/* Category Rows */

.category-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.category-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr 54px;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border-radius: 25px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.category-row::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.category-row::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -64px;
  top: -64px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.category-row:hover,
.category-row.active {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.category-row:hover::before,
.category-row.active::before {
  transform: scaleX(1);
}

.category-row:hover::after,
.category-row.active::after {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.category-row-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.category-row-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
}

.category-row-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.category-row-content {
  position: relative;
  z-index: 2;
}

.category-row-content h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.category-row-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.category-row-count {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  color: var(--primary-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  font-size: 16px;
  font-weight: 950;
}

/* Right Dashboard */

.event-category-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dashboard-card-main {
  position: relative;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.13),
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.dashboard-card-main::before {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.10);
}

.dashboard-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.dashboard-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.dashboard-top h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 27px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.6px;
}

.dashboard-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Progress */

.dashboard-progress-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.dashboard-progress-item {
  padding: 17px;
  border-radius: 23px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.progress-info span {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 900;
}

.progress-info strong {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 950;
}

.progress-line {
  width: 100%;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary-gradient);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.progress-line.green span {
  background: var(--green-gradient);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.22);
}

.progress-line.sky span {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.22);
}

/* Stats */

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.dashboard-stat-card {
  padding: 22px 16px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}

.dashboard-stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 56px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.dashboard-stat-card i {
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 20px;
}

.dashboard-stat-card.green i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.dashboard-stat-card.sky i {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.dashboard-stat-card strong {
  display: block;
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.dashboard-stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 750;
}

/* Action Strip */

.category-action-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
  overflow: hidden;
}

.category-action-strip::before {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.category-action-strip h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 950;
}

.category-action-strip p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.55;
}

.category-strip-btn {
  position: relative;
  z-index: 2;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  transition: var(--transition);
  white-space: nowrap;
}

.category-strip-btn:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .event-category-section {
    padding: 95px 0;
  }

  .event-category-wrapper {
    grid-template-columns: 1fr;
  }

  .event-category-dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .event-category-section {
    padding: 84px 0;
  }

  .event-category-head {
    margin-bottom: 44px;
  }

  .dashboard-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .event-category-section {
    padding: 68px 0;
  }

  .event-category-shape {
    display: none;
  }

  .event-category-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .event-category-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .event-category-panel,
  .dashboard-card-main {
    padding: 24px;
    border-radius: 28px;
  }

  .category-panel-top,
  .dashboard-top,
  .category-action-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-add-btn,
  .category-strip-btn {
    width: 100%;
  }

  .category-row {
    grid-template-columns: 56px 1fr;
  }

  .category-row-count {
    grid-column: 1 / -1;
    width: 100%;
    height: 42px;
    justify-self: stretch;
  }

  .dashboard-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .event-category-section {
    padding: 58px 0;
  }

  .event-category-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .event-category-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .event-category-head h2 {
    font-size: 30px;
  }

  .event-category-head p {
    font-size: 14.5px;
  }

  .category-panel-top h3,
  .dashboard-top h3 {
    font-size: 23px;
  }

  .event-category-panel,
  .dashboard-card-main {
    padding: 20px;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 17px;
  }

  .category-row-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
    font-size: 20px;
  }

  .dashboard-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 19px;
    font-size: 23px;
  }

  .category-action-strip {
    padding: 21px;
    border-radius: 26px;
  }

  .category-action-strip h4 {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .event-category-head h2 {
    font-size: 27px;
  }

  .category-row-content h4 {
    font-size: 15.5px;
  }

  .category-row-content p {
    font-size: 12.8px;
  }
}

/* ================= EVENT CATEGORY MANAGEMENT SECTION END ================= */


/* ================= REGISTRATION ENQUIRY CTA SECTION START ================= */

.registration-cta-section,
.registration-cta-section * {
  box-sizing: border-box;
}

.registration-cta-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.registration-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.registration-cta-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.registration-cta-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.registration-cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: registrationCtaFloat 7s ease-in-out infinite;
}

.registration-cta-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.registration-cta-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes registrationCtaFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.registration-cta-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 46px;
  align-items: center;
}

/* Content */

.registration-cta-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.registration-cta-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.registration-cta-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.registration-cta-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.registration-cta-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.registration-cta-content > p {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.registration-cta-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.registration-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.registration-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.registration-point:hover::before {
  transform: scaleX(1);
}

.registration-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.registration-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.registration-point-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.registration-point-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.registration-point:hover .registration-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.registration-point div {
  position: relative;
  z-index: 2;
}

.registration-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.registration-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RIGHT FORM FIXED ================= */

.registration-cta-form-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.registration-cta-form-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.registration-cta-form-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

.registration-form-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.registration-form-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.registration-form-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.7px;
}

.registration-form-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Form */

.registration-form {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.registration-form .form-group {
  min-width: 0;
  margin-bottom: 14px;
}

.registration-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 900;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 16px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.registration-form select {
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
    linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.registration-form textarea {
  min-height: 105px;
  resize: vertical;
}

.registration-form input::placeholder,
.registration-form textarea::placeholder {
  color: var(--text-light);
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  background-color: var(--white-color);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.08),
    var(--shadow-sm);
}

.registration-submit-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  border: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.registration-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

/* Contact Strip */

.registration-contact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.registration-contact-strip a {
  min-width: 0;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 900;
  white-space: nowrap;
  transition: var(--transition);
}

.registration-contact-strip a:nth-child(2) {
  color: var(--accent-color);
}

.registration-contact-strip a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
}

.registration-contact-strip a:nth-child(2):hover {
  background: var(--green-gradient);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .registration-cta-section {
    padding: 80px 0;
  }

  .registration-cta-wrapper {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 32px;
  }

  .registration-cta-form-card {
    padding: 26px;
  }

  .registration-form input,
  .registration-form select,
  .registration-form textarea {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .registration-cta-section {
    padding: 74px 0;
  }

  .registration-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .registration-cta-content {
    text-align: center;
  }

  .registration-cta-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .registration-cta-points {
    max-width: 760px;
    margin: 0 auto;
  }

  .registration-cta-form-card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .registration-cta-section {
    padding: 62px 0;
  }

  .registration-cta-shape {
    display: none;
  }

  .registration-cta-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .registration-cta-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .registration-cta-form-card {
    padding: 22px;
    border-radius: 28px;
  }

  .registration-form-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .registration-form-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 19px;
    font-size: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .registration-contact-strip {
    grid-template-columns: 1fr;
  }

  .registration-contact-strip a,
  .registration-submit-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .registration-cta-section {
    padding: 54px 0;
  }

  .registration-cta-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .registration-cta-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .registration-cta-content h2 {
    font-size: 30px;
  }

  .registration-cta-content > p {
    font-size: 14.5px;
  }

  .registration-point {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .registration-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .registration-cta-form-card {
    padding: 18px;
    border-radius: 24px;
  }

  .registration-form-head h3 {
    font-size: 23px;
  }

  .registration-form label {
    font-size: 12.5px;
  }

  .registration-form input,
  .registration-form select {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .registration-form textarea {
    min-height: 96px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .registration-submit-btn,
  .registration-contact-strip a {
    min-height: 48px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .registration-cta-content h2 {
    font-size: 27px;
  }

  .registration-cta-form-card {
    padding: 16px;
  }

  .registration-form-head h3 {
    font-size: 21px;
  }

  .registration-submit-btn,
  .registration-contact-strip a {
    font-size: 12.5px;
  }
}

/* ================= REGISTRATION ENQUIRY CTA SECTION END ================= */


/* ================= ADMIN FEATURES SECTION START ================= */

.admin-features-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.admin-features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.admin-features-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.admin-features-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.admin-feature-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: adminFeatureFloat 7s ease-in-out infinite;
}

.admin-feature-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.admin-feature-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes adminFeatureFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.admin-features-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.admin-features-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-features-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.admin-features-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.admin-features-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-features-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.admin-features-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

/* Feature Grid */

.admin-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.admin-feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.admin-feature-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 5px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.admin-feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -75px;
  top: -75px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.admin-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 26px 64px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.admin-feature-card:hover::before {
  transform: scaleX(1);
}

.admin-feature-card:hover::after {
  transform: scale(1.18);
  background: rgba(34, 197, 94, 0.10);
}

.admin-feature-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 23px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.admin-feature-card:hover .admin-feature-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.admin-feature-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
}

.admin-feature-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.admin-feature-icon.dark {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.20), transparent 36%),
    linear-gradient(135deg, var(--heading-color), var(--footer-bg));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.20);
}

.admin-feature-content {
  position: relative;
  z-index: 2;
}

.admin-feature-content span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.admin-feature-content h3 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: -0.35px;
}

.admin-feature-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.68;
}

/* Admin Preview Card */

.admin-preview-card {
  position: relative;
  padding: 30px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.admin-preview-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.admin-preview-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
}

/* Preview Top */

.admin-preview-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-preview-top span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.admin-preview-top h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.7px;
}

.admin-preview-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Toolbar */

.admin-preview-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-bottom: 18px;
}

.toolbar-search {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 17px;
  color: var(--text-light);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  font-size: 13.5px;
  font-weight: 700;
}

.toolbar-search i {
  color: var(--primary-color);
}

.admin-preview-toolbar button {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-full);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.24);
  font-size: 13.5px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
}

.admin-preview-toolbar button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.34);
}

/* Table List */

.admin-table-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.admin-table-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 23px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}

.admin-table-row:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.20);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.10);
}

.admin-table-info {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.admin-table-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 19px;
}

.admin-table-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.admin-table-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.admin-table-info h4 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
}

.admin-table-info p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 650;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.admin-status.published {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
}

.admin-status.published span {
  background: var(--accent-color);
}

.admin-status.draft {
  color: var(--secondary-color);
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

.admin-status.draft span {
  background: var(--secondary-color);
}

.admin-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-actions a {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition);
}

.admin-actions a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

/* Preview Bottom */

.admin-preview-bottom {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 22px;
  border-radius: 26px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-preview-bottom strong,
.admin-preview-bottom span {
  display: block;
}

.admin-preview-bottom strong {
  margin-bottom: 5px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 950;
}

.admin-preview-bottom span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 650;
}

.admin-preview-bottom a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 17px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  transition: var(--transition);
}

.admin-preview-bottom a:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .admin-features-section {
    padding: 95px 0;
  }

  .admin-features-wrapper {
    grid-template-columns: 1fr;
  }

  .admin-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .admin-features-section {
    padding: 84px 0;
  }

  .admin-features-head {
    margin-bottom: 44px;
  }

  .admin-feature-grid {
    grid-template-columns: 1fr;
  }

  .admin-preview-card {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .admin-features-section {
    padding: 68px 0;
  }

  .admin-feature-shape {
    display: none;
  }

  .admin-features-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .admin-features-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .admin-feature-card {
    flex-direction: column;
    padding: 22px;
    border-radius: 26px;
  }

  .admin-preview-top,
  .admin-preview-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-preview-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-preview-toolbar button,
  .admin-preview-bottom a {
    width: 100%;
  }

  .admin-table-row {
    grid-template-columns: 1fr;
  }

  .admin-status {
    width: fit-content;
  }

  .admin-actions {
    width: 100%;
  }

  .admin-actions a {
    flex: 1;
  }
}

@media (max-width: 575px) {
  .admin-features-section {
    padding: 58px 0;
  }

  .admin-features-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .admin-features-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .admin-features-head h2 {
    font-size: 30px;
  }

  .admin-features-head p {
    font-size: 14.5px;
  }

  .admin-preview-card {
    padding: 20px;
    border-radius: 30px;
  }

  .admin-preview-top h3 {
    font-size: 24px;
  }

  .admin-preview-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 19px;
    font-size: 22px;
  }

  .admin-table-info {
    align-items: flex-start;
  }

  .admin-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    font-size: 21px;
  }

  .admin-feature-content h3 {
    font-size: 18px;
  }

  .admin-preview-bottom {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .admin-features-head h2 {
    font-size: 27px;
  }

  .admin-table-info {
    flex-direction: column;
  }
}

/* ================= ADMIN FEATURES SECTION END ================= */

/* ================= EVENT SECTION END ================= */

/* ================= CAMPAIGN SECTION START ================= */


/* ================= CAMPAIGN LISTING SECTION START ================= */

.campaign-listing-section,
.campaign-listing-section * {
  box-sizing: border-box;
}

.campaign-listing-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.campaign-listing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.campaign-listing-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.campaign-listing-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.campaign-listing-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: campaignListingFloat 7s ease-in-out infinite;
}

.campaign-listing-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.campaign-listing-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes campaignListingFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Section Head */

.campaign-listing-head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.campaign-listing-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.campaign-listing-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.campaign-listing-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size:40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.campaign-listing-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaign-listing-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Filter Strip */

.campaign-filter-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.campaign-filter-strip a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: var(--text-color);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.86), transparent 35%),
    rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  transition: var(--transition);
}

.campaign-filter-strip a:hover,
.campaign-filter-strip a.active {
  color: var(--white-color);
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
}

/* Campaign Grid */

.campaign-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.campaign-card {
  position: relative;
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.93);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.campaign-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.campaign-image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.campaign-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.56) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.85s ease;
}

.campaign-card:hover .campaign-image img {
  transform: scale(1.08);
}

.campaign-status {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.22), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
  font-size: 12px;
  font-weight: 900;
}

.campaign-category {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.campaign-category.green {
  background: rgba(34, 197, 94, 0.28);
}

.campaign-category.sky {
  background: rgba(14, 165, 233, 0.28);
}

/* Content */

.campaign-content {
  padding: 24px;
}

.campaign-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.campaign-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12px;
  font-weight: 850;
}

.campaign-content h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: -0.45px;
}

.campaign-content p {
  margin: 0 0 20px;
  color: var(--text-color);
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.68;
}

/* Progress */

.campaign-progress-box {
  padding: 17px;
  margin-bottom: 22px;
  border-radius: 23px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.campaign-progress-top,
.campaign-progress-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.campaign-progress-top {
  margin-bottom: 12px;
}

.campaign-progress-bottom {
  margin-top: 11px;
}

.campaign-progress-top span,
.campaign-progress-bottom span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 800;
}

.campaign-progress-top strong {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 950;
}

.campaign-progress-line {
  width: 100%;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.campaign-progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary-gradient);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.campaign-progress-line.green span {
  background: var(--green-gradient);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.22);
}

.campaign-progress-line.sky span {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.22);
}

/* Actions */

.campaign-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.campaign-btn-main,
.campaign-btn-soft {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.campaign-btn-main {
  position: relative;
  overflow: hidden;
  padding: 13px 19px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
}

.campaign-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.34);
}

.campaign-btn-soft {
  padding: 13px 18px;
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.campaign-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* Bottom CTA */

.campaign-listing-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 28px;
  border-radius: 32px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.26);
  overflow: hidden;
}

.campaign-listing-cta::before {
  content: "";
  position: absolute;
  right: -75px;
  top: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.campaign-listing-cta h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--white-color);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.7px;
}

.campaign-listing-cta p {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.65;
}

.campaign-cta-btn {
  position: relative;
  z-index: 2;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  transition: var(--transition);
}

.campaign-cta-btn:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .campaign-listing-section {
    padding: 90px 0;
  }

  .campaign-listing-grid {
    gap: 20px;
  }

  .campaign-content {
    padding: 22px;
  }

  .campaign-content h3 {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .campaign-listing-section {
    padding: 78px 0;
  }

  .campaign-listing-head {
    margin-bottom: 36px;
  }

  .campaign-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-listing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .campaign-cta-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .campaign-listing-section {
    padding: 64px 0;
  }

  .campaign-listing-shape {
    display: none;
  }

  .campaign-listing-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .campaign-listing-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .campaign-filter-strip {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 30px;
    scrollbar-width: none;
  }

  .campaign-filter-strip::-webkit-scrollbar {
    display: none;
  }

  .campaign-filter-strip a {
    white-space: nowrap;
  }

  .campaign-listing-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    border-radius: 28px;
  }

  .campaign-image {
    height: 235px;
  }

  .campaign-actions {
    grid-template-columns: 1fr;
  }

  .campaign-btn-main,
  .campaign-btn-soft {
    width: 100%;
  }

  .campaign-listing-cta {
    padding: 24px;
    border-radius: 28px;
  }

  .campaign-listing-cta h3 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .campaign-listing-section {
    padding: 54px 0;
  }

  .campaign-listing-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .campaign-listing-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .campaign-listing-head h2 {
    font-size: 30px;
  }

  .campaign-listing-head p {
    font-size: 14.5px;
  }

  .campaign-image {
    height: 215px;
  }

  .campaign-content {
    padding: 20px;
  }

  .campaign-content h3 {
    font-size: 18px;
  }

  .campaign-content p {
    font-size: 13.2px;
  }

  .campaign-meta span {
    width: 100%;
  }

  .campaign-progress-top,
  .campaign-progress-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .campaign-status,
  .campaign-category {
    font-size: 11px;
    padding: 7px 11px;
  }

  .campaign-listing-cta {
    padding: 21px;
    border-radius: 24px;
  }

  .campaign-listing-cta h3 {
    font-size: 20px;
  }

  .campaign-listing-cta p {
    font-size: 13.5px;
  }

  .campaign-cta-btn {
    min-height: 48px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .campaign-listing-head h2 {
    font-size: 27px;
  }

  .campaign-image {
    height: 195px;
  }

  .campaign-content {
    padding: 18px;
  }
}

/* ================= CAMPAIGN LISTING SECTION END ================= */

/* ================= CAMPAIGN DETAIL SECTION START ================= */

.campaign-detail-section,
.campaign-detail-section * {
  box-sizing: border-box;
}

.campaign-detail-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.campaign-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.campaign-detail-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.campaign-detail-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: campaignDetailFloat 7s ease-in-out infinite;
}

.campaign-detail-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.campaign-detail-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes campaignDetailFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Hero */

.campaign-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 36px;
}

.campaign-detail-image {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  padding: 14px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.campaign-detail-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.58) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.campaign-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 532px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  transition: 0.85s ease;
}

.campaign-detail-image:hover img {
  transform: scale(1.06);
}

.campaign-detail-status {
  position: absolute;
  left: 32px;
  top: 32px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.28);
  font-size: 12.5px;
  font-weight: 900;
}

.campaign-detail-category {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 5;
  display: inline-flex;
  padding: 10px 15px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12.5px;
  font-weight: 900;
}

/* Hero Content */

.campaign-detail-content {
  position: relative;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.campaign-detail-content::before {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.campaign-detail-section .section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.campaign-detail-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
}

.campaign-detail-content h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.campaign-detail-content h1 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaign-detail-content > p {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: var(--text-color);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.78;
}

.campaign-detail-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.campaign-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12.5px;
  font-weight: 850;
}

/* Donation Box */

.campaign-donation-box {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 28px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.campaign-donation-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.campaign-donation-top div {
  padding: 16px;
  border-radius: 20px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
}

.campaign-donation-top span,
.campaign-donation-top strong {
  display: block;
}

.campaign-donation-top span {
  margin-bottom: 7px;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 800;
}

.campaign-donation-top strong {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 950;
}

.campaign-progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
}

.campaign-progress-info span {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 900;
}

.campaign-progress-info strong {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 950;
}

.campaign-progress-track {
  width: 100%;
  height: 11px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.campaign-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.campaign-detail-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 22px;
}

.campaign-detail-btn-main,
.campaign-detail-btn-soft {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.campaign-detail-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
}

.campaign-detail-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.34);
}

.campaign-detail-btn-soft {
  padding: 13px 18px;
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.campaign-detail-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
}

/* Body */

.campaign-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.campaign-detail-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.campaign-story-card,
.campaign-impact-card,
.campaign-gallery-card,
.campaign-donate-card,
.campaign-organizer-card,
.related-campaign-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.93);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.campaign-story-card h2,
.campaign-card-head h2 {
  margin: 0 0 16px;
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.campaign-story-card p {
  margin: 0 0 16px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.82;
}

.campaign-story-highlight {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  color: var(--white-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.campaign-story-highlight i {
  font-size: 34px;
  line-height: 1;
}

.campaign-story-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

/* Impact */

.campaign-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.campaign-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.campaign-impact-item {
  padding: 20px;
  border-radius: 24px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.campaign-impact-item:hover {
  transform: translateY(-6px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.campaign-impact-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
}

.campaign-impact-icon.green {
  background: var(--green-gradient);
}

.campaign-impact-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.campaign-impact-item h3 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.campaign-impact-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  line-height: 1.65;
}

/* Gallery */

.campaign-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.campaign-gallery-grid img {
  width: 100%;
  height: 190px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* Sidebar */

.campaign-detail-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.campaign-donate-card h3,
.campaign-organizer-card h3,
.related-campaign-card h3 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.campaign-donate-card p,
.campaign-organizer-card p {
  margin: 0 0 18px;
  color: var(--text-color);
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.65;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.donation-amounts a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-weight: 950;
  transition: var(--transition);
}

.donation-amounts a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

.sidebar-donate-btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
}

.organizer-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 15px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  font-size: 24px;
}

.campaign-organizer-card h4 {
  margin: 0 0 10px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 950;
}

.organizer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.organizer-contact a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-weight: 900;
}

.organizer-contact a:nth-child(2) {
  color: var(--accent-color);
}

/* Related */

.related-campaign-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.related-campaign-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.related-campaign-item img {
  width: 76px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}

.related-campaign-item span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 900;
}

.related-campaign-item h4 {
  margin: 0;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .campaign-detail-section {
    padding: 90px 0;
  }

  .campaign-detail-hero {
    grid-template-columns: 1fr;
  }

  .campaign-detail-image {
    min-height: 470px;
  }

  .campaign-detail-image img {
    min-height: 442px;
  }

  .campaign-detail-body {
    grid-template-columns: 1fr;
  }

  .campaign-detail-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .campaign-detail-section {
    padding: 78px 0;
  }

  .campaign-detail-sidebar {
    grid-template-columns: 1fr;
  }

  .campaign-impact-grid {
    grid-template-columns: 1fr;
  }

  .campaign-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .campaign-detail-section {
    padding: 64px 0;
  }

  .campaign-detail-shape {
    display: none;
  }

  .campaign-detail-image {
    min-height: 350px;
    padding: 10px;
    border-radius: 28px;
  }

  .campaign-detail-image img {
    min-height: 330px;
    border-radius: 21px;
  }

  .campaign-detail-image::after {
    inset: 10px;
    border-radius: 21px;
  }

  .campaign-detail-content {
    padding: 24px;
    border-radius: 28px;
  }

  .campaign-detail-content h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .campaign-donation-top {
    grid-template-columns: 1fr;
  }

  .campaign-detail-actions {
    grid-template-columns: 1fr;
  }

  .campaign-detail-btn-main,
  .campaign-detail-btn-soft {
    width: 100%;
  }

  .campaign-story-card,
  .campaign-impact-card,
  .campaign-gallery-card,
  .campaign-donate-card,
  .campaign-organizer-card,
  .related-campaign-card {
    padding: 22px;
    border-radius: 26px;
  }

  .campaign-story-highlight {
    flex-direction: column;
  }

  .campaign-gallery-grid {
    grid-template-columns: 1fr;
  }

  .campaign-gallery-grid img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .campaign-detail-section {
    padding: 54px 0;
  }

  .campaign-detail-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .campaign-detail-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .campaign-detail-image {
    min-height: 285px;
  }

  .campaign-detail-image img {
    min-height: 265px;
  }

  .campaign-detail-status {
    left: 20px;
    top: 20px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .campaign-detail-category {
    right: 20px;
    bottom: 20px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .campaign-detail-content {
    padding: 20px;
  }

  .campaign-detail-content h1 {
    font-size: 30px;
  }

  .campaign-detail-content > p {
    font-size: 14.2px;
  }

  .campaign-detail-meta span {
    width: 100%;
  }

  .campaign-donation-box {
    padding: 17px;
    border-radius: 23px;
  }

  .campaign-donation-top strong {
    font-size: 22px;
  }

  .campaign-story-card h2,
  .campaign-card-head h2 {
    font-size: 24px;
  }

  .donation-amounts {
    grid-template-columns: 1fr;
  }

  .related-campaign-item {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .campaign-detail-content h1 {
    font-size: 27px;
  }

  .campaign-detail-image {
    min-height: 250px;
  }

  .campaign-detail-image img {
    min-height: 230px;
  }

  .campaign-story-card,
  .campaign-impact-card,
  .campaign-gallery-card,
  .campaign-donate-card,
  .campaign-organizer-card,
  .related-campaign-card {
    padding: 18px;
  }
}

/* ================= DYNAMIC CAMPAIGN DETAIL PAGE START ================= */

.campaign-detail-page-hero,
.campaign-detail-page-hero * {
  box-sizing: border-box;
}

.campaign-detail-page-hero.campaign-detail-hero {
  position: relative;
  display: block;
  padding: 96px 0 62px;
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.12), transparent 34%),
    linear-gradient(180deg, var(--white-color) 0%, #f6faff 100%);
  overflow: hidden;
}

.campaign-detail-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.campaign-detail-page-hero .container,
.campaign-detail-main-section .container,
.related-campaign-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

.campaign-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.campaign-detail-hero-content {
  position: relative;
  z-index: 2;
}

.campaign-detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
}

.campaign-detail-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.campaign-detail-breadcrumb span {
  color: var(--heading-color);
}

.campaign-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.campaign-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.13);
  font-size: 12px;
  font-weight: 900;
}

.campaign-detail-tag.green {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.16);
}

.campaign-detail-tag.sky {
  color: var(--secondary-color);
  background: rgba(14, 165, 233, 0.10);
  border-color: rgba(14, 165, 233, 0.16);
}

.campaign-detail-tag.live {
  color: var(--white-color);
  background: var(--green-gradient);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.campaign-detail-hero-content h1 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.campaign-detail-short,
.campaign-detail-description {
  color: var(--text-color);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.82;
}

.campaign-detail-short p,
.campaign-detail-description p {
  margin: 0 0 16px;
}

.campaign-detail-meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.campaign-detail-meta-item,
.campaign-detail-info-box {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.campaign-detail-meta-item i,
.campaign-detail-info-box i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
}

.campaign-detail-meta-item span,
.campaign-detail-info-box span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-light);
  font-size: 11.5px;
  font-weight: 850;
}

.campaign-detail-meta-item strong,
.campaign-detail-info-box strong {
  display: block;
  color: var(--heading-color);
  font-size: 13.5px;
  font-weight: 950;
}

.campaign-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.campaign-detail-hero-actions .campaign-detail-btn-main,
.campaign-detail-hero-actions .campaign-detail-btn-soft {
  padding: 0 22px;
}

.campaign-detail-hero-image {
  position: relative;
  min-height: 520px;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(14, 165, 233, 0.22), rgba(34, 197, 94, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 26px 72px rgba(37, 99, 235, 0.14),
    0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.campaign-detail-hero-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.56) 100%);
  pointer-events: none;
}

.campaign-detail-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 492px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.campaign-detail-floating-card {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #2563eb, #0ea5e9, #22c55e);
  box-shadow: 0 22px 54px rgba(37, 99, 235, 0.28);
}

.campaign-detail-floating-card span,
.campaign-detail-floating-card p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.campaign-detail-floating-card strong {
  display: block;
  margin: 6px 0;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
}

.campaign-detail-main-section {
  position: relative;
  padding: 70px 0;
  background: var(--light-bg);
}

.campaign-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
  align-items: start;
}

.campaign-detail-content-card,
.campaign-donation-card,
.campaign-contact-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.campaign-detail-section-head span,
.related-campaign-head span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.campaign-detail-section-head h2,
.related-campaign-head h2 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: 0;
}

.campaign-detail-description ul,
.campaign-detail-description ol {
  margin: 0 0 18px 20px;
  color: var(--text-color);
}

.campaign-detail-description li {
  margin-bottom: 8px;
}

.campaign-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 28px;
}

.campaign-donation-card {
  margin-bottom: 20px;
}

.donation-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.donation-card-top span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 850;
}

.donation-card-top h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 23px;
  font-weight: 950;
}

.donation-card-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  font-size: 22px;
}

.donation-amount-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.donation-amount-row div {
  padding: 15px;
  border-radius: 18px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.donation-amount-row span,
.donation-amount-row strong {
  display: block;
}

.donation-amount-row span {
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 850;
}

.donation-amount-row strong {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 950;
}

.campaign-detail-progress-line {
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.campaign-detail-progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.donation-support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 17px 0;
}

.donation-support-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.donation-full-btn,
.campaign-contact-card a,
.related-campaign-head a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: var(--transition);
}

.donation-full-btn {
  width: 100%;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
}

.campaign-contact-card h4 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
}

.campaign-contact-card p {
  margin: 0 0 18px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.65;
}

.campaign-contact-card a,
.related-campaign-head a {
  padding: 0 18px;
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.donation-full-btn:hover,
.campaign-contact-card a:hover,
.related-campaign-head a:hover {
  color: var(--white-color);
  transform: translateY(-3px);
  background: var(--green-gradient);
}

.related-campaign-section {
  padding: 70px 0;
  background: var(--white-color);
}

.related-campaign-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.related-campaign-grid {
  margin-top: 0;
}

@media (max-width: 1199px) {
  .campaign-detail-hero-grid,
  .campaign-detail-layout {
    grid-template-columns: 1fr;
  }

  .campaign-detail-page-hero.campaign-detail-hero {
    padding: 82px 0 54px;
  }

  .campaign-detail-sidebar {
    position: static;
  }
}

@media (max-width: 991px) {
  .campaign-detail-meta-list {
    grid-template-columns: 1fr;
  }

  .campaign-detail-hero-image {
    min-height: 430px;
  }

  .campaign-detail-hero-image img {
    min-height: 402px;
  }

  .related-campaign-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .campaign-detail-page-hero.campaign-detail-hero,
  .campaign-detail-main-section,
  .related-campaign-section {
    padding: 56px 0;
  }

  .campaign-detail-hero-content h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .campaign-detail-hero-image {
    min-height: 340px;
    padding: 10px;
    border-radius: 28px;
  }

  .campaign-detail-hero-image img {
    min-height: 320px;
    border-radius: 21px;
  }

  .campaign-detail-hero-image::after {
    inset: 10px;
    border-radius: 21px;
  }

  .campaign-detail-floating-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 15px;
    border-radius: 20px;
  }

  .campaign-detail-floating-card strong {
    font-size: 24px;
  }

  .campaign-detail-info-grid,
  .donation-amount-row {
    grid-template-columns: 1fr;
  }

  .campaign-detail-content-card,
  .campaign-donation-card,
  .campaign-contact-card {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 575px) {
  .campaign-detail-hero-content h1 {
    font-size: 30px;
  }

  .campaign-detail-hero-actions .campaign-detail-btn-main,
  .campaign-detail-hero-actions .campaign-detail-btn-soft,
  .related-campaign-head a {
    width: 100%;
  }

  .campaign-detail-section-head h2,
  .related-campaign-head h2 {
    font-size: 25px;
  }

  .campaign-detail-hero-image {
    min-height: 285px;
  }

  .campaign-detail-hero-image img {
    min-height: 265px;
  }
}

/* ================= DYNAMIC CAMPAIGN DETAIL PAGE END ================= */




/* ================= CAMPAIGN DETAIL SECTION END ================= */

/* ================= TARGET AMOUNT SECTION START ================= */

.target-amount-section,
.target-amount-section * {
  box-sizing: border-box;
}

.target-amount-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.target-amount-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.target-amount-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.target-amount-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.target-amount-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: targetAmountFloat 7s ease-in-out infinite;
}

.target-amount-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.target-amount-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes targetAmountFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.target-amount-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 46px;
  align-items: center;
}

/* Content */

.target-amount-content {
  position: relative;
  z-index: 2;
}

.target-amount-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.target-amount-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.target-amount-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.target-amount-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.target-amount-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List */

.target-amount-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.target-amount-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.target-amount-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.target-amount-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.target-amount-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.target-amount-item:hover::before {
  transform: scaleX(1);
}

.target-amount-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

.target-amount-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.target-amount-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.target-amount-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.target-amount-item:hover .target-amount-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.target-amount-item div {
  position: relative;
  z-index: 2;
}

.target-amount-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.target-amount-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Target Card */

.target-amount-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.target-amount-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.target-amount-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Card Head */

.target-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.target-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.target-card-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.target-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 26px;
}

/* Summary */

.target-amount-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 18px;
}

.target-summary-box {
  padding: 18px;
  border-radius: 24px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.target-summary-box:hover {
  transform: translateY(-5px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.target-summary-box span,
.target-summary-box strong {
  display: block;
}

.target-summary-box span {
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 850;
}

.target-summary-box strong {
  color: var(--heading-color);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.6px;
}

.target-summary-box.green strong {
  color: var(--accent-color);
}

/* Progress */

.target-progress-area {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.target-progress-top,
.target-progress-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.target-progress-top {
  margin-bottom: 12px;
}

.target-progress-bottom {
  margin-top: 12px;
}

.target-progress-top span,
.target-progress-bottom span {
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 850;
}

.target-progress-top strong {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 950;
}

.target-progress-track {
  width: 100%;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.target-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/* Quick Amount */

.target-quick-amounts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.target-quick-amounts a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.target-quick-amounts a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

/* Actions */

.target-action-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.target-btn-main,
.target-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.target-btn-main {
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.target-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.target-btn-soft {
  padding: 13px 20px;
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.target-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* Trust Strip */

.target-trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.target-trust-strip div {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-full);
  color: var(--text-color);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  font-size: 12.8px;
  font-weight: 900;
}

.target-trust-strip i {
  color: var(--accent-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .target-amount-section {
    padding: 90px 0;
  }

  .target-amount-wrapper {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 32px;
  }

  .target-amount-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .target-amount-section {
    padding: 78px 0;
  }

  .target-amount-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .target-amount-content {
    text-align: center;
  }

  .target-amount-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .target-amount-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .target-amount-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .target-amount-section {
    padding: 64px 0;
  }

  .target-amount-shape {
    display: none;
  }

  .target-amount-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .target-amount-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .target-amount-card {
    padding: 24px;
    border-radius: 30px;
  }

  .target-card-head {
    grid-template-columns: 1fr;
  }

  .target-amount-summary {
    grid-template-columns: 1fr;
  }

  .target-quick-amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .target-action-row {
    grid-template-columns: 1fr;
  }

  .target-btn-main,
  .target-btn-soft {
    width: 100%;
  }

  .target-progress-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 575px) {
  .target-amount-section {
    padding: 54px 0;
  }

  .target-amount-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .target-amount-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .target-amount-content h2 {
    font-size: 30px;
  }

  .target-amount-content > p {
    font-size: 14.5px;
  }

  .target-amount-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .target-amount-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .target-amount-card {
    padding: 20px;
    border-radius: 26px;
  }

  .target-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .target-summary-box,
  .target-progress-area {
    padding: 16px;
    border-radius: 22px;
  }

  .target-quick-amounts {
    gap: 10px;
  }

  .target-quick-amounts a,
  .target-trust-strip div {
    min-height: 46px;
    font-size: 12.5px;
  }

  .target-trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .target-amount-content h2 {
    font-size: 27px;
  }

  .target-quick-amounts {
    grid-template-columns: 1fr;
  }

  .target-amount-card {
    padding: 18px;
  }
}

/* ================= TARGET AMOUNT SECTION END ================= */


/* ================= RAISED AMOUNT SECTION START ================= */

.raised-amount-section,
.raised-amount-section * {
  box-sizing: border-box;
}

.raised-amount-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.raised-amount-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.raised-amount-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.raised-amount-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.raised-amount-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: raisedAmountFloat 7s ease-in-out infinite;
}

.raised-amount-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.raised-amount-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes raisedAmountFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.raised-amount-wrapper {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 46px;
  align-items: center;
}

/* Raised Card */

.raised-amount-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.raised-amount-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.raised-amount-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Card Head */

.raised-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.raised-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.raised-card-head h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.raised-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 26px;
}

/* Highlight */

.raised-highlight-box {
  position: relative;
  z-index: 2;
  padding: 28px;
  margin-bottom: 18px;
  border-radius: 30px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.26);
  overflow: hidden;
}

.raised-highlight-box::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.raised-highlight-box span,
.raised-highlight-box strong,
.raised-highlight-box p {
  position: relative;
  z-index: 2;
  display: block;
}

.raised-highlight-box span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.raised-highlight-box strong {
  margin-bottom: 10px;
  color: var(--white-color);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.raised-highlight-box p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.65;
}

/* Progress */

.raised-progress-area {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.raised-progress-top,
.raised-progress-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.raised-progress-top {
  margin-bottom: 12px;
}

.raised-progress-bottom {
  margin-top: 12px;
}

.raised-progress-top span,
.raised-progress-bottom span {
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 850;
}

.raised-progress-top strong {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 950;
}

.raised-progress-track {
  width: 100%;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.raised-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/* Stats */

.raised-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.raised-stat-box {
  padding: 18px 14px;
  border-radius: 24px;
  text-align: center;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.raised-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.raised-stat-box i {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 19px;
}

.raised-stat-box.green i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.raised-stat-box.sky i {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.raised-stat-box strong,
.raised-stat-box span {
  display: block;
}

.raised-stat-box strong {
  margin-bottom: 6px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.raised-stat-box span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 800;
}

/* Right Content */

.raised-amount-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.raised-amount-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.raised-amount-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.raised-amount-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.raised-amount-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.raised-amount-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Features */

.raised-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 26px;
}

.raised-feature-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.raised-feature-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.raised-feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.raised-feature-item:hover::before {
  transform: scaleX(1);
}

.raised-feature-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.raised-feature-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.raised-feature-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.raised-feature-item:hover .raised-feature-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.raised-feature-item div {
  position: relative;
  z-index: 2;
}

.raised-feature-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.raised-feature-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.raised-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.raised-btn-main,
.raised-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.raised-btn-main {
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.raised-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.raised-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.raised-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .raised-amount-section {
    padding: 90px 0;
  }

  .raised-amount-wrapper {
    grid-template-columns: minmax(390px, 1.08fr) minmax(0, 0.92fr);
    gap: 32px;
  }

  .raised-amount-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .raised-amount-section {
    padding: 78px 0;
  }

  .raised-amount-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .raised-amount-content {
    text-align: center;
  }

  .raised-amount-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .raised-feature-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .raised-amount-card {
    max-width: 760px;
    margin: 0 auto;
    order: 2;
  }

  .raised-amount-content {
    order: 1;
  }

  .raised-action-row {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .raised-amount-section {
    padding: 64px 0;
  }

  .raised-amount-shape {
    display: none;
  }

  .raised-amount-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .raised-amount-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .raised-amount-card {
    padding: 24px;
    border-radius: 30px;
  }

  .raised-card-head {
    grid-template-columns: 1fr;
  }

  .raised-stats-grid {
    grid-template-columns: 1fr;
  }

  .raised-progress-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .raised-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .raised-btn-main,
  .raised-btn-soft {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .raised-amount-section {
    padding: 54px 0;
  }

  .raised-amount-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .raised-amount-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .raised-amount-content h2 {
    font-size: 30px;
  }

  .raised-amount-content > p {
    font-size: 14.5px;
  }

  .raised-feature-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .raised-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .raised-amount-card {
    padding: 20px;
    border-radius: 26px;
  }

  .raised-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .raised-highlight-box {
    padding: 22px;
    border-radius: 24px;
  }

  .raised-highlight-box strong {
    font-size: 42px;
  }

  .raised-progress-area {
    padding: 16px;
    border-radius: 22px;
  }

  .raised-stat-box {
    padding: 16px 14px;
    border-radius: 22px;
  }
}

@media (max-width: 380px) {
  .raised-amount-content h2 {
    font-size: 27px;
  }

  .raised-amount-card {
    padding: 18px;
  }

  .raised-highlight-box strong {
    font-size: 36px;
  }
}

/* ================= RAISED AMOUNT SECTION END ================= */

/* ================= REMAINING AMOUNT SECTION START ================= */

.remaining-amount-section,
.remaining-amount-section * {
  box-sizing: border-box;
}

.remaining-amount-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.remaining-amount-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.remaining-amount-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.remaining-amount-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.remaining-amount-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: remainingAmountFloat 7s ease-in-out infinite;
}

.remaining-amount-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.remaining-amount-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes remainingAmountFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.remaining-amount-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 46px;
  align-items: center;
}

/* Left Content */

.remaining-amount-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.remaining-amount-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.remaining-amount-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.remaining-amount-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.remaining-amount-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.remaining-amount-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Feature List */

.remaining-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.remaining-feature-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.remaining-feature-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.remaining-feature-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.remaining-feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.remaining-feature-item:hover::before {
  transform: scaleX(1);
}

.remaining-feature-item:hover::after {
  transform: scale(1.24);
  background: rgba(34, 197, 94, 0.10);
}

.remaining-feature-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.remaining-feature-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.remaining-feature-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.remaining-feature-item:hover .remaining-feature-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.remaining-feature-item div {
  position: relative;
  z-index: 2;
}

.remaining-feature-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.remaining-feature-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Right Card */

.remaining-amount-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.remaining-amount-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.remaining-amount-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

.remaining-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.remaining-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.remaining-card-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.remaining-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 26px;
}

/* Highlight */

.remaining-highlight-box {
  position: relative;
  z-index: 2;
  padding: 28px;
  margin-bottom: 18px;
  border-radius: 30px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.26);
  overflow: hidden;
}

.remaining-highlight-box::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.remaining-highlight-box span,
.remaining-highlight-box strong,
.remaining-highlight-box p {
  position: relative;
  z-index: 2;
  display: block;
}

.remaining-highlight-box span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.remaining-highlight-box strong {
  margin-bottom: 10px;
  color: var(--white-color);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.remaining-highlight-box p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.65;
}

/* Summary */

.remaining-summary-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.remaining-summary-box {
  padding: 18px;
  border-radius: 24px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.remaining-summary-box:hover {
  transform: translateY(-5px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.remaining-summary-box span,
.remaining-summary-box strong {
  display: block;
}

.remaining-summary-box span {
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 850;
}

.remaining-summary-box strong {
  color: var(--heading-color);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.6px;
}

.remaining-summary-box.green strong {
  color: var(--accent-color);
}

/* Progress */

.remaining-progress-area {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.remaining-progress-top,
.remaining-progress-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.remaining-progress-top {
  margin-bottom: 12px;
}

.remaining-progress-bottom {
  margin-top: 12px;
}

.remaining-progress-top span,
.remaining-progress-bottom span {
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 850;
}

.remaining-progress-top strong {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 950;
}

.remaining-progress-track {
  width: 100%;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.10);
  overflow: hidden;
}

.remaining-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/* Support Grid */

.remaining-support-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.remaining-support-box {
  padding: 18px 14px;
  border-radius: 24px;
  text-align: center;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.remaining-support-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.remaining-support-box i {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 19px;
}

.remaining-support-box.green i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.remaining-support-box strong,
.remaining-support-box span {
  display: block;
}

.remaining-support-box strong {
  margin-bottom: 6px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.remaining-support-box span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 800;
}

/* Actions */

.remaining-action-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.remaining-btn-main,
.remaining-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.remaining-btn-main {
  padding: 14px 22px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.remaining-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.remaining-btn-soft {
  padding: 14px 20px;
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.remaining-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .remaining-amount-section {
    padding: 90px 0;
  }

  .remaining-amount-wrapper {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 32px;
  }

  .remaining-amount-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .remaining-amount-section {
    padding: 78px 0;
  }

  .remaining-amount-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .remaining-amount-content {
    text-align: center;
  }

  .remaining-amount-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .remaining-feature-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .remaining-amount-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .remaining-amount-section {
    padding: 64px 0;
  }

  .remaining-amount-shape {
    display: none;
  }

  .remaining-amount-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .remaining-amount-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .remaining-amount-card {
    padding: 24px;
    border-radius: 30px;
  }

  .remaining-card-head {
    grid-template-columns: 1fr;
  }

  .remaining-summary-grid {
    grid-template-columns: 1fr;
  }

  .remaining-support-grid {
    grid-template-columns: 1fr;
  }

  .remaining-action-row {
    grid-template-columns: 1fr;
  }

  .remaining-btn-main,
  .remaining-btn-soft {
    width: 100%;
  }

  .remaining-progress-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 575px) {
  .remaining-amount-section {
    padding: 54px 0;
  }

  .remaining-amount-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .remaining-amount-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .remaining-amount-content h2 {
    font-size: 30px;
  }

  .remaining-amount-content > p {
    font-size: 14.5px;
  }

  .remaining-feature-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .remaining-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .remaining-amount-card {
    padding: 20px;
    border-radius: 26px;
  }

  .remaining-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .remaining-highlight-box {
    padding: 22px;
    border-radius: 24px;
  }

  .remaining-highlight-box strong {
    font-size: 42px;
  }

  .remaining-summary-box,
  .remaining-progress-area,
  .remaining-support-box {
    padding: 16px;
    border-radius: 22px;
  }
}

@media (max-width: 380px) {
  .remaining-amount-content h2 {
    font-size: 27px;
  }

  .remaining-amount-card {
    padding: 18px;
  }

  .remaining-highlight-box strong {
    font-size: 36px;
  }
}

/* ================= REMAINING AMOUNT SECTION END ================= */



/* ================= CAMPAGIN SECTION END ================= */


/* ================= GALLERY SECTION START ================= */

/* ================= EVENT WISE ALBUM SECTION START ================= */

.event-wise-album-section,
.event-wise-album-section * {
  box-sizing: border-box;
}

.event-wise-album-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.event-wise-album-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.event-wise-album-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

.event-wise-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: eventWiseFloat 7s ease-in-out infinite;
}

.event-wise-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.event-wise-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes eventWiseFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.event-wise-head {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.event-wise-album-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.event-wise-album-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
}

.event-wise-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.event-wise-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-wise-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Filter */

.event-wise-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.event-wise-filter a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  transition: var(--transition);
}

.event-wise-filter a:hover,
.event-wise-filter a.active {
  color: var(--white-color);
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
}

/* Grid */

.event-wise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.event-wise-card {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.event-wise-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

/* Image */

.event-wise-img {
  position: relative;
  height: 255px;
  overflow: hidden;
}

.event-wise-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05) 20%, rgba(15, 23, 42, 0.68) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.event-wise-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.85s ease;
}

.event-wise-card:hover .event-wise-img img {
  transform: scale(1.08);
}

.event-wise-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 5;
  display: inline-flex;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.event-wise-tag.green {
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
}

.event-wise-tag.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.event-wise-media-count {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.event-wise-media-count span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 11.5px;
  font-weight: 850;
}

.event-wise-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.event-wise-card:hover .event-wise-overlay {
  opacity: 1;
  visibility: visible;
}

.event-wise-overlay a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  transition: var(--transition);
}

.event-wise-overlay a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-5px);
}

/* Content */

.event-wise-content {
  padding: 24px;
}

.event-wise-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-wise-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12px;
  font-weight: 850;
}

.event-wise-content h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: -0.45px;
}

.event-wise-content p {
  margin: 0 0 20px;
  color: var(--text-color);
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.68;
}

.event-wise-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.event-wise-footer strong,
.event-wise-footer span {
  display: block;
}

.event-wise-footer strong {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.event-wise-footer span {
  margin-top: 5px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 800;
}

.event-wise-footer a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 17px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  transition: var(--transition);
}

.event-wise-footer a:hover {
  color: var(--white-color);
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199px) {
  .event-wise-album-section {
    padding: 90px 0;
  }

  .event-wise-grid {
    gap: 20px;
  }

  .event-wise-media-count {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .event-wise-album-section {
    padding: 78px 0;
  }

  .event-wise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .event-wise-album-section {
    padding: 64px 0;
  }

  .event-wise-shape {
    display: none;
  }

  .event-wise-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .event-wise-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .event-wise-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 30px;
    scrollbar-width: none;
  }

  .event-wise-filter::-webkit-scrollbar {
    display: none;
  }

  .event-wise-filter a {
    white-space: nowrap;
  }

  .event-wise-grid {
    grid-template-columns: 1fr;
  }

  .event-wise-card {
    border-radius: 28px;
  }

  .event-wise-img {
    height: 235px;
  }

  .event-wise-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-wise-footer a {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .event-wise-album-section {
    padding: 54px 0;
  }

  .event-wise-album-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .event-wise-album-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .event-wise-head h2 {
    font-size: 30px;
  }

  .event-wise-head p {
    font-size: 14.5px;
  }

  .event-wise-img {
    height: 215px;
  }

  .event-wise-content {
    padding: 20px;
  }

  .event-wise-content h3 {
    font-size: 18px;
  }

  .event-wise-content p {
    font-size: 13.2px;
  }

  .event-wise-meta span {
    width: 100%;
  }

  .event-wise-tag {
    left: 14px;
    top: 14px;
    font-size: 11px;
    padding: 7px 11px;
  }

  .event-wise-media-count {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .event-wise-overlay {
    opacity: 1;
    visibility: visible;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 14px;
  }

  .event-wise-overlay a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .event-wise-head h2 {
    font-size: 27px;
  }

  .event-wise-img {
    height: 195px;
  }

  .event-wise-content {
    padding: 18px;
  }

  .event-wise-media-count span {
    font-size: 11px;
  }
}

/* ================= EVENT WISE ALBUM SECTION END ================= */


/* ================= ALBUM COVER IMAGE SECTION START ================= */

.album-cover-section,
.album-cover-section * {
  box-sizing: border-box;
}

.album-cover-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.album-cover-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.album-cover-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.album-cover-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.album-cover-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: albumCoverFloat 7s ease-in-out infinite;
}

.album-cover-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.album-cover-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes albumCoverFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.album-cover-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 42px;
  align-items: center;
}

/* Left Cover Image */

.album-cover-image-card {
  position: relative;
  min-width: 0;
}

.album-cover-image-card::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(34, 197, 94, 0.12));
  filter: blur(2px);
  z-index: -1;
}

.album-cover-image {
  position: relative;
  min-height: 590px;
  border-radius: 40px;
  padding: 14px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 30px 90px rgba(37, 99, 235, 0.16),
    0 16px 36px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.album-cover-image img {
  width: 100%;
  height: 100%;
  min-height: 562px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  transition: 0.85s ease;
}

.album-cover-image:hover img {
  transform: scale(1.06);
}

.album-cover-overlay {
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.18) 38%, rgba(15, 23, 42, 0.78) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.26), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* Cover Top Badges */

.album-cover-top {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.album-cover-category,
.album-cover-status {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  font-size: 12.5px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.album-cover-category {
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.22), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.24);
}

.album-cover-status {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Cover Content */

.album-cover-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 5;
}

.album-cover-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.album-cover-meta span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 850;
}

.album-cover-content h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--white-color);
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.album-cover-content p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.68;
}

.album-cover-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.album-cover-counts div {
  min-height: 82px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.album-cover-counts strong,
.album-cover-counts span {
  display: block;
}

.album-cover-counts strong {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.album-cover-counts span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

/* Right Info Card */

.album-cover-info-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.album-cover-info-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.album-cover-info-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

.album-cover-section .section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.album-cover-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
}

.album-cover-info-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.album-cover-info-card h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.album-cover-info-card > p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--text-color);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.78;
}

/* Feature List */

.album-cover-feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.album-cover-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 17px;
  border-radius: 24px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  overflow: hidden;
}

.album-cover-feature::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.album-cover-feature:hover {
  transform: translateY(-5px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.album-cover-feature:hover::before {
  transform: scaleX(1);
}

.album-cover-feature-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.22);
  font-size: 20px;
}

.album-cover-feature-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.22);
}

.album-cover-feature-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.22);
}

.album-cover-feature h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
}

.album-cover-feature p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.62;
}

/* Preview Thumbs */

.album-cover-preview-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.album-cover-preview-row img,
.album-more-box {
  width: 100%;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.album-more-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.24), transparent 36%),
    var(--primary-gradient);
  text-decoration: none;
}

.album-more-box strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.album-more-box span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 850;
}

/* Actions */

.album-cover-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.album-cover-btn-main,
.album-cover-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.album-cover-btn-main {
  padding: 14px 22px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.album-cover-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.album-cover-btn-soft {
  padding: 14px 20px;
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.album-cover-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .album-cover-section {
    padding: 90px 0;
  }

  .album-cover-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 32px;
  }

  .album-cover-image {
    min-height: 540px;
  }

  .album-cover-image img {
    min-height: 512px;
  }

  .album-cover-info-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .album-cover-section {
    padding: 78px 0;
  }

  .album-cover-wrapper {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .album-cover-image-card,
  .album-cover-info-card {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }

  .album-cover-info-card {
    text-align: center;
  }

  .album-cover-feature {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .album-cover-section {
    padding: 64px 0;
  }

  .album-cover-shape {
    display: none;
  }

  .album-cover-image-card::before {
    display: none;
  }

  .album-cover-image {
    min-height: 460px;
    padding: 10px;
    border-radius: 30px;
  }

  .album-cover-image img {
    min-height: 440px;
    border-radius: 22px;
  }

  .album-cover-overlay {
    inset: 10px;
    border-radius: 22px;
  }

  .album-cover-top {
    left: 22px;
    right: 22px;
    top: 22px;
    align-items: flex-start;
  }

  .album-cover-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .album-cover-content h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .album-cover-counts {
    grid-template-columns: 1fr;
  }

  .album-cover-info-card {
    padding: 24px;
    border-radius: 30px;
  }

  .album-cover-info-card h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .album-cover-actions {
    grid-template-columns: 1fr;
  }

  .album-cover-btn-main,
  .album-cover-btn-soft {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .album-cover-section {
    padding: 54px 0;
  }

  .album-cover-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .album-cover-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .album-cover-image {
    min-height: 420px;
    border-radius: 26px;
  }

  .album-cover-image img {
    min-height: 400px;
    border-radius: 19px;
  }

  .album-cover-overlay {
    border-radius: 19px;
  }

  .album-cover-top {
    flex-direction: column;
    gap: 8px;
  }

  .album-cover-category,
  .album-cover-status {
    min-height: 35px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .album-cover-meta span {
    width: 100%;
    min-height: 34px;
    font-size: 11.5px;
  }

  .album-cover-content h2 {
    font-size: 26px;
  }

  .album-cover-content p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .album-cover-counts div {
    min-height: 70px;
    padding: 14px;
    border-radius: 18px;
  }

  .album-cover-counts strong {
    font-size: 24px;
  }

  .album-cover-info-card {
    padding: 20px;
    border-radius: 26px;
  }

  .album-cover-info-card h2 {
    font-size: 30px;
  }

  .album-cover-info-card > p {
    font-size: 14.2px;
  }

  .album-cover-feature {
    flex-direction: column;
    padding: 16px;
    border-radius: 20px;
  }

  .album-cover-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 18px;
  }

  .album-cover-preview-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-cover-preview-row img,
  .album-more-box {
    height: 86px;
    border-radius: 17px;
  }
}

@media (max-width: 380px) {
  .album-cover-image {
    min-height: 390px;
  }

  .album-cover-image img {
    min-height: 370px;
  }

  .album-cover-content h2 {
    font-size: 23px;
  }

  .album-cover-info-card h2 {
    font-size: 27px;
  }

  .album-cover-info-card {
    padding: 18px;
  }
}

/* ================= ALBUM COVER IMAGE SECTION END ================= */


/* ================= VIDEO SUPPORT SECTION START ================= */

.video-support-section,
.video-support-section * {
  box-sizing: border-box;
}

.video-support-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.video-support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.video-support-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 880px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.video-support-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.video-support-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: videoSupportFloat 7s ease-in-out infinite;
}

.video-support-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.video-support-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes videoSupportFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.video-support-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 46px;
  align-items: center;
}

/* Left Content */

.video-support-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.video-support-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.video-support-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.video-support-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.video-support-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-support-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* List */

.video-support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 26px;
}

.video-support-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.video-support-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.video-support-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.video-support-item:hover::before {
  transform: scaleX(1);
}

.video-support-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.video-support-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.video-support-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.video-support-item:hover .video-support-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.video-support-item div {
  position: relative;
  z-index: 2;
}

.video-support-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.video-support-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.video-support-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.video-support-btn-main,
.video-support-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.video-support-btn-main {
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.video-support-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.video-support-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.video-support-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* Right Video Card */

.video-support-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.video-support-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.video-support-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

.video-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.video-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.video-card-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.video-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 26px;
}

/* Responsive Video */

.video-embed-box {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: var(--footer-bg);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow:
    0 22px 52px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.video-embed-box iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Info Box */

.video-info-box {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-top: 18px;
  border-radius: 26px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.video-info-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.video-info-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 12px;
  font-weight: 850;
}

.video-info-box h4 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: -0.35px;
}

.video-info-box p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.7px;
  font-weight: 500;
  line-height: 1.68;
}

/* Platform Grid */

.video-platform-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.video-platform-box {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-radius: 24px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-platform-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.video-platform-box i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 20px;
}

.video-platform-box.green i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.video-platform-box strong,
.video-platform-box span {
  display: block;
}

.video-platform-box strong {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.video-platform-box span {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .video-support-section {
    padding: 90px 0;
  }

  .video-support-wrapper {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 32px;
  }

  .video-support-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .video-support-section {
    padding: 78px 0;
  }

  .video-support-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .video-support-content {
    text-align: center;
  }

  .video-support-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .video-support-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-support-item {
    text-align: left;
  }

  .video-support-actions {
    justify-content: center;
  }

  .video-support-card {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .video-support-section {
    padding: 64px 0;
  }

  .video-support-shape {
    display: none;
  }

  .video-support-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .video-support-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .video-support-card {
    padding: 24px;
    border-radius: 30px;
  }

  .video-card-head {
    grid-template-columns: 1fr;
  }

  .video-embed-box {
    border-radius: 22px;
  }

  .video-platform-grid {
    grid-template-columns: 1fr;
  }

  .video-support-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-support-btn-main,
  .video-support-btn-soft {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .video-support-section {
    padding: 54px 0;
  }

  .video-support-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .video-support-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .video-support-content h2 {
    font-size: 30px;
  }

  .video-support-content > p {
    font-size: 14.5px;
  }

  .video-support-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .video-support-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .video-support-card {
    padding: 20px;
    border-radius: 26px;
  }

  .video-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .video-info-box {
    padding: 16px;
    border-radius: 22px;
  }

  .video-info-meta span {
    width: 100%;
  }

  .video-platform-box {
    padding: 14px;
    border-radius: 20px;
  }

  .video-platform-box i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .video-support-content h2 {
    font-size: 27px;
  }

  .video-support-card {
    padding: 18px;
  }

  .video-card-head h3 {
    font-size: 22px;
  }
}

/* ================= VIDEO SUPPORT SECTION END ================= */


/* ================= CATEGORY FILTERING SECTION START ================= */

.category-filter-section,
.category-filter-section * {
  box-sizing: border-box;
}

.category-filter-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.category-filter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.category-filter-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.category-filter-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: categoryFilterFloat 7s ease-in-out infinite;
}

.category-filter-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 110px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.category-filter-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes categoryFilterFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.category-filter-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.category-filter-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.category-filter-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.category-filter-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.category-filter-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-filter-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.category-filter-wrapper {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* Sidebar */

.category-filter-sidebar {
  position: sticky;
  top: 100px;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 22px 58px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.category-filter-sidebar::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.filter-sidebar-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.filter-sidebar-head span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.filter-sidebar-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.filter-sidebar-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.24);
  font-size: 23px;
}

.category-filter-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.category-filter-list a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--text-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition);
}

.category-filter-list a span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 850;
}

.category-filter-list a i {
  color: var(--primary-color);
}

.category-filter-list a strong {
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  font-size: 12px;
  font-weight: 950;
  box-shadow: var(--shadow-sm);
}

.category-filter-list a:hover,
.category-filter-list a.active {
  color: var(--white-color);
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.category-filter-list a:hover i,
.category-filter-list a.active i {
  color: var(--white-color);
}

/* Content */

.category-filter-content {
  min-width: 0;
}

.category-filter-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  margin-bottom: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.category-filter-topbar span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-filter-topbar h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.category-sort-box {
  position: relative;
  min-width: 190px;
}

.category-sort-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
  z-index: 2;
}

.category-sort-box select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px 12px 42px;
  border-radius: var(--radius-full);
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-size: 13px;
  font-weight: 850;
  appearance: none;
  cursor: pointer;
}

/* Tabs */

.category-filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.category-filter-tabs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  transition: var(--transition);
}

.category-filter-tabs a:hover,
.category-filter-tabs a.active {
  color: var(--white-color);
  background: var(--green-gradient);
  border-color: transparent;
  transform: translateY(-4px);
}

/* Result Grid */

.category-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-result-card {
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.category-result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 28px 68px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.category-result-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.category-result-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06) 20%, rgba(15, 23, 42, 0.62) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.category-result-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.8s ease;
}

.category-result-card:hover .category-result-img img {
  transform: scale(1.08);
}

.category-result-img span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  display: inline-flex;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.category-result-img span.green {
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
}

.category-result-img span.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

/* Result Info */

.category-result-info {
  padding: 22px;
}

.category-result-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}

.category-result-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 11.8px;
  font-weight: 850;
}

.category-result-info h4 {
  margin: 0 0 11px;
  color: var(--heading-color);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.category-result-info p {
  margin: 0 0 18px;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.66;
}

.category-result-info > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: var(--transition);
}

.category-result-info > a:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.32);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .category-filter-section {
    padding: 90px 0;
  }

  .category-filter-wrapper {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
  }

  .category-filter-sidebar {
    padding: 22px;
  }

  .category-result-grid {
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .category-filter-section {
    padding: 78px 0;
  }

  .category-filter-wrapper {
    grid-template-columns: 1fr;
  }

  .category-filter-sidebar {
    position: static;
  }

  .category-filter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .category-filter-section {
    padding: 64px 0;
  }

  .category-filter-shape {
    display: none;
  }

  .category-filter-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .category-filter-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .category-filter-list {
    grid-template-columns: 1fr;
  }

  .category-filter-topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 26px;
  }

  .category-sort-box {
    width: 100%;
  }

  .category-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .category-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-filter-tabs a {
    white-space: nowrap;
  }

  .category-result-grid {
    grid-template-columns: 1fr;
  }

  .category-result-card {
    border-radius: 26px;
  }

  .category-result-img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .category-filter-section {
    padding: 54px 0;
  }

  .category-filter-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .category-filter-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .category-filter-head h2 {
    font-size: 30px;
  }

  .category-filter-head p {
    font-size: 14.5px;
  }

  .category-filter-sidebar {
    padding: 20px;
    border-radius: 26px;
  }

  .filter-sidebar-head {
    grid-template-columns: 1fr;
  }

  .filter-sidebar-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    font-size: 21px;
  }

  .category-filter-list a {
    min-height: 50px;
    padding: 11px 12px;
  }

  .category-filter-list a span {
    font-size: 12.8px;
  }

  .category-filter-topbar h3 {
    font-size: 21px;
  }

  .category-result-img {
    height: 205px;
  }

  .category-result-info {
    padding: 19px;
  }

  .category-result-info h4 {
    font-size: 17.5px;
  }

  .category-result-meta span {
    width: 100%;
  }

  .category-result-info > a {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .category-filter-head h2 {
    font-size: 27px;
  }

  .category-result-img {
    height: 190px;
  }

  .category-result-info {
    padding: 17px;
  }
}

/* ================= CATEGORY FILTERING SECTION END ================= */


/* ================= MOBILE FRIENDLY LIGHTBOX SECTION START ================= */

.mobile-lightbox-section,
.mobile-lightbox-section * {
  box-sizing: border-box;
}

.mobile-lightbox-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.mobile-lightbox-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.mobile-lightbox-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.mobile-lightbox-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: mobileLightboxFloat 7s ease-in-out infinite;
}

.mobile-lightbox-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.mobile-lightbox-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes mobileLightboxFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.mobile-lightbox-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.mobile-lightbox-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-lightbox-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.mobile-lightbox-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.mobile-lightbox-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-lightbox-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Grid */

.mobile-lightbox-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mobile-lightbox-card {
  position: relative;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-lightbox-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.mobile-lightbox-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.mobile-lightbox-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 20%, rgba(15, 23, 42, 0.58) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.mobile-lightbox-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.85s ease;
}

.mobile-lightbox-card:hover .mobile-lightbox-img img {
  transform: scale(1.08);
}

.lightbox-type-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  font-size: 11.5px;
  font-weight: 900;
}

.lightbox-type-badge.green {
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
}

.lightbox-type-badge.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.lightbox-type-badge.video {
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.24);
}

.lightbox-hover-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-lightbox-card:hover .lightbox-hover-layer {
  opacity: 1;
  visibility: visible;
}

.lightbox-hover-layer span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  font-size: 24px;
  transform: scale(0.86);
  transition: var(--transition);
}

.mobile-lightbox-card:hover .lightbox-hover-layer span {
  transform: scale(1);
}

.mobile-lightbox-content {
  padding: 20px;
}

.mobile-lightbox-content h3 {
  margin: 0 0 9px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.3;
  letter-spacing: -0.35px;
}

.mobile-lightbox-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.62;
}

/* Lightbox Popup */

.premium-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.22), transparent 36%),
    radial-gradient(circle at 85% 80%, rgba(34, 197, 94, 0.18), transparent 34%),
    rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.premium-lightbox.active {
  display: flex;
}

.lightbox-viewer {
  width: min(100%, 1040px);
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media-box {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.38),
    0 18px 50px rgba(37, 99, 235, 0.18);
}

.lightbox-media-box img {
  width: 100%;
  max-height: 86vh;
  display: block;
  object-fit: contain;
  background: #020617;
}

.lightbox-media-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

/* Controls */

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  z-index: 10000;
  border: 0;
  cursor: pointer;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-close:hover {
  transform: scale(1.06);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .mobile-lightbox-section {
    padding: 90px 0;
  }

  .mobile-lightbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mobile-lightbox-section {
    padding: 78px 0;
  }

  .mobile-lightbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mobile-lightbox-section {
    padding: 64px 0;
  }

  .mobile-lightbox-shape {
    display: none;
  }

  .mobile-lightbox-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .mobile-lightbox-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .mobile-lightbox-grid {
    grid-template-columns: 1fr;
  }

  .mobile-lightbox-img {
    height: 235px;
  }

  .lightbox-hover-layer {
    opacity: 1;
    visibility: visible;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    background: transparent;
  }

  .lightbox-hover-layer span {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .premium-lightbox {
    padding: 14px;
  }

  .lightbox-media-box {
    border-radius: 22px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .lightbox-arrow:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 575px) {
  .mobile-lightbox-section {
    padding: 54px 0;
  }

  .mobile-lightbox-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .mobile-lightbox-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .mobile-lightbox-head h2 {
    font-size: 30px;
  }

  .mobile-lightbox-head p {
    font-size: 14.5px;
  }

  .mobile-lightbox-card {
    border-radius: 26px;
  }

  .mobile-lightbox-img {
    height: 215px;
  }

  .mobile-lightbox-content {
    padding: 18px;
  }

  .mobile-lightbox-content h3 {
    font-size: 17px;
  }

  .mobile-lightbox-content p {
    font-size: 13px;
  }

  .lightbox-type-badge {
    left: 14px;
    top: 14px;
    font-size: 11px;
    padding: 7px 11px;
  }
}

@media (max-width: 380px) {
  .mobile-lightbox-head h2 {
    font-size: 27px;
  }

  .mobile-lightbox-img {
    height: 195px;
  }

  .mobile-lightbox-content {
    padding: 16px;
  }
}

/* ================= MOBILE FRIENDLY LIGHTBOX SECTION END ================= */

/* ================= ADMIN MEDIA MANAGE SECTION START ================= */

.admin-media-manage-section,
.admin-media-manage-section * {
  box-sizing: border-box;
}

.admin-media-manage-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.admin-media-manage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.admin-media-manage-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.admin-media-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: adminMediaFloat 7s ease-in-out infinite;
}

.admin-media-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.admin-media-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes adminMediaFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.admin-media-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.admin-media-manage-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-media-manage-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.admin-media-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.admin-media-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-media-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.admin-media-wrapper {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* Control Card */

.admin-media-control-card,
.admin-media-grid-card {
  position: relative;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.admin-media-control-card {
  position: sticky;
  top: 100px;
  padding: 28px;
}

.admin-media-control-card::before,
.admin-media-grid-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

/* Control Top */

.media-control-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.media-control-top span,
.media-grid-toolbar span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.media-control-top h3,
.media-grid-toolbar h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.media-control-icon {
  width: 58px;
  height: 58px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.24);
  font-size: 24px;
}

/* Upload Box */

.media-upload-box {
  position: relative;
  z-index: 2;
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.22), transparent 34%),
    var(--primary-gradient);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.24);
  overflow: hidden;
}

.media-upload-box::before {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.media-upload-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin: 0 auto 15px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.94);
  font-size: 30px;
  box-shadow: 0 15px 32px rgba(15, 23, 42, 0.14);
}

.media-upload-box h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 9px;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 950;
}

.media-upload-box p {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.6;
}

.media-upload-btn {
  position: relative;
  z-index: 2;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: var(--primary-color);
  background: var(--white-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
  transition: var(--transition);
}

.media-upload-btn:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Option List */

.media-option-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.media-option-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.media-option-item:hover {
  transform: translateY(-5px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.media-option-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 20px;
}

.media-option-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.media-option-icon.red {
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.20);
}

.media-option-item h4 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 15.5px;
  font-weight: 950;
}

.media-option-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 500;
  line-height: 1.55;
}

/* Grid Card */

.admin-media-grid-card {
  padding: 28px;
}

.media-grid-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.media-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.media-toolbar-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  color: var(--text-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
  transition: var(--transition);
}

.media-toolbar-btn:hover,
.media-toolbar-btn.active {
  color: var(--white-color);
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

/* Media Grid */

.admin-media-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-media-item {
  position: relative;
  padding: 12px;
  border-radius: 26px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.admin-media-item:hover {
  transform: translateY(-6px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.media-order-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.media-thumb {
  position: relative;
  height: 185px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--footer-bg);
}

.media-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.58)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.12), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.75s ease;
}

.admin-media-item:hover .media-thumb img {
  transform: scale(1.08);
}

.media-type {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.media-type.photo {
  background: var(--primary-gradient);
}

.media-type.video {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.media-item-info {
  padding: 15px 4px 13px;
}

.media-item-info h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 15.5px;
  font-weight: 950;
  line-height: 1.28;
}

.media-item-info p {
  margin: 0;
  color: var(--text-color);
  font-size: 12.3px;
  font-weight: 700;
}

/* Item Actions */

.media-item-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.media-action-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  color: var(--text-color);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.media-action-btn.move:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

.media-action-btn.cover:hover,
.media-action-btn.cover.active {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-3px);
}

.media-action-btn.delete:hover {
  color: var(--white-color);
  background: linear-gradient(135deg, #ef4444, #f97316);
  transform: translateY(-3px);
}

/* Add New */

.add-new-media {
  min-height: 332px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 12px;
  border-style: dashed;
}

.add-new-media a {
  width: 100%;
  min-height: 100%;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.06);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.add-new-media a i {
  width: 58px;
  height: 58px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.add-new-media:hover a {
  color: var(--white-color);
  background: var(--primary-gradient);
}

/* Save Strip */

.media-save-strip {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.media-save-strip div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 800;
}

.media-save-strip div i {
  color: var(--primary-color);
}

.media-save-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--green-gradient);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
  transition: var(--transition);
}

.media-save-btn:hover {
  color: var(--white-color);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .admin-media-manage-section {
    padding: 90px 0;
  }

  .admin-media-wrapper {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
  }

  .admin-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .admin-media-manage-section {
    padding: 78px 0;
  }

  .admin-media-wrapper {
    grid-template-columns: 1fr;
  }

  .admin-media-control-card {
    position: static;
  }

  .media-option-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .admin-media-manage-section {
    padding: 64px 0;
  }

  .admin-media-shape {
    display: none;
  }

  .admin-media-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .admin-media-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .admin-media-control-card,
  .admin-media-grid-card {
    padding: 22px;
    border-radius: 30px;
  }

  .media-option-list {
    grid-template-columns: 1fr;
  }

  .media-grid-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-toolbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .media-toolbar-btn {
    width: 100%;
  }

  .admin-media-grid {
    grid-template-columns: 1fr;
  }

  .media-thumb {
    height: 225px;
  }

  .media-save-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-save-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .admin-media-manage-section {
    padding: 54px 0;
  }

  .admin-media-manage-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .admin-media-manage-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .admin-media-head h2 {
    font-size: 30px;
  }

  .admin-media-head p {
    font-size: 14.5px;
  }

  .admin-media-control-card,
  .admin-media-grid-card {
    padding: 18px;
    border-radius: 26px;
  }

  .media-control-top {
    grid-template-columns: 1fr;
  }

  .media-control-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 22px;
  }

  .media-upload-box {
    padding: 20px;
    border-radius: 24px;
  }

  .media-upload-icon {
    width: 60px;
    height: 60px;
    border-radius: 21px;
    font-size: 27px;
  }

  .media-option-item {
    flex-direction: column;
    padding: 15px;
  }

  .media-option-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .media-grid-toolbar h3,
  .media-control-top h3 {
    font-size: 22px;
  }

  .media-toolbar-actions {
    grid-template-columns: 1fr;
  }

  .media-thumb {
    height: 205px;
  }

  .media-item-actions {
    gap: 8px;
  }

  .media-action-btn {
    min-height: 40px;
  }

  .add-new-media {
    min-height: 230px;
  }
}

@media (max-width: 380px) {
  .admin-media-head h2 {
    font-size: 27px;
  }

  .media-thumb {
    height: 185px;
  }

  .admin-media-control-card,
  .admin-media-grid-card {
    padding: 16px;
  }
}

/* ================= ADMIN MEDIA MANAGE SECTION END ================= */

/* ================= GALLERY SECTION END ================= */

/* ================= CSR SECTION START ================= */

/* ================= CSR INTRODUCTION SECTION START ================= */

.csr-intro-section,
.csr-intro-section * {
  box-sizing: border-box;
}

.csr-intro-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.csr-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.csr-intro-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.csr-intro-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: csrIntroFloat 7s ease-in-out infinite;
}

.csr-intro-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 100px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.csr-intro-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 70px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes csrIntroFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.csr-intro-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 50px;
  align-items: center;
}

/* Content */

.csr-intro-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.csr-intro-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-intro-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.csr-intro-content h2 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.csr-intro-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csr-intro-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Feature List */

.csr-intro-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 26px;
}

.csr-intro-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.csr-intro-feature::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.csr-intro-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.csr-intro-feature:hover::before {
  transform: scaleX(1);
}

.csr-intro-feature-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.csr-intro-feature-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.csr-intro-feature-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.csr-intro-feature:hover .csr-intro-feature-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.csr-intro-feature div {
  position: relative;
  z-index: 2;
}

.csr-intro-feature h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.csr-intro-feature p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.csr-intro-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.csr-intro-btn-main,
.csr-intro-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.csr-intro-btn-main {
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.csr-intro-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.csr-intro-btn-soft {
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.csr-intro-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* Visual Card */

.csr-intro-visual-card {
  position: relative;
  min-width: 0;
}

.csr-intro-image {
  position: relative;
  height: 540px;
  padding: 14px;
  border-radius: 40px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 30px 90px rgba(37, 99, 235, 0.16),
    0 16px 36px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.csr-intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  transition: 0.85s ease;
}

.csr-intro-image:hover img {
  transform: scale(1.06);
}

.csr-intro-image-overlay {
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06) 10%, rgba(15, 23, 42, 0.68) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.22), transparent 60%);
  pointer-events: none;
}

.csr-intro-image-badge {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 4;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12.5px;
  font-weight: 900;
}

/* Impact Card */

.csr-impact-card {
  position: relative;
  z-index: 5;
  width: calc(100% - 58px);
  margin: -115px auto 0;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.csr-impact-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.csr-impact-head span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.csr-impact-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.55px;
}

.csr-impact-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 15px 32px rgba(34, 197, 94, 0.24);
  font-size: 23px;
}

.csr-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.csr-impact-box {
  padding: 16px 12px;
  border-radius: 22px;
  text-align: center;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.csr-impact-box strong,
.csr-impact-box span {
  display: block;
}

.csr-impact-box strong {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.csr-impact-box.green strong {
  color: var(--accent-color);
}

.csr-impact-box.sky strong {
  color: var(--secondary-color);
}

.csr-impact-box span {
  margin-top: 8px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 850;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .csr-intro-section {
    padding: 90px 0;
  }

  .csr-intro-wrapper {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 34px;
  }

  .csr-intro-image {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .csr-intro-section {
    padding: 78px 0;
  }

  .csr-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .csr-intro-content {
    text-align: center;
  }

  .csr-intro-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .csr-intro-feature-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .csr-intro-feature {
    text-align: left;
  }

  .csr-intro-actions {
    justify-content: center;
  }

  .csr-intro-visual-card {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .csr-intro-section {
    padding: 64px 0;
  }

  .csr-intro-shape {
    display: none;
  }

  .csr-intro-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .csr-intro-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .csr-intro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .csr-intro-btn-main,
  .csr-intro-btn-soft {
    width: 100%;
  }

  .csr-intro-image {
    height: 430px;
    padding: 10px;
    border-radius: 30px;
  }

  .csr-intro-image img,
  .csr-intro-image-overlay {
    border-radius: 22px;
  }

  .csr-intro-image-overlay {
    inset: 10px;
  }

  .csr-intro-image-badge {
    left: 22px;
    top: 22px;
  }

  .csr-impact-card {
    width: calc(100% - 28px);
    margin-top: -80px;
    padding: 20px;
    border-radius: 26px;
  }

  .csr-impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .csr-intro-section {
    padding: 54px 0;
  }

  .csr-intro-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .csr-intro-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .csr-intro-content h2 {
    font-size: 30px;
  }

  .csr-intro-content > p {
    font-size: 14.5px;
  }

  .csr-intro-feature {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .csr-intro-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .csr-intro-image {
    height: 390px;
    border-radius: 26px;
  }

  .csr-intro-image img,
  .csr-intro-image-overlay {
    border-radius: 19px;
  }

  .csr-intro-image-badge {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .csr-impact-card {
    width: 100%;
    margin-top: 18px;
  }

  .csr-impact-head {
    grid-template-columns: 1fr;
  }

  .csr-impact-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    font-size: 21px;
  }
}

@media (max-width: 380px) {
  .csr-intro-content h2 {
    font-size: 27px;
  }

  .csr-intro-image {
    height: 350px;
  }

  .csr-impact-card {
    padding: 18px;
  }
}

/* ================= CSR INTRODUCTION SECTION END ================= */

/* ================= CSR FOCUS AREAS SECTION START ================= */

.csr-focus-section,
.csr-focus-section * {
  box-sizing: border-box;
}

.csr-focus-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.csr-focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.csr-focus-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.csr-focus-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: csrFocusFloat 7s ease-in-out infinite;
}

.csr-focus-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.csr-focus-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes csrFocusFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.csr-focus-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.csr-focus-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-focus-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.csr-focus-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.csr-focus-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csr-focus-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Grid */

.csr-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */

.csr-focus-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.csr-focus-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.csr-focus-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 5px;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.csr-focus-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.csr-focus-card:hover::before {
  transform: scale(1.22);
  background: rgba(34, 197, 94, 0.10);
}

.csr-focus-card:hover::after {
  transform: scaleX(1);
}

.csr-focus-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 29px;
  transition: var(--transition);
}

.csr-focus-card:hover .csr-focus-icon {
  transform: rotate(-5deg) translateY(-5px);
}

.csr-focus-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.csr-focus-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
}

.csr-focus-icon.orange {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.csr-focus-icon.purple {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 16px 34px rgba(99, 102, 241, 0.22);
}

.csr-focus-number {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  min-width: 46px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 12px;
  font-weight: 950;
}

.csr-focus-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.55px;
}

.csr-focus-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 19px;
  color: var(--text-color);
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.72;
}

.csr-focus-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.csr-focus-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.csr-focus-card ul li i {
  color: var(--accent-color);
  font-size: 16px;
  line-height: 1.2;
}

.csr-focus-card > a {
  position: relative;
  z-index: 2;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 17px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: var(--transition);
}

.csr-focus-card > a:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.34);
}

/* Highlight Card */

.csr-focus-highlight {
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-color: transparent;
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.24);
}

.csr-focus-highlight::before {
  background: rgba(255, 255, 255, 0.13);
}

.csr-focus-highlight::after {
  background: rgba(255, 255, 255, 0.55);
  transform: scaleX(1);
}

.csr-focus-highlight .csr-focus-icon.white {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.csr-focus-highlight .csr-focus-number {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.csr-focus-highlight h3,
.csr-focus-highlight p {
  color: var(--white-color);
}

.csr-focus-highlight p {
  color: rgba(255, 255, 255, 0.86);
}

.csr-highlight-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.csr-highlight-stats div {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-highlight-stats strong,
.csr-highlight-stats span {
  display: block;
}

.csr-highlight-stats strong {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.csr-highlight-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.csr-focus-highlight .csr-highlight-btn {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 15px 32px rgba(15, 23, 42, 0.16);
}

.csr-focus-highlight .csr-highlight-btn:hover {
  color: var(--white-color);
  background: var(--footer-bg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .csr-focus-section {
    padding: 90px 0;
  }

  .csr-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 991px) {
  .csr-focus-section {
    padding: 78px 0;
  }

  .csr-focus-head {
    margin-bottom: 38px;
  }
}

@media (max-width: 767px) {
  .csr-focus-section {
    padding: 64px 0;
  }

  .csr-focus-shape {
    display: none;
  }

  .csr-focus-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .csr-focus-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .csr-focus-grid {
    grid-template-columns: 1fr;
  }

  .csr-focus-card {
    padding: 24px;
    border-radius: 30px;
  }

  .csr-focus-card > a {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .csr-focus-section {
    padding: 54px 0;
  }

  .csr-focus-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .csr-focus-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .csr-focus-head h2 {
    font-size: 30px;
  }

  .csr-focus-head p {
    font-size: 14.5px;
  }

  .csr-focus-card {
    padding: 20px;
    border-radius: 26px;
  }

  .csr-focus-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
    font-size: 25px;
    margin-bottom: 18px;
  }

  .csr-focus-number {
    right: 20px;
    top: 20px;
    height: 34px;
    min-width: 40px;
    font-size: 11px;
  }

  .csr-focus-card h3 {
    font-size: 20px;
  }

  .csr-highlight-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .csr-focus-head h2 {
    font-size: 27px;
  }

  .csr-focus-card {
    padding: 18px;
  }

  .csr-focus-card h3 {
    font-size: 18.5px;
  }
}

/* ================= CSR FOCUS AREAS SECTION END ================= */

/* ================= CSR ENQUIRY FORM SECTION START ================= */

.csr-enquiry-section,
.csr-enquiry-section * {
  box-sizing: border-box;
}

.csr-enquiry-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.csr-enquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.csr-enquiry-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.csr-enquiry-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: csrEnquiryFloat 7s ease-in-out infinite;
}

.csr-enquiry-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.csr-enquiry-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes csrEnquiryFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.csr-enquiry-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 46px;
  align-items: center;
}

/* Left Content */

.csr-enquiry-content {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.csr-enquiry-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-enquiry-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.csr-enquiry-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.csr-enquiry-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csr-enquiry-content > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Info List */

.csr-enquiry-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 24px;
}

.csr-enquiry-info-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.csr-enquiry-info-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.csr-enquiry-info-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.csr-enquiry-info-item:hover::before {
  transform: scaleX(1);
}

.csr-enquiry-info-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.csr-enquiry-info-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.csr-enquiry-info-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.csr-enquiry-info-item:hover .csr-enquiry-info-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.csr-enquiry-info-item div {
  position: relative;
  z-index: 2;
}

.csr-enquiry-info-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.csr-enquiry-info-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Contact Strip */

.csr-contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.csr-contact-strip a {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 24px;
  text-decoration: none;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.csr-contact-strip a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.csr-contact-strip a > i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 19px;
}

.csr-contact-strip a:nth-child(2) > i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.csr-contact-strip span,
.csr-contact-strip strong {
  display: block;
}

.csr-contact-strip span {
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 850;
}

.csr-contact-strip strong {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

/* Form Card */

.csr-enquiry-form-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.csr-enquiry-form-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.csr-enquiry-form-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Form Head */

.csr-form-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.csr-form-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.csr-form-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.csr-form-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Form */

.csr-enquiry-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.csr-form-group {
  min-width: 0;
}

.csr-form-group.full,
.csr-form-note.full,
.csr-form-submit.full {
  grid-column: 1 / -1;
}

.csr-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 12.5px;
  font-weight: 900;
}

.csr-form-group label span {
  color: #ef4444;
}

.csr-form-group input,
.csr-form-group select,
.csr-form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 17px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.csr-form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
    linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.csr-form-group textarea {
  min-height: 126px;
  resize: vertical;
  line-height: 1.65;
}

.csr-form-group input::placeholder,
.csr-form-group textarea::placeholder {
  color: var(--text-light);
}

.csr-form-group input:focus,
.csr-form-group select:focus,
.csr-form-group textarea:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Note */

.csr-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text-color);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

.csr-form-note i {
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1.2;
}

/* Submit */

.csr-form-submit button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: var(--transition);
}

.csr-form-submit button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .csr-enquiry-section {
    padding: 90px 0;
  }

  .csr-enquiry-wrapper {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: 34px;
  }

  .csr-enquiry-form-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .csr-enquiry-section {
    padding: 78px 0;
  }

  .csr-enquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .csr-enquiry-content {
    text-align: center;
  }

  .csr-enquiry-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .csr-enquiry-info-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .csr-enquiry-info-item {
    text-align: left;
  }

  .csr-contact-strip {
    max-width: 760px;
    margin: 0 auto;
  }

  .csr-enquiry-form-card {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .csr-enquiry-section {
    padding: 64px 0;
  }

  .csr-enquiry-shape {
    display: none;
  }

  .csr-enquiry-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .csr-enquiry-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .csr-contact-strip {
    grid-template-columns: 1fr;
  }

  .csr-enquiry-form-card {
    padding: 24px;
    border-radius: 30px;
  }

  .csr-form-head {
    grid-template-columns: 1fr;
  }

  .csr-enquiry-form {
    grid-template-columns: 1fr;
  }

  .csr-form-group.full,
  .csr-form-note.full,
  .csr-form-submit.full {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .csr-enquiry-section {
    padding: 54px 0;
  }

  .csr-enquiry-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .csr-enquiry-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .csr-enquiry-content h2 {
    font-size: 30px;
  }

  .csr-enquiry-content > p {
    font-size: 14.5px;
  }

  .csr-enquiry-info-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .csr-enquiry-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .csr-contact-strip a {
    min-height: 68px;
    border-radius: 20px;
  }

  .csr-contact-strip a > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .csr-enquiry-form-card {
    padding: 20px;
    border-radius: 26px;
  }

  .csr-form-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 22px;
  }

  .csr-form-group input,
  .csr-form-group select,
  .csr-form-group textarea {
    min-height: 50px;
    border-radius: 15px;
    font-size: 13px;
  }

  .csr-form-submit button {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .csr-enquiry-content h2 {
    font-size: 27px;
  }

  .csr-enquiry-form-card {
    padding: 18px;
  }

  .csr-form-head h3 {
    font-size: 22px;
  }
}

/* ================= CSR ENQUIRY FORM SECTION END ================= */

/* ================= CSR COLLABORATION SECTION START ================= */

.csr-collab-section,
.csr-collab-section * {
  box-sizing: border-box;
}

.csr-collab-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.csr-collab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.csr-collab-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.csr-collab-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: csrCollabFloat 7s ease-in-out infinite;
}

.csr-collab-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.csr-collab-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes csrCollabFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.csr-collab-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.csr-collab-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-collab-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.csr-collab-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.csr-collab-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csr-collab-head p {
  max-width: 790px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.csr-collab-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 42px;
  align-items: center;
}

/* Visual */

.csr-collab-visual {
  position: relative;
  min-width: 0;
}

.csr-collab-visual::before {
  content: "";
  position: absolute;
  inset: 30px -18px -18px 28px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(34, 197, 94, 0.12));
  filter: blur(2px);
  z-index: -1;
}

.csr-collab-image {
  position: relative;
  min-height: 560px;
  padding: 14px;
  border-radius: 40px;
  background:
    linear-gradient(var(--white-color), var(--white-color)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(14, 165, 233, 0.24), rgba(34, 197, 94, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 30px 90px rgba(37, 99, 235, 0.16),
    0 16px 36px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.csr-collab-image img {
  width: 100%;
  height: 532px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  transition: 0.85s ease;
}

.csr-collab-image:hover img {
  transform: scale(1.06);
}

.csr-collab-overlay {
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.20) 45%, rgba(15, 23, 42, 0.72) 100%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.22), transparent 62%);
  pointer-events: none;
}

.csr-collab-badge {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 4;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12.5px;
  font-weight: 900;
}

.csr-collab-floating-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.csr-collab-floating-card i {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.csr-collab-floating-card strong,
.csr-collab-floating-card span {
  display: block;
}

.csr-collab-floating-card strong {
  color: var(--white-color);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.csr-collab-floating-card span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
}

/* Content Card */

.csr-collab-content-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.csr-collab-content-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.csr-collab-content-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

.csr-collab-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.csr-collab-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.csr-collab-card-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.csr-collab-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Steps */

.csr-collab-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.csr-collab-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 15px;
  padding: 17px;
  border-radius: 24px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.csr-collab-step::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.csr-collab-step:hover {
  transform: translateY(-5px);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.csr-collab-step:hover::before {
  transform: scaleX(1);
}

.csr-collab-step-no {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.22);
  font-size: 15px;
  font-weight: 950;
}

.csr-collab-step-no.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.22);
}

.csr-collab-step-no.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.22);
}

.csr-collab-step-no.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 13px 28px rgba(249, 115, 22, 0.22);
}

.csr-collab-step h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.csr-collab-step p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.6;
}

/* Benefits */

.csr-collab-benefit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.csr-collab-benefit {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  border-radius: 18px;
  color: var(--heading-color);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 12.8px;
  font-weight: 850;
}

.csr-collab-benefit i {
  color: var(--accent-color);
  font-size: 17px;
}

/* Actions */

.csr-collab-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.csr-collab-btn-main,
.csr-collab-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: var(--transition);
}

.csr-collab-btn-main {
  padding: 14px 22px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.csr-collab-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.csr-collab-btn-soft {
  padding: 14px 20px;
  color: var(--accent-color);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 34%),
    rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-sm);
}

.csr-collab-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .csr-collab-section {
    padding: 90px 0;
  }

  .csr-collab-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
    gap: 32px;
  }

  .csr-collab-image {
    min-height: 520px;
  }

  .csr-collab-image img {
    height: 492px;
  }

  .csr-collab-content-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .csr-collab-section {
    padding: 78px 0;
  }

  .csr-collab-wrapper {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .csr-collab-visual,
  .csr-collab-content-card {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .csr-collab-section {
    padding: 64px 0;
  }

  .csr-collab-shape {
    display: none;
  }

  .csr-collab-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .csr-collab-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .csr-collab-visual::before {
    display: none;
  }

  .csr-collab-image {
    min-height: 440px;
    padding: 10px;
    border-radius: 30px;
  }

  .csr-collab-image img {
    height: 420px;
    border-radius: 22px;
  }

  .csr-collab-overlay {
    inset: 10px;
    border-radius: 22px;
  }

  .csr-collab-badge {
    left: 22px;
    top: 22px;
  }

  .csr-collab-floating-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .csr-collab-content-card {
    padding: 24px;
    border-radius: 30px;
  }

  .csr-collab-card-head {
    grid-template-columns: 1fr;
  }

  .csr-collab-benefit-grid {
    grid-template-columns: 1fr;
  }

  .csr-collab-actions {
    grid-template-columns: 1fr;
  }

  .csr-collab-btn-main,
  .csr-collab-btn-soft {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .csr-collab-section {
    padding: 54px 0;
  }

  .csr-collab-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .csr-collab-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .csr-collab-head h2 {
    font-size: 30px;
  }

  .csr-collab-head p {
    font-size: 14.5px;
  }

  .csr-collab-image {
    min-height: 390px;
    border-radius: 26px;
  }

  .csr-collab-image img {
    height: 370px;
    border-radius: 19px;
  }

  .csr-collab-overlay {
    border-radius: 19px;
  }

  .csr-collab-badge {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .csr-collab-floating-card {
    padding: 14px;
    border-radius: 22px;
  }

  .csr-collab-floating-card i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 18px;
    font-size: 21px;
  }

  .csr-collab-floating-card strong {
    font-size: 27px;
  }

  .csr-collab-content-card {
    padding: 20px;
    border-radius: 26px;
  }

  .csr-collab-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 22px;
  }

  .csr-collab-step {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 21px;
  }

  .csr-collab-step-no {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

@media (max-width: 380px) {
  .csr-collab-head h2 {
    font-size: 27px;
  }

  .csr-collab-image {
    min-height: 350px;
  }

  .csr-collab-image img {
    height: 330px;
  }

  .csr-collab-content-card {
    padding: 18px;
  }
}

/* ================= CSR COLLABORATION SECTION END ================= */

/* ================= CSR PARTNER LOGOS SECTION START ================= */

.csr-partner-logo-section,
.csr-partner-logo-section * {
  box-sizing: border-box;
}

.csr-partner-logo-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.csr-partner-logo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.csr-partner-logo-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.csr-logo-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: csrLogoFloat 7s ease-in-out infinite;
}

.csr-logo-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.csr-logo-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes csrLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.csr-logo-head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.csr-partner-logo-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-partner-logo-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.csr-logo-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.csr-logo-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csr-logo-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Approval Strip */

.csr-logo-approval-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  margin-bottom: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 20px 54px rgba(37, 99, 235, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.approval-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.approval-strip-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 26px;
}

.approval-strip-left span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.approval-strip-left h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.6px;
  line-height: 1.25;
}

.approval-strip-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Status Pills */

.status-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.status-pill.approved {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.16);
}

.status-pill.pending {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.16);
}

/* Logo Grid */

.csr-partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.csr-logo-card {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.csr-logo-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.csr-logo-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 5px;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.csr-logo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.csr-logo-card:hover::before {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.csr-logo-card:hover::after {
  transform: scaleX(1);
}

.csr-logo-status {
  position: relative;
  z-index: 2;
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.16);
  font-size: 11.5px;
  font-weight: 950;
}

.csr-logo-status.pending {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.16);
}

.csr-logo-box {
  position: relative;
  z-index: 2;
  min-height: 130px;
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(238, 246, 255, 0.92));
  border: 1px solid var(--border-color);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.csr-logo-box img {
  max-width: 170px;
  max-height: 72px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: var(--transition);
}

.csr-logo-card:hover .csr-logo-box img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.pending-logo {
  opacity: 0.72;
}

.pending-logo .csr-logo-box {
  position: relative;
}

.pending-logo .csr-logo-box::after {
  content: "Hidden until approved";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  padding: 15px;
}

.csr-logo-info {
  position: relative;
  z-index: 2;
}

.csr-logo-info h4 {
  margin: 0 0 7px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.35px;
}

.csr-logo-info p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.55;
}

/* Bottom CTA */

.csr-logo-bottom-card {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.24);
  overflow: hidden;
}

.csr-logo-bottom-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.csr-logo-bottom-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
}

.csr-logo-bottom-content,
.csr-logo-bottom-actions {
  position: relative;
  z-index: 2;
}

.csr-logo-bottom-content span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.csr-logo-bottom-content h3 {
  margin: 0 0 10px;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.csr-logo-bottom-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14.2px;
  font-weight: 600;
  line-height: 1.7;
}

.csr-logo-bottom-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.csr-logo-btn-main,
.csr-logo-btn-soft {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  white-space: nowrap;
  transition: var(--transition);
}

.csr-logo-btn-main {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.csr-logo-btn-main:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

.csr-logo-btn-soft {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.csr-logo-btn-soft:hover {
  color: var(--primary-color);
  background: var(--white-color);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .csr-partner-logo-section {
    padding: 90px 0;
  }

  .csr-partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .csr-logo-card {
    padding: 22px;
  }

  .csr-logo-bottom-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .csr-partner-logo-section {
    padding: 78px 0;
  }

  .csr-logo-approval-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .csr-partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .csr-logo-bottom-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .csr-partner-logo-section {
    padding: 64px 0;
  }

  .csr-logo-shape {
    display: none;
  }

  .csr-logo-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .csr-logo-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .approval-strip-left {
    align-items: flex-start;
  }

  .approval-strip-left h3 {
    font-size: 21px;
  }

  .csr-partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .csr-logo-card {
    padding: 22px;
    border-radius: 28px;
  }

  .csr-logo-box {
    min-height: 120px;
  }

  .csr-logo-bottom-card {
    padding: 24px;
    border-radius: 28px;
  }

  .csr-logo-bottom-content h3 {
    font-size: 25px;
  }

  .csr-logo-bottom-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .csr-logo-btn-main,
  .csr-logo-btn-soft {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .csr-partner-logo-section {
    padding: 54px 0;
  }

  .csr-partner-logo-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .csr-partner-logo-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .csr-logo-head h2 {
    font-size: 30px;
  }

  .csr-logo-head p {
    font-size: 14.5px;
  }

  .csr-logo-approval-strip {
    padding: 20px;
    border-radius: 26px;
  }

  .approval-strip-left {
    flex-direction: column;
  }

  .approval-strip-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 19px;
    font-size: 23px;
  }

  .approval-strip-status {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .status-pill {
    justify-content: center;
    width: 100%;
  }

  .csr-logo-card {
    padding: 18px;
    border-radius: 25px;
  }

  .csr-logo-box {
    padding: 20px;
    border-radius: 22px;
  }

  .csr-logo-box img {
    max-width: 150px;
  }

  .csr-logo-bottom-card {
    padding: 20px;
    border-radius: 25px;
  }

  .csr-logo-bottom-content h3 {
    font-size: 22px;
  }

  .csr-logo-bottom-content p {
    font-size: 13.5px;
  }
}

@media (max-width: 380px) {
  .csr-logo-head h2 {
    font-size: 27px;
  }

  .csr-logo-card {
    padding: 16px;
  }

  .csr-logo-bottom-card {
    padding: 18px;
  }
}

/* ================= CSR PARTNER LOGOS SECTION END ================= */

/* ================= CSR SECTION END ================= */


/* ================= CONTACT SECTION START ================= */

/* ================= CONTACT FORM SECTION START ================= */

.contact-form-section,
.contact-form-section * {
  box-sizing: border-box;
}

.contact-form-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.contact-form-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: contactFormFloat 7s ease-in-out infinite;
}

.contact-form-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.contact-form-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes contactFormFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.contact-form-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 46px;
  align-items: center;
}

/* Left Content */

.contact-form-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-form-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-form-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.contact-form-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.contact-form-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form-content > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Info List */

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 24px;
}

.contact-info-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.contact-info-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-info-item:hover::before {
  transform: scaleX(1);
}

.contact-info-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.contact-info-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.contact-info-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.contact-info-item:hover .contact-info-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.contact-info-item div {
  position: relative;
  z-index: 2;
}

.contact-info-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.contact-info-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-info-item a {
  color: inherit;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

/* Social Strip */

.contact-social-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-strip a {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 19px;
  transition: var(--transition);
}

.contact-social-strip a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Form Card */

.contact-form-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.contact-form-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Card Head */

.contact-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.contact-card-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.contact-card-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Form */

.contact-main-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-group {
  min-width: 0;
}

.contact-form-group.full,
.contact-form-note.full,
.contact-form-submit.full {
  grid-column: 1 / -1;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 12.5px;
  font-weight: 900;
}

.contact-form-group label span {
  color: #ef4444;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 17px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.contact-form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
    linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.contact-form-group textarea {
  min-height: 126px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: var(--text-light);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Note */

.contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text-color);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

.contact-form-note i {
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1.2;
}

/* Submit */

.contact-form-submit button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form-submit button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .contact-form-section {
    padding: 90px 0;
  }

  .contact-form-wrapper {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 34px;
  }

  .contact-form-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .contact-form-section {
    padding: 78px 0;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-form-content {
    text-align: center;
  }

  .contact-form-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-item {
    text-align: left;
  }

  .contact-social-strip {
    justify-content: center;
  }

  .contact-form-card {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 64px 0;
  }

  .contact-form-shape {
    display: none;
  }

  .contact-form-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .contact-form-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .contact-form-card {
    padding: 24px;
    border-radius: 30px;
  }

  .contact-card-head {
    grid-template-columns: 1fr;
  }

  .contact-main-form {
    grid-template-columns: 1fr;
  }

  .contact-form-group.full,
  .contact-form-note.full,
  .contact-form-submit.full {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .contact-form-section {
    padding: 54px 0;
  }

  .contact-form-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .contact-form-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .contact-form-content h2 {
    font-size: 30px;
  }

  .contact-form-content > p {
    font-size: 14.5px;
  }

  .contact-info-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .contact-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .contact-social-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-social-strip a {
    width: 100%;
  }

  .contact-form-card {
    padding: 20px;
    border-radius: 26px;
  }

  .contact-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 22px;
  }

  .contact-form-group input,
  .contact-form-group select,
  .contact-form-group textarea {
    min-height: 50px;
    border-radius: 15px;
    font-size: 13px;
  }

  .contact-form-submit button {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .contact-form-content h2 {
    font-size: 27px;
  }

  .contact-form-card {
    padding: 18px;
  }

  .contact-card-head h3 {
    font-size: 22px;
  }
}

/* ================= CONTACT FORM SECTION END ================= */

/* ================= GOOGLE MAP SECTION START ================= */

.google-map-section,
.google-map-section * {
  box-sizing: border-box;
}

.google-map-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.google-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.google-map-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.google-map-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: googleMapFloat 7s ease-in-out infinite;
}

.google-map-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.google-map-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes googleMapFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.google-map-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.google-map-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.google-map-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.google-map-head h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.google-map-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google-map-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.google-map-wrapper {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Info Card */

.map-info-card,
.map-frame-card {
  position: relative;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.map-info-card {
  padding: 28px;
}

.map-info-card::before,
.map-frame-card::before {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

/* Top */

.map-info-top,
.map-frame-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.map-info-top span,
.map-frame-toolbar span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.map-info-top h3,
.map-frame-toolbar h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.6px;
}

.map-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.24);
  font-size: 24px;
}

/* Address */

.map-address-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

.map-address-box > i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 20px;
}

.map-address-box h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
}

.map-address-box p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* Contact Grid */

.map-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.map-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 22px;
  color: inherit;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.map-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.map-contact-item > i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.map-contact-item:nth-child(2) > i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.map-contact-item span,
.map-contact-item strong {
  display: block;
}

.map-contact-item span {
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 850;
}

.map-contact-item strong {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 950;
}

/* Note */

.map-note-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--text-color);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
}

.map-note-box i {
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1.2;
}

.map-note-box p {
  margin: 0;
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

/* Buttons */

.map-action-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.map-btn-main,
.map-btn-soft {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.map-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.map-btn-main:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.map-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.map-btn-soft:hover {
  color: var(--white-color);
  background: var(--green-gradient);
  transform: translateY(-4px);
}

/* Map Frame */

.map-frame-card {
  padding: 28px;
}

.map-live-badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.google-map-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--footer-bg);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.google-map-frame iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: saturate(1.08) contrast(1.02);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .google-map-section {
    padding: 90px 0;
  }

  .google-map-wrapper {
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 22px;
  }

  .google-map-frame,
  .google-map-frame iframe {
    min-height: 500px;
    height: 500px;
  }
}

@media (max-width: 991px) {
  .google-map-section {
    padding: 78px 0;
  }

  .google-map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-map-frame,
  .google-map-frame iframe {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 767px) {
  .google-map-section {
    padding: 64px 0;
  }

  .google-map-shape {
    display: none;
  }

  .google-map-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .google-map-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .map-info-card,
  .map-frame-card {
    padding: 22px;
    border-radius: 30px;
  }

  .map-info-top,
  .map-frame-toolbar {
    grid-template-columns: 1fr;
  }

  .map-contact-grid {
    grid-template-columns: 1fr;
  }

  .google-map-frame,
  .google-map-frame iframe {
    min-height: 390px;
    height: 390px;
    border-radius: 22px;
  }
}

@media (max-width: 575px) {
  .google-map-section {
    padding: 54px 0;
  }

  .google-map-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .google-map-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .google-map-head h2 {
    font-size: 30px;
  }

  .google-map-head p {
    font-size: 14.5px;
  }

  .map-info-card,
  .map-frame-card {
    padding: 18px;
    border-radius: 26px;
  }

  .map-info-top h3,
  .map-frame-toolbar h3 {
    font-size: 22px;
  }

  .map-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 22px;
  }

  .map-address-box {
    flex-direction: column;
    padding: 16px;
    border-radius: 21px;
  }

  .map-address-box > i,
  .map-contact-item > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .map-contact-item {
    border-radius: 20px;
  }

  .google-map-frame,
  .google-map-frame iframe {
    min-height: 330px;
    height: 330px;
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .google-map-head h2 {
    font-size: 27px;
  }

  .google-map-frame,
  .google-map-frame iframe {
    min-height: 300px;
    height: 300px;
  }
}

/* ================= GOOGLE MAP SECTION END ================= */

/* ================= ADDRESS PHONE DETAILS SECTION START ================= */

.contact-detail-section,
.contact-detail-section * {
  box-sizing: border-box;
}

.contact-detail-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.13), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.contact-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.contact-detail-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Background Shapes */

.contact-detail-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: contactDetailFloat 7s ease-in-out infinite;
}

.contact-detail-bg-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 130px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.contact-detail-bg-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes contactDetailFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.contact-detail-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-detail-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.contact-detail-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.contact-detail-head h2 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.contact-detail-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-detail-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.contact-detail-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 24px;
}

/* Card */

.contact-detail-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.contact-detail-card::before {
  content: "";
  position: absolute;
  right: -75px;
  top: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.contact-detail-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 5px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.contact-detail-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.contact-detail-card:hover::before {
  transform: scale(1.18);
  background: rgba(34, 197, 94, 0.10);
}

.contact-detail-card:hover::after {
  transform: scaleX(1);
}

.contact-detail-card.featured {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  border-color: transparent;
}

.contact-detail-card.featured::before {
  background: rgba(255, 255, 255, 0.12);
}

.contact-detail-card.featured::after {
  background: rgba(255, 255, 255, 0.58);
  transform: scaleX(1);
}

/* Icon */

.contact-detail-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 30px;
  transition: var(--transition);
}

.contact-detail-card.featured .contact-detail-icon {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.contact-detail-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.contact-detail-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #16a34a);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.contact-detail-card:hover .contact-detail-icon {
  transform: rotate(-5deg) translateY(-5px);
}

/* Content */

.contact-detail-content {
  position: relative;
  z-index: 2;
}

.contact-detail-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.contact-detail-card.featured .contact-detail-content span {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-detail-content h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.55px;
}

.contact-detail-content p {
  margin: 0 0 22px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.contact-detail-card.featured .contact-detail-content h3,
.contact-detail-card.featured .contact-detail-content p {
  color: var(--white-color);
}

.contact-detail-card.featured .contact-detail-content p {
  color: rgba(255, 255, 255, 0.86);
}

/* Button */

.contact-detail-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.25);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.contact-detail-card.featured .contact-detail-btn {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 15px 32px rgba(15, 23, 42, 0.16);
}

.contact-detail-btn.green {
  background: var(--green-gradient);
  box-shadow: 0 15px 32px rgba(34, 197, 94, 0.24);
}

.contact-detail-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #16a34a);
  box-shadow: 0 15px 32px rgba(34, 197, 94, 0.24);
}

.contact-detail-btn:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .contact-detail-section {
    padding: 90px 0;
  }

  .contact-detail-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .contact-detail-card {
    padding: 26px;
  }
}

@media (max-width: 991px) {
  .contact-detail-section {
    padding: 78px 0;
  }

  .contact-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-detail-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .contact-detail-section {
    padding: 64px 0;
  }

  .contact-detail-bg {
    display: none;
  }

  .contact-detail-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .contact-detail-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .contact-detail-card {
    padding: 24px;
    border-radius: 30px;
  }

  .contact-detail-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-detail-section {
    padding: 54px 0;
  }

  .contact-detail-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .contact-detail-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .contact-detail-head h2 {
    font-size: 30px;
  }

  .contact-detail-head p {
    font-size: 14.5px;
  }

  .contact-detail-card {
    padding: 20px;
    border-radius: 26px;
  }

  .contact-detail-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
    font-size: 25px;
    margin-bottom: 18px;
  }

  .contact-detail-content h3 {
    font-size: 21px;
  }

  .contact-detail-content p {
    font-size: 13.5px;
  }
}

@media (max-width: 380px) {
  .contact-detail-head h2 {
    font-size: 27px;
  }

  .contact-detail-card {
    padding: 18px;
  }

  .contact-detail-content h3 {
    font-size: 19px;
  }
}

/* ================= ADDRESS PHONE DETAILS SECTION END ================= */

/* ================= CONTACT SECTION END ================= */

/* ================= VOLUNTER SECTION START ================= */

/* ================= VOLUNTEER REGISTRATION SECTION START ================= */

.volunteer-registration-section,
.volunteer-registration-section * {
  box-sizing: border-box;
}

.volunteer-registration-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.volunteer-registration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.volunteer-registration-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.volunteer-reg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: volunteerRegFloat 7s ease-in-out infinite;
}

.volunteer-reg-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.volunteer-reg-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes volunteerRegFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.volunteer-registration-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 46px;
  align-items: center;
}

/* Left Content */

.volunteer-registration-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.volunteer-registration-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.volunteer-registration-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.volunteer-registration-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.volunteer-registration-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.volunteer-registration-content > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Benefit List */

.volunteer-benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 24px;
}

.volunteer-benefit-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.volunteer-benefit-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.volunteer-benefit-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.volunteer-benefit-item:hover::before {
  transform: scaleX(1);
}

.volunteer-benefit-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.volunteer-benefit-icon.green {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.volunteer-benefit-icon.sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.27), transparent 36%),
    linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.volunteer-benefit-item:hover .volunteer-benefit-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.volunteer-benefit-item h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.volunteer-benefit-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Contact Strip */

.volunteer-contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.volunteer-contact-strip a {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 24px;
  text-decoration: none;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.volunteer-contact-strip a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.volunteer-contact-strip a > i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 19px;
}

.volunteer-contact-strip a:nth-child(2) > i {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.volunteer-contact-strip span,
.volunteer-contact-strip strong {
  display: block;
}

.volunteer-contact-strip span {
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 850;
}

.volunteer-contact-strip strong {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

/* Form Card */

.volunteer-registration-form-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.volunteer-registration-form-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.volunteer-registration-form-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Form Head */

.volunteer-form-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.volunteer-form-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.volunteer-form-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.volunteer-form-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Form */

.volunteer-registration-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.volunteer-form-group {
  min-width: 0;
}

.volunteer-form-group.full,
.volunteer-form-note.full,
.volunteer-form-submit.full {
  grid-column: 1 / -1;
}

.volunteer-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 12.5px;
  font-weight: 900;
}

.volunteer-form-group label span {
  color: #ef4444;
}

.volunteer-form-group input,
.volunteer-form-group select,
.volunteer-form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 17px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.volunteer-form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
    linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.volunteer-form-group textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.65;
}

.volunteer-form-group input::placeholder,
.volunteer-form-group textarea::placeholder {
  color: var(--text-light);
}

.volunteer-form-group input:focus,
.volunteer-form-group select:focus,
.volunteer-form-group textarea:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Note */

.volunteer-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text-color);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

.volunteer-form-note i {
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1.2;
}

/* Submit */

.volunteer-form-submit button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: var(--transition);
}

.volunteer-form-submit button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .volunteer-registration-section {
    padding: 90px 0;
  }

  .volunteer-registration-wrapper {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    gap: 34px;
  }

  .volunteer-registration-form-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .volunteer-registration-section {
    padding: 78px 0;
  }

  .volunteer-registration-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .volunteer-registration-content {
    text-align: center;
  }

  .volunteer-registration-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .volunteer-benefit-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .volunteer-benefit-item {
    text-align: left;
  }

  .volunteer-contact-strip {
    max-width: 760px;
    margin: 0 auto;
  }

  .volunteer-registration-form-card {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .volunteer-registration-section {
    padding: 64px 0;
  }

  .volunteer-reg-shape {
    display: none;
  }

  .volunteer-registration-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .volunteer-registration-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .volunteer-contact-strip {
    grid-template-columns: 1fr;
  }

  .volunteer-registration-form-card {
    padding: 24px;
    border-radius: 30px;
  }

  .volunteer-form-head {
    grid-template-columns: 1fr;
  }

  .volunteer-registration-form {
    grid-template-columns: 1fr;
  }

  .volunteer-form-group.full,
  .volunteer-form-note.full,
  .volunteer-form-submit.full {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .volunteer-registration-section {
    padding: 54px 0;
  }

  .volunteer-registration-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .volunteer-registration-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .volunteer-registration-content h2 {
    font-size: 30px;
  }

  .volunteer-registration-content > p {
    font-size: 14.5px;
  }

  .volunteer-benefit-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .volunteer-benefit-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .volunteer-contact-strip a {
    min-height: 68px;
    border-radius: 20px;
  }

  .volunteer-contact-strip a > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .volunteer-registration-form-card {
    padding: 20px;
    border-radius: 26px;
  }

  .volunteer-form-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 22px;
  }

  .volunteer-form-group input,
  .volunteer-form-group select,
  .volunteer-form-group textarea {
    min-height: 50px;
    border-radius: 15px;
    font-size: 13px;
  }

  .volunteer-form-submit button {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .volunteer-registration-content h2 {
    font-size: 27px;
  }

  .volunteer-registration-form-card {
    padding: 18px;
  }

  .volunteer-form-head h3 {
    font-size: 22px;
  }
}

/* ================= VOLUNTEER REGISTRATION SECTION END ================= */

/* ================= AREA OF INTEREST SECTION START ================= */

.interest-area-section,
.interest-area-section * {
  box-sizing: border-box;
}

.interest-area-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.interest-area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.interest-area-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.interest-area-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: interestAreaFloat 7s ease-in-out infinite;
}

.interest-area-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.interest-area-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes interestAreaFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.interest-area-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.interest-area-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.interest-area-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.interest-area-head h2 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.interest-area-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.interest-area-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Grid */

.interest-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */

.interest-area-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.interest-area-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-area-card::before {
  content: "";
  position: absolute;
  right: -75px;
  top: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.interest-area-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 5px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.interest-area-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.interest-area-card:hover::before {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.interest-area-card:hover::after {
  transform: scaleX(1);
}

/* Checked State */

.interest-area-card:has(input:checked) {
  border-color: rgba(37, 99, 235, 0.45);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.24);
}

.interest-area-card:has(input:checked)::after {
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(1);
}

.interest-area-card:has(input:checked) h3,
.interest-area-card:has(input:checked) p {
  color: var(--white-color);
}

.interest-area-card:has(input:checked) p {
  color: rgba(255, 255, 255, 0.86);
}

/* Check */

.interest-check {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  transition: var(--transition);
}

.interest-area-card:has(input:checked) .interest-check {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: transparent;
  transform: scale(1.08);
}

/* Icon */

.interest-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 30px;
  transition: var(--transition);
}

.interest-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.interest-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.22);
}

.interest-icon.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.interest-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 16px 34px rgba(99, 102, 241, 0.22);
}

.interest-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
}

.interest-area-card:hover .interest-icon {
  transform: rotate(-5deg) translateY(-5px);
}

.interest-area-card:has(input:checked) .interest-icon {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

/* Content */

.interest-area-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.55px;
}

.interest-area-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.72;
}

/* Bottom */

.interest-area-bottom {
  margin-top: 28px;
  padding: 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.interest-area-bottom div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.5;
}

.interest-area-bottom div i {
  color: var(--primary-color);
  font-size: 18px;
}

.interest-area-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  white-space: nowrap;
  transition: var(--transition);
}

.interest-area-btn:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .interest-area-section {
    padding: 90px 0;
  }

  .interest-area-grid {
    gap: 20px;
  }

  .interest-area-card {
    padding: 26px;
  }
}

@media (max-width: 991px) {
  .interest-area-section {
    padding: 78px 0;
  }

  .interest-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interest-area-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .interest-area-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .interest-area-section {
    padding: 64px 0;
  }

  .interest-area-shape {
    display: none;
  }

  .interest-area-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .interest-area-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .interest-area-grid {
    grid-template-columns: 1fr;
  }

  .interest-area-card {
    padding: 24px;
    border-radius: 30px;
  }
}

@media (max-width: 575px) {
  .interest-area-section {
    padding: 54px 0;
  }

  .interest-area-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .interest-area-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .interest-area-head h2 {
    font-size: 30px;
  }

  .interest-area-head p {
    font-size: 14.5px;
  }

  .interest-area-card {
    padding: 20px;
    border-radius: 26px;
  }

  .interest-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
    font-size: 25px;
    margin-bottom: 18px;
  }

  .interest-check {
    right: 18px;
    top: 18px;
    width: 31px;
    height: 31px;
  }

  .interest-area-card h3 {
    font-size: 20px;
  }

  .interest-area-bottom {
    padding: 18px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .interest-area-head h2 {
    font-size: 27px;
  }

  .interest-area-card {
    padding: 18px;
  }

  .interest-area-card h3 {
    font-size: 18.5px;
  }
}

/* ================= AREA OF INTEREST SECTION END ================= */

/* ================= AVAILABILITY SECTION START ================= */

.availability-section,
.availability-section * {
  box-sizing: border-box;
}

.availability-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.availability-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.availability-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.availability-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: availabilityFloat 7s ease-in-out infinite;
}

.availability-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.availability-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes availabilityFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.availability-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.availability-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.availability-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.availability-head h2 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.availability-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.availability-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.availability-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Card */

.availability-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.availability-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.availability-card::before {
  content: "";
  position: absolute;
  right: -75px;
  top: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.availability-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 5px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.availability-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.availability-card:hover::before {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.availability-card:hover::after {
  transform: scaleX(1);
}

/* Checked State */

.availability-card:has(input:checked) {
  border-color: rgba(37, 99, 235, 0.45);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.24);
}

.availability-card:has(input:checked)::after {
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(1);
}

.availability-card:has(input:checked) .availability-content span,
.availability-card:has(input:checked) .availability-content h3,
.availability-card:has(input:checked) .availability-content p {
  color: var(--white-color);
}

.availability-card:has(input:checked) .availability-content p {
  color: rgba(255, 255, 255, 0.86);
}

/* Check */

.availability-check {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  transition: var(--transition);
}

.availability-card:has(input:checked) .availability-check {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: transparent;
  transform: scale(1.08);
}

/* Icon */

.availability-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 29px;
  transition: var(--transition);
}

.availability-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.availability-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
}

.availability-icon.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.availability-card:hover .availability-icon {
  transform: rotate(-5deg) translateY(-5px);
}

.availability-card:has(input:checked) .availability-icon {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

/* Content */

.availability-content {
  position: relative;
  z-index: 2;
}

.availability-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
  transition: var(--transition);
}

.availability-content h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.55px;
  transition: var(--transition);
}

.availability-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.6px;
  font-weight: 500;
  line-height: 1.7;
  transition: var(--transition);
}

/* Note */

.availability-note-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.availability-note-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.availability-note-left > i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 20px;
}

.availability-note-left h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.availability-note-left p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

.availability-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  white-space: nowrap;
  transition: var(--transition);
}

.availability-btn:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .availability-section {
    padding: 90px 0;
  }

  .availability-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .availability-section {
    padding: 78px 0;
  }

  .availability-note-card {
    grid-template-columns: 1fr;
  }

  .availability-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .availability-section {
    padding: 64px 0;
  }

  .availability-shape {
    display: none;
  }

  .availability-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .availability-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .availability-wrapper {
    grid-template-columns: 1fr;
  }

  .availability-card {
    padding: 24px;
    border-radius: 30px;
  }

  .availability-note-card {
    padding: 22px;
    border-radius: 28px;
  }
}

@media (max-width: 575px) {
  .availability-section {
    padding: 54px 0;
  }

  .availability-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .availability-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .availability-head h2 {
    font-size: 30px;
  }

  .availability-head p {
    font-size: 14.5px;
  }

  .availability-card {
    padding: 20px;
    border-radius: 26px;
  }

  .availability-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
    font-size: 25px;
    margin-bottom: 18px;
  }

  .availability-check {
    right: 18px;
    top: 18px;
    width: 31px;
    height: 31px;
  }

  .availability-content h3 {
    font-size: 20px;
  }

  .availability-note-card {
    padding: 18px;
    border-radius: 24px;
  }

  .availability-note-left {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .availability-head h2 {
    font-size: 27px;
  }

  .availability-card {
    padding: 18px;
  }

  .availability-content h3 {
    font-size: 18.5px;
  }
}

/* ================= AVAILABILITY SECTION END ================= */

/* ================= EXPERIENCE SECTION START ================= */

.experience-section,
.experience-section * {
  box-sizing: border-box;
}

.experience-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.experience-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.experience-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: experienceFloat 7s ease-in-out infinite;
}

.experience-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.experience-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes experienceFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.experience-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.experience-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.experience-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.experience-head h2 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.experience-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Wrapper */

.experience-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Card */

.experience-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.experience-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.experience-card::before {
  content: "";
  position: absolute;
  right: -75px;
  top: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.experience-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 5px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-9px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.experience-card:hover::before {
  transform: scale(1.2);
  background: rgba(34, 197, 94, 0.10);
}

.experience-card:hover::after {
  transform: scaleX(1);
}

/* Checked */

.experience-card:has(input:checked) {
  border-color: rgba(37, 99, 235, 0.45);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.24);
}

.experience-card:has(input:checked)::after {
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(1);
}

.experience-card:has(input:checked) .experience-content span,
.experience-card:has(input:checked) .experience-content h3,
.experience-card:has(input:checked) .experience-content p {
  color: var(--white-color);
}

.experience-card:has(input:checked) .experience-content p {
  color: rgba(255, 255, 255, 0.86);
}

/* Check */

.experience-check {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  transition: var(--transition);
}

.experience-card:has(input:checked) .experience-check {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: transparent;
  transform: scale(1.08);
}

/* Icon */

.experience-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-size: 29px;
  transition: var(--transition);
}

.experience-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.experience-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
}

.experience-icon.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.experience-card:hover .experience-icon {
  transform: rotate(-5deg) translateY(-5px);
}

.experience-card:has(input:checked) .experience-icon {
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

/* Content */

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
  transition: var(--transition);
}

.experience-content h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.55px;
  transition: var(--transition);
}

.experience-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.6px;
  font-weight: 500;
  line-height: 1.7;
  transition: var(--transition);
}

/* Detail Card */

.experience-detail-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.experience-detail-left {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.experience-detail-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.23);
  font-size: 23px;
}

.experience-detail-left h3 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.55px;
}

.experience-detail-left p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.8px;
  font-weight: 500;
  line-height: 1.7;
}

.experience-textarea-wrap {
  min-width: 0;
}

.experience-textarea-wrap label {
  display: block;
  margin-bottom: 9px;
  color: var(--heading-color);
  font-size: 12.5px;
  font-weight: 900;
}

.experience-textarea-wrap textarea {
  width: 100%;
  min-height: 128px;
  padding: 14px 15px;
  border-radius: 18px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  resize: vertical;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.65;
  transition: var(--transition);
}

.experience-textarea-wrap textarea::placeholder {
  color: var(--text-light);
}

.experience-textarea-wrap textarea:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .experience-section {
    padding: 90px 0;
  }

  .experience-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .experience-section {
    padding: 78px 0;
  }

  .experience-detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .experience-section {
    padding: 64px 0;
  }

  .experience-shape {
    display: none;
  }

  .experience-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .experience-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .experience-wrapper {
    grid-template-columns: 1fr;
  }

  .experience-card {
    padding: 24px;
    border-radius: 30px;
  }

  .experience-detail-card {
    padding: 24px;
    border-radius: 30px;
  }
}

@media (max-width: 575px) {
  .experience-section {
    padding: 54px 0;
  }

  .experience-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .experience-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .experience-head h2 {
    font-size: 30px;
  }

  .experience-head p {
    font-size: 14.5px;
  }

  .experience-card {
    padding: 20px;
    border-radius: 26px;
  }

  .experience-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
    font-size: 25px;
    margin-bottom: 18px;
  }

  .experience-check {
    right: 18px;
    top: 18px;
    width: 31px;
    height: 31px;
  }

  .experience-content h3 {
    font-size: 20px;
  }

  .experience-detail-card {
    padding: 20px;
    border-radius: 26px;
  }

  .experience-detail-left {
    flex-direction: column;
  }

  .experience-detail-left h3 {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .experience-head h2 {
    font-size: 27px;
  }

  .experience-card {
    padding: 18px;
  }

  .experience-content h3 {
    font-size: 18.5px;
  }
}

/* ================= EXPERIENCE SECTION END ================= */

/* ================= MESSAGE SECTION START ================= */

.message-section,
.message-section * {
  box-sizing: border-box;
}

.message-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.message-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.message-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.message-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: messageFloat 7s ease-in-out infinite;
}

.message-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.message-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes messageFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.message-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 46px;
  align-items: center;
}

/* Left Content */

.message-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.message-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.message-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.message-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-family: var(--font-family);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.message-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.message-content > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.message-point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.message-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.message-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.message-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.message-point:hover::before {
  transform: scaleX(1);
}

.message-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.message-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.message-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.message-point:hover .message-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.message-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.message-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Form Card */

.message-form-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.message-form-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.message-form-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Head */

.message-form-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.message-form-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.message-form-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.message-form-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.25);
  font-size: 25px;
}

/* Form */

.message-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.message-form-group {
  min-width: 0;
}

.message-form-group.full,
.message-tips.full,
.message-form-note.full,
.message-form-submit.full {
  grid-column: 1 / -1;
}

.message-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 12.5px;
  font-weight: 900;
}

.message-form-group label span {
  color: #ef4444;
}

.message-form-group select,
.message-form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 17px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.message-form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
    linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.message-form-group textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.65;
}

.message-form-group textarea::placeholder {
  color: var(--text-light);
}

.message-form-group select:focus,
.message-form-group textarea:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Tips */

.message-tips {
  padding: 17px;
  border-radius: 22px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.message-tips h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 950;
}

.message-tips h4 i {
  color: var(--primary-color);
}

.message-tip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.message-tip-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.45;
}

.message-tip-grid span i {
  color: var(--accent-color);
}

/* Note */

.message-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text-color);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

.message-form-note i {
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1.2;
}

/* Submit */

.message-form-submit button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: var(--transition);
}

.message-form-submit button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .message-section {
    padding: 90px 0;
  }

  .message-wrapper {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 34px;
  }

  .message-form-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .message-section {
    padding: 78px 0;
  }

  .message-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .message-content {
    text-align: center;
  }

  .message-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .message-point-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .message-point {
    text-align: left;
  }

  .message-form-card {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .message-section {
    padding: 64px 0;
  }

  .message-shape {
    display: none;
  }

  .message-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .message-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .message-form-card {
    padding: 24px;
    border-radius: 30px;
  }

  .message-form-head {
    grid-template-columns: 1fr;
  }

  .message-form {
    grid-template-columns: 1fr;
  }

  .message-form-group.full,
  .message-tips.full,
  .message-form-note.full,
  .message-form-submit.full {
    grid-column: auto;
  }

  .message-tip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .message-section {
    padding: 54px 0;
  }

  .message-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .message-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .message-content h2 {
    font-size: 30px;
  }

  .message-content > p {
    font-size: 14.5px;
  }

  .message-point {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }

  .message-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .message-form-card {
    padding: 20px;
    border-radius: 26px;
  }

  .message-form-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 22px;
  }

  .message-form-group select,
  .message-form-group textarea {
    min-height: 50px;
    border-radius: 15px;
    font-size: 13px;
  }

  .message-form-group textarea {
    min-height: 145px;
  }

  .message-form-submit button {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .message-content h2 {
    font-size: 27px;
  }

  .message-form-card {
    padding: 18px;
  }

  .message-form-head h3 {
    font-size: 22px;
  }
}

/* ================= MESSAGE SECTION END ================= */

/* ================= ADMIN VOLUNTEER SUBMISSIONS SECTION START ================= */

.admin-volunteer-section,
.admin-volunteer-section * {
  box-sizing: border-box;
}

.admin-volunteer-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.admin-volunteer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.admin-volunteer-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.admin-volunteer-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: adminVolunteerFloat 7s ease-in-out infinite;
}

.admin-volunteer-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.admin-volunteer-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes adminVolunteerFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Head */

.admin-volunteer-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.admin-volunteer-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.admin-volunteer-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.admin-volunteer-head h2 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.admin-volunteer-head h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-volunteer-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.82;
}

/* Dashboard Stats */

.admin-volunteer-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.admin-volunteer-stat {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.admin-volunteer-stat::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.admin-volunteer-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.13);
}

.admin-stat-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.23);
  font-size: 23px;
}

.admin-stat-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.23);
}

.admin-stat-icon.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.21);
}

.admin-stat-icon.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.21);
}

.admin-volunteer-stat div:last-child {
  position: relative;
  z-index: 2;
}

.admin-volunteer-stat span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 850;
}

.admin-volunteer-stat h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.8px;
}

/* Panel */

.admin-volunteer-panel {
  position: relative;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

/* Toolbar */

.admin-volunteer-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-bottom: 1px solid var(--border-color);
}

.admin-toolbar-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-toolbar-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.23);
  font-size: 24px;
}

.admin-toolbar-title span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.admin-toolbar-title h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.admin-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-search-box {
  position: relative;
  width: 240px;
}

.admin-search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 15px;
}

.admin-search-box input,
.admin-filter-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: var(--light-bg);
  color: var(--heading-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 750;
  transition: var(--transition);
}

.admin-search-box input {
  padding: 12px 15px 12px 42px;
}

.admin-filter-select {
  width: 150px;
  padding: 12px 16px;
  cursor: pointer;
}

.admin-search-box input:focus,
.admin-filter-select:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.admin-export-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  transition: var(--transition);
}

.admin-export-btn:hover {
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.34);
}

/* Table */

.admin-volunteer-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-volunteer-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
}

.admin-volunteer-table thead {
  background: rgba(37, 99, 235, 0.06);
}

.admin-volunteer-table th {
  padding: 17px 18px;
  color: var(--heading-color);
  font-size: 12px;
  font-weight: 950;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
}

.admin-volunteer-table td {
  padding: 18px;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 650;
  border-bottom: 1px solid rgba(220, 232, 245, 0.78);
  vertical-align: middle;
}

.admin-volunteer-table tbody tr {
  transition: var(--transition);
}

.admin-volunteer-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.035);
}

.text-right {
  text-align: right !important;
}

/* User */

.volunteer-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.volunteer-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
  font-size: 13px;
  font-weight: 950;
}

.volunteer-avatar.green {
  background: var(--green-gradient);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.20);
}

.volunteer-avatar.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.20);
}

.volunteer-user h4 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 14.5px;
  font-weight: 950;
  white-space: nowrap;
}

.volunteer-user span {
  display: block;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

/* Contact */

.volunteer-contact a,
.volunteer-contact span {
  display: block;
}

.volunteer-contact a {
  margin-bottom: 5px;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 900;
}

.volunteer-contact a:hover {
  color: var(--primary-color);
}

.volunteer-contact span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 650;
}

/* Tags */

.interest-tag,
.simple-text {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.interest-tag {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.interest-tag.green {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border-color: rgba(34, 197, 94, 0.14);
}

.interest-tag.sky {
  color: var(--secondary-color);
  background: rgba(14, 165, 233, 0.09);
  border-color: rgba(14, 165, 233, 0.14);
}

.simple-text {
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
}

/* Status */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.status-badge.pending {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.16);
}

.status-badge.approved {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.16);
}

.status-badge.rejected {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.16);
}

/* Actions */

.action-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.action-btn.view {
  color: var(--primary-color);
}

.action-btn.approve {
  color: var(--accent-color);
}

.action-btn.reject {
  color: #ef4444;
}

.action-btn:hover {
  color: var(--white-color);
  transform: translateY(-3px);
}

.action-btn.view:hover {
  background: var(--primary-gradient);
}

.action-btn.approve:hover {
  background: var(--green-gradient);
}

.action-btn.reject:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Footer */

.admin-volunteer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
}

.admin-footer-info {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.admin-footer-info i {
  color: var(--accent-color);
  font-size: 17px;
}

.admin-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-pagination a {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: var(--transition);
}

.admin-pagination a.active,
.admin-pagination a:hover {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .admin-volunteer-section {
    padding: 90px 0;
  }

  .admin-volunteer-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-volunteer-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-toolbar-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .admin-volunteer-section {
    padding: 78px 0;
  }

  .admin-search-box {
    width: 100%;
  }

  .admin-filter-select {
    flex: 1;
    min-width: 180px;
  }

  .admin-export-btn {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .admin-volunteer-section {
    padding: 64px 0;
  }

  .admin-volunteer-shape {
    display: none;
  }

  .admin-volunteer-head h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .admin-volunteer-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .admin-volunteer-dashboard {
    grid-template-columns: 1fr;
  }

  .admin-volunteer-panel {
    border-radius: 30px;
  }

  .admin-volunteer-toolbar {
    padding: 22px;
  }

  .admin-toolbar-title {
    align-items: flex-start;
  }

  .admin-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-filter-select,
  .admin-export-btn {
    width: 100%;
  }

  .admin-volunteer-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-pagination {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .admin-volunteer-table {
    min-width: 0;
  }

  .admin-volunteer-table thead {
    display: none;
  }

  .admin-volunteer-table,
  .admin-volunteer-table tbody,
  .admin-volunteer-table tr,
  .admin-volunteer-table td {
    display: block;
    width: 100%;
  }

  .admin-volunteer-table tbody tr {
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
  }

  .admin-volunteer-table td {
    position: relative;
    padding: 11px 0;
    border-bottom: 0;
  }

  .admin-volunteer-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 7px;
    color: var(--heading-color);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .text-right {
    text-align: left !important;
  }

  .action-group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .action-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .admin-volunteer-section {
    padding: 54px 0;
  }

  .admin-volunteer-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .admin-volunteer-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .admin-volunteer-head h2 {
    font-size: 30px;
  }

  .admin-volunteer-head p {
    font-size: 14.5px;
  }

  .admin-volunteer-stat {
    padding: 18px;
    border-radius: 24px;
  }

  .admin-stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 18px;
    font-size: 21px;
  }

  .admin-volunteer-stat h3 {
    font-size: 26px;
  }

  .admin-volunteer-panel {
    border-radius: 26px;
  }

  .admin-toolbar-title {
    flex-direction: column;
  }

  .admin-toolbar-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    font-size: 22px;
  }

  .admin-toolbar-title h3 {
    font-size: 22px;
  }

  .admin-volunteer-footer {
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .admin-volunteer-head h2 {
    font-size: 27px;
  }

  .admin-volunteer-toolbar {
    padding: 18px;
  }

  .admin-pagination a {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }
}

/* ================= ADMIN VOLUNTEER SUBMISSIONS SECTION END ================= */

/* =================  VOLUNTEER SECTION END ================= */

/* ================= DONATE SECTION START ================= */

/* ================= TRAINING PARTNER SECTION START ================= */

.training-partner-section,
.training-partner-section * {
  box-sizing: border-box;
}

.training-partner-section {
  position: relative;
  isolation: isolate;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.17), transparent 31%),
    radial-gradient(circle at 94% 10%, rgba(14, 165, 233, 0.15), transparent 32%),
    radial-gradient(circle at 85% 90%, rgba(34, 197, 94, 0.16), transparent 34%),
    linear-gradient(180deg, var(--white-color) 0%, #f7fbff 45%, var(--light-bg) 100%);
  overflow: hidden;
}

.training-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 82%, transparent 100%);
  pointer-events: none;
}

.training-partner-section::after {
  content: "";
  position: absolute;
  inset: 38px;
  z-index: -2;
  border-radius: 46px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.training-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.training-partner-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: trainingPartnerFloat 7s ease-in-out infinite;
}

.training-partner-shape-1 {
  width: 330px;
  height: 330px;
  left: -155px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(10px);
}

.training-partner-shape-2 {
  width: 430px;
  height: 430px;
  right: -215px;
  bottom: 90px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(10px);
  animation-delay: 1.2s;
}

.training-partner-shape-3 {
  width: 160px;
  height: 160px;
  right: 18%;
  top: 58px;
  background: rgba(14, 165, 233, 0.13);
  filter: blur(8px);
  animation-delay: 0.6s;
}

@keyframes trainingPartnerFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-24px) scale(1.04);
  }
}

/* Wrapper */

.training-partner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  gap: 54px;
  align-items: center;
}

/* Content */

.training-partner-content {
  position: relative;
  z-index: 2;
}

.training-partner-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.95), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.training-partner-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 34%),
    var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.training-partner-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -2px;
}

.training-partner-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.training-partner-content > p {
  max-width: 700px;
  margin: 0 0 30px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
}

/* Points */

.training-partner-points {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.training-partner-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 19px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.98), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(220, 232, 245, 0.92);
  box-shadow:
    0 14px 35px rgba(15, 23, 42, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: var(--transition);
}

.training-partner-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.training-partner-point::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  opacity: 0;
  transition: var(--transition);
}

.training-partner-point:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow:
    0 22px 56px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

.training-partner-point:hover::before {
  transform: scaleX(1);
}

.training-partner-point:hover::after {
  opacity: 1;
}

.training-point-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  transition: var(--transition);
}

.training-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.25);
}

.training-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.25);
}

.training-partner-point:hover .training-point-icon {
  transform: rotate(-6deg) translateY(-4px) scale(1.04);
}

.training-partner-point h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  color: var(--heading-color);
  font-size: 16.5px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.training-partner-point p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.6px;
  font-weight: 500;
  line-height: 1.68;
}

/* Buttons */

.training-partner-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.training-btn-main,
.training-btn-soft {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.8px;
  font-weight: 950;
  transition: var(--transition);
}

.training-btn-main {
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 35%),
    var(--primary-gradient);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

.training-btn-soft {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(34, 197, 94, 0.20);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.training-btn-main:hover,
.training-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Visual */

.training-partner-visual {
  position: relative;
  min-width: 0;
}

.training-partner-visual::before {
  content: "";
  position: absolute;
  inset: 34px -18px 90px 34px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(34, 197, 94, 0.12));
  filter: blur(4px);
  z-index: -1;
}

.training-image-card {
  position: relative;
  min-height: 470px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--footer-bg);
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    0 32px 90px rgba(37, 99, 235, 0.18),
    0 18px 44px rgba(15, 23, 42, 0.12);
}

.training-image-card img {
  width: 100%;
  height: 470px;
  display: block;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.training-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.28) 45%, rgba(15, 23, 42, 0.88) 100%),
    radial-gradient(circle at 20% 15%, rgba(37, 99, 235, 0.25), transparent 35%),
    radial-gradient(circle at 86% 15%, rgba(34, 197, 94, 0.22), transparent 32%);
}

.training-image-card:hover img {
  transform: scale(1.07);
  opacity: 1;
}

.training-image-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}

.training-image-badge {
  min-height: 46px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  margin-bottom: 15px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 950;
}

.training-image-badge i {
  color: #facc15;
}

.training-image-content h3 {
  max-width: 430px;
  margin: 0 0 10px;
  color: var(--white-color);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.training-image-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.8px;
  font-weight: 600;
  line-height: 1.7;
}

.training-floating-stat {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 150px;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.training-floating-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.training-floating-stat span {
  display: block;
  color: var(--text-color);
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1.35;
}

/* Mini Cards */

.training-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.training-mini-card {
  position: relative;
  padding: 23px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.98), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 16px 42px rgba(15, 23, 42, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.training-mini-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.training-mini-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.20);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.14);
}

.training-mini-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 22px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.23);
}

.training-mini-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.23);
}

.training-mini-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.training-mini-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.62;
}

/* Bottom */

.training-partner-bottom {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.training-bottom-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.98), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: var(--transition);
}

.training-bottom-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.training-bottom-item:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 26px 62px rgba(37, 99, 235, 0.14);
}

.training-bottom-item:hover::before {
  transform: scaleX(1);
}

.training-bottom-item > i {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.23);
  font-size: 21px;
}

.training-bottom-item:nth-child(2) > i {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.23);
}

.training-bottom-item:nth-child(3) > i {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.23);
}

.training-bottom-item h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  color: var(--heading-color);
  font-size: 16.5px;
  font-weight: 950;
}

.training-bottom-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.3px;
  font-weight: 500;
  line-height: 1.62;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .training-partner-section {
    padding: 92px 0;
  }

  .training-partner-section::after {
    inset: 24px;
    border-radius: 36px;
  }

  .training-partner-wrapper {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .training-partner-section {
    padding: 78px 0;
  }

  .training-partner-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .training-partner-content {
    text-align: center;
  }

  .training-partner-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .training-partner-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .training-partner-point {
    text-align: left;
  }

  .training-partner-actions {
    justify-content: center;
  }

  .training-partner-visual {
    max-width: 820px;
    margin: 0 auto;
  }

  .training-partner-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .training-partner-section {
    padding: 64px 0;
  }

  .training-partner-section::after,
  .training-partner-shape {
    display: none;
  }

  .training-partner-content h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .training-partner-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .training-image-card,
  .training-image-card img {
    min-height: 395px;
    height: 395px;
    border-radius: 32px;
  }

  .training-floating-stat {
    width: auto;
    left: 22px;
    right: 22px;
    top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .training-floating-stat strong {
    margin-bottom: 0;
    font-size: 24px;
  }

  .training-mini-grid {
    grid-template-columns: 1fr;
  }

  .training-bottom-item {
    border-radius: 25px;
  }
}

@media (max-width: 575px) {
  .training-partner-section {
    padding: 54px 0;
  }

  .training-partner-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .training-partner-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .training-partner-content h2 {
    font-size: 30px;
  }

  .training-partner-content > p {
    font-size: 14.5px;
  }

  .training-partner-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .training-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .training-partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .training-btn-main,
  .training-btn-soft {
    width: 100%;
  }

  .training-image-card,
  .training-image-card img {
    min-height: 340px;
    height: 340px;
    border-radius: 26px;
  }

  .training-image-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .training-image-content h3 {
    font-size: 23px;
  }

  .training-image-content p {
    font-size: 12.8px;
  }

  .training-image-badge {
    min-height: 42px;
    font-size: 12px;
    padding: 10px 13px;
  }

  .training-floating-stat {
    left: 16px;
    right: 16px;
    top: 16px;
    padding: 13px;
    border-radius: 22px;
  }

  .training-mini-card,
  .training-bottom-item {
    padding: 18px;
  }

  .training-bottom-item {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .training-partner-content h2 {
    font-size: 27px;
  }

  .training-image-card,
  .training-image-card img {
    min-height: 315px;
    height: 315px;
  }

  .training-image-content h3 {
    font-size: 21px;
  }
}

/* ================= TRAINING PARTNER SECTION END ================= */

/* ================= CSR PARTNER SECTION START ================= */

.csr-partner-section,
.csr-partner-section * {
  box-sizing: border-box;
}

.csr-partner-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.csr-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.csr-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.csr-partner-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: csrPartnerFloat 7s ease-in-out infinite;
}

.csr-partner-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.csr-partner-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes csrPartnerFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.csr-partner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 48px;
  align-items: center;
}

/* Content */

.csr-partner-content {
  position: relative;
  z-index: 2;
}

.csr-partner-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.csr-partner-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.csr-partner-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.csr-partner-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.csr-partner-content > p {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.csr-partner-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.csr-partner-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.csr-partner-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.csr-partner-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.csr-partner-point:hover::before {
  transform: scaleX(1);
}

.csr-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.csr-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.csr-point-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 13px 28px rgba(236, 72, 153, 0.22);
}

.csr-partner-point:hover .csr-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.csr-partner-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.csr-partner-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Buttons */

.csr-partner-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.csr-partner-btn-main,
.csr-partner-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.csr-partner-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.csr-partner-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.csr-partner-btn-main:hover,
.csr-partner-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Right Card */

.csr-partner-card {
  position: relative;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.22),
    0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.csr-partner-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.csr-partner-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.csr-card-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.csr-card-top span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.csr-card-top h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.csr-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  font-size: 27px;
}

/* Benefits */

.csr-benefit-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.csr-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border-radius: 18px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.csr-benefit-item i {
  color: #bbf7d0;
  font-size: 17px;
  line-height: 1.25;
}

.csr-benefit-item span {
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.55;
}

/* Info Box */

.csr-partner-info-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: var(--white-color);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.csr-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
  font-size: 21px;
}

.csr-partner-info-box h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
}

.csr-partner-info-box p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.6;
}

/* Bottom Grid */

.csr-partner-bottom-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.csr-bottom-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}

.csr-bottom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.csr-bottom-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 22px;
}

.csr-bottom-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.csr-bottom-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.csr-bottom-card h4 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.csr-bottom-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .csr-partner-section {
    padding: 90px 0;
  }

  .csr-partner-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 34px;
  }
}

@media (max-width: 991px) {
  .csr-partner-section {
    padding: 78px 0;
  }

  .csr-partner-wrapper {
    grid-template-columns: 1fr;
  }

  .csr-partner-content {
    text-align: center;
  }

  .csr-partner-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .csr-partner-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .csr-partner-point {
    text-align: left;
  }

  .csr-partner-actions {
    justify-content: center;
  }

  .csr-partner-card {
    max-width: 780px;
    margin: 0 auto;
  }

  .csr-partner-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .csr-partner-section {
    padding: 64px 0;
  }

  .csr-partner-shape {
    display: none;
  }

  .csr-partner-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .csr-partner-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .csr-partner-card {
    padding: 26px;
    border-radius: 30px;
  }

  .csr-card-top {
    grid-template-columns: 1fr;
  }

  .csr-card-top h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .csr-partner-section {
    padding: 54px 0;
  }

  .csr-partner-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .csr-partner-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .csr-partner-content h2 {
    font-size: 30px;
  }

  .csr-partner-content > p {
    font-size: 14.5px;
  }

  .csr-partner-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .csr-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .csr-partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .csr-partner-btn-main,
  .csr-partner-btn-soft {
    width: 100%;
  }

  .csr-partner-card {
    padding: 22px;
    border-radius: 26px;
  }

  .csr-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .csr-card-top h3 {
    font-size: 23px;
  }

  .csr-partner-info-box {
    flex-direction: column;
  }

  .csr-bottom-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .csr-partner-content h2 {
    font-size: 27px;
  }

  .csr-partner-card {
    padding: 18px;
  }
}

/* ================= CSR PARTNER SECTION END ================= */

/* ================= INSTITUTIONAL PARTNER SECTION START ================= */

.institutional-partner-section,
.institutional-partner-section * {
  box-sizing: border-box;
}

.institutional-partner-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.institutional-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.institutional-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.institutional-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: institutionalFloat 7s ease-in-out infinite;
}

.institutional-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.institutional-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes institutionalFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.institutional-partner-wrapper {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  gap: 50px;
  align-items: center;
}

/* Visual */

.institutional-visual {
  position: relative;
  min-width: 0;
}

.institutional-image-card {
  position: relative;
  min-height: 470px;
  border-radius: 38px;
  overflow: hidden;
  background: var(--footer-bg);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08);
}

.institutional-image-card img {
  width: 100%;
  height: 470px;
  display: block;
  object-fit: cover;
  opacity: 0.94;
  transition: var(--transition);
}

.institutional-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.78) 100%),
    radial-gradient(circle at 20% 15%, rgba(37, 99, 235, 0.18), transparent 35%);
}

.institutional-image-card:hover img {
  transform: scale(1.06);
}

.institutional-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 950;
}

.institutional-image-badge i {
  color: #bbf7d0;
}

/* Floating Card */

.institutional-floating-card {
  position: absolute;
  right: -18px;
  top: 36px;
  z-index: 3;
  max-width: 260px;
  padding: 18px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.98), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.15);
}

.institutional-floating-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  font-size: 22px;
}

.institutional-floating-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 11.5px;
  font-weight: 850;
}

.institutional-floating-card h4 {
  margin: 0;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
}

/* Content */

.institutional-content {
  position: relative;
  z-index: 2;
}

.institutional-partner-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.institutional-partner-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.institutional-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.institutional-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.institutional-content > p {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.institutional-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.institutional-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.institutional-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.institutional-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.institutional-point:hover::before {
  transform: scaleX(1);
}

.institutional-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.institutional-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.institutional-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.institutional-point:hover .institutional-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.institutional-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.institutional-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.institutional-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.institutional-btn-main,
.institutional-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.institutional-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.institutional-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.institutional-btn-main:hover,
.institutional-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Benefit Grid */

.institutional-benefit-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.institutional-benefit-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.institutional-benefit-card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.institutional-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.institutional-benefit-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 22px;
}

.institutional-benefit-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.institutional-benefit-icon.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.20);
}

.institutional-benefit-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.20);
}

.institutional-benefit-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.institutional-benefit-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .institutional-partner-section {
    padding: 90px 0;
  }

  .institutional-partner-wrapper {
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
  }

  .institutional-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .institutional-partner-section {
    padding: 78px 0;
  }

  .institutional-partner-wrapper {
    grid-template-columns: 1fr;
  }

  .institutional-content {
    text-align: center;
  }

  .institutional-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .institutional-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .institutional-point {
    text-align: left;
  }

  .institutional-actions {
    justify-content: center;
  }

  .institutional-visual {
    max-width: 820px;
    margin: 0 auto;
    order: 2;
  }

  .institutional-content {
    order: 1;
  }
}

@media (max-width: 767px) {
  .institutional-partner-section {
    padding: 64px 0;
  }

  .institutional-shape {
    display: none;
  }

  .institutional-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .institutional-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .institutional-image-card,
  .institutional-image-card img {
    min-height: 380px;
    height: 380px;
    border-radius: 30px;
  }

  .institutional-floating-card {
    position: relative;
    right: auto;
    top: auto;
    max-width: 100%;
    margin-top: 16px;
  }

  .institutional-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .institutional-partner-section {
    padding: 54px 0;
  }

  .institutional-partner-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .institutional-partner-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .institutional-content h2 {
    font-size: 30px;
  }

  .institutional-content > p {
    font-size: 14.5px;
  }

  .institutional-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .institutional-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .institutional-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .institutional-btn-main,
  .institutional-btn-soft {
    width: 100%;
  }

  .institutional-image-card,
  .institutional-image-card img {
    min-height: 320px;
    height: 320px;
    border-radius: 26px;
  }

  .institutional-image-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    text-align: center;
  }

  .institutional-floating-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .institutional-benefit-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .institutional-content h2 {
    font-size: 27px;
  }

  .institutional-image-card,
  .institutional-image-card img {
    min-height: 285px;
    height: 285px;
  }
}

/* ================= INSTITUTIONAL PARTNER SECTION END ================= */

/* ================= VOLUNTEER PARTNER SECTION START ================= */

.volunteer-partner-section,
.volunteer-partner-section * {
  box-sizing: border-box;
}

.volunteer-partner-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.volunteer-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.volunteer-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.volunteer-partner-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: volunteerPartnerFloat 7s ease-in-out infinite;
}

.volunteer-partner-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.volunteer-partner-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes volunteerPartnerFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.volunteer-partner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 48px;
  align-items: center;
}

/* Content */

.volunteer-partner-content {
  position: relative;
  z-index: 2;
}

.volunteer-partner-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.volunteer-partner-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.volunteer-partner-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.volunteer-partner-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.volunteer-partner-content > p {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.volunteer-partner-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.volunteer-partner-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.volunteer-partner-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.volunteer-partner-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.volunteer-partner-point:hover::before {
  transform: scaleX(1);
}

.volunteer-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.volunteer-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.volunteer-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.volunteer-partner-point:hover .volunteer-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.volunteer-partner-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.volunteer-partner-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.volunteer-partner-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.volunteer-partner-btn-main,
.volunteer-partner-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.volunteer-partner-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.volunteer-partner-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.volunteer-partner-btn-main:hover,
.volunteer-partner-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Right Card */

.volunteer-partner-card {
  position: relative;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.22),
    0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.volunteer-partner-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.volunteer-partner-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.volunteer-card-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.volunteer-card-top span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.volunteer-card-top h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.volunteer-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  font-size: 27px;
}

/* Support List */

.volunteer-support-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.volunteer-support-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  border-radius: 22px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.volunteer-support-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.18);
}

.support-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  font-size: 19px;
}

.support-icon.green {
  color: var(--accent-color);
}

.support-icon.pink {
  color: #ec4899;
}

.support-icon.orange {
  color: #f97316;
}

.volunteer-support-item h4 {
  margin: 0 0 6px;
  color: var(--white-color);
  font-size: 15.5px;
  font-weight: 950;
}

.volunteer-support-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.9px;
  font-weight: 600;
  line-height: 1.55;
}

/* Bottom Cards */

.volunteer-partner-bottom {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.volunteer-bottom-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.volunteer-bottom-card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.volunteer-bottom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.volunteer-bottom-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 22px;
}

.volunteer-bottom-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.volunteer-bottom-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.volunteer-bottom-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.20);
}

.volunteer-bottom-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.volunteer-bottom-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .volunteer-partner-section {
    padding: 90px 0;
  }

  .volunteer-partner-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 34px;
  }

  .volunteer-partner-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .volunteer-partner-section {
    padding: 78px 0;
  }

  .volunteer-partner-wrapper {
    grid-template-columns: 1fr;
  }

  .volunteer-partner-content {
    text-align: center;
  }

  .volunteer-partner-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .volunteer-partner-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .volunteer-partner-point {
    text-align: left;
  }

  .volunteer-partner-actions {
    justify-content: center;
  }

  .volunteer-partner-card {
    max-width: 780px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .volunteer-partner-section {
    padding: 64px 0;
  }

  .volunteer-partner-shape {
    display: none;
  }

  .volunteer-partner-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .volunteer-partner-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .volunteer-partner-card {
    padding: 26px;
    border-radius: 30px;
  }

  .volunteer-card-top {
    grid-template-columns: 1fr;
  }

  .volunteer-card-top h3 {
    font-size: 26px;
  }

  .volunteer-partner-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .volunteer-partner-section {
    padding: 54px 0;
  }

  .volunteer-partner-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .volunteer-partner-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .volunteer-partner-content h2 {
    font-size: 30px;
  }

  .volunteer-partner-content > p {
    font-size: 14.5px;
  }

  .volunteer-partner-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .volunteer-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .volunteer-partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .volunteer-partner-btn-main,
  .volunteer-partner-btn-soft {
    width: 100%;
  }

  .volunteer-partner-card {
    padding: 22px;
    border-radius: 26px;
  }

  .volunteer-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .volunteer-card-top h3 {
    font-size: 23px;
  }

  .volunteer-support-item {
    flex-direction: column;
  }

  .volunteer-bottom-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .volunteer-partner-content h2 {
    font-size: 27px;
  }

  .volunteer-partner-card {
    padding: 18px;
  }
}

/* ================= VOLUNTEER PARTNER SECTION END ================= */


/* ================= EVENT PARTNER SECTION START ================= */

.event-partner-section,
.event-partner-section * {
  box-sizing: border-box;
}

.event-partner-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.event-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.event-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.event-partner-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: eventPartnerFloat 7s ease-in-out infinite;
}

.event-partner-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.event-partner-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes eventPartnerFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.event-partner-wrapper {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* Left Card */

.event-partner-card {
  position: relative;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.22),
    0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.event-partner-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.event-partner-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.event-card-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.event-card-top span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.event-card-top h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.event-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  font-size: 27px;
}

/* Support List */

.event-support-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.event-support-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  border-radius: 22px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.event-support-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.18);
}

.support-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  font-size: 19px;
}

.support-icon.green {
  color: var(--accent-color);
}

.support-icon.pink {
  color: #ec4899;
}

.support-icon.orange {
  color: #f97316;
}

.event-support-item h4 {
  margin: 0 0 6px;
  color: var(--white-color);
  font-size: 15.5px;
  font-weight: 950;
}

.event-support-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.9px;
  font-weight: 600;
  line-height: 1.55;
}

/* Content */

.event-partner-content {
  position: relative;
  z-index: 2;
}

.event-partner-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.event-partner-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.event-partner-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px ;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.event-partner-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-partner-content > p {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.event-partner-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.event-partner-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.event-partner-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.event-partner-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.event-partner-point:hover::before {
  transform: scaleX(1);
}

.event-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.event-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.event-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.event-partner-point:hover .event-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.event-partner-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.event-partner-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.event-partner-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.event-partner-btn-main,
.event-partner-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.event-partner-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.event-partner-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.event-partner-btn-main:hover,
.event-partner-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Bottom Cards */

.event-partner-bottom {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.event-bottom-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.event-bottom-card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.event-bottom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-bottom-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 22px;
}

.event-bottom-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.event-bottom-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.event-bottom-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.20);
}

.event-bottom-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.event-bottom-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .event-partner-section {
    padding: 90px 0;
  }

  .event-partner-wrapper {
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1fr);
    gap: 34px;
  }

  .event-partner-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .event-partner-section {
    padding: 78px 0;
  }

  .event-partner-wrapper {
    grid-template-columns: 1fr;
  }

  .event-partner-content {
    text-align: center;
  }

  .event-partner-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .event-partner-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .event-partner-point {
    text-align: left;
  }

  .event-partner-actions {
    justify-content: center;
  }

  .event-partner-card {
    max-width: 780px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .event-partner-section {
    padding: 64px 0;
  }

  .event-partner-shape {
    display: none;
  }

  .event-partner-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .event-partner-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .event-partner-card {
    padding: 26px;
    border-radius: 30px;
  }

  .event-card-top {
    grid-template-columns: 1fr;
  }

  .event-card-top h3 {
    font-size: 26px;
  }

  .event-partner-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .event-partner-section {
    padding: 54px 0;
  }

  .event-partner-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .event-partner-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .event-partner-content h2 {
    font-size: 30px;
  }

  .event-partner-content > p {
    font-size: 14.5px;
  }

  .event-partner-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .event-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .event-partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-partner-btn-main,
  .event-partner-btn-soft {
    width: 100%;
  }

  .event-partner-card {
    padding: 22px;
    border-radius: 26px;
  }

  .event-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .event-card-top h3 {
    font-size: 23px;
  }

  .event-support-item {
    flex-direction: column;
  }

  .event-bottom-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .event-partner-content h2 {
    font-size: 27px;
  }

  .event-partner-card {
    padding: 18px;
  }
}

/* ================= EVENT PARTNER SECTION END ================= */

/* ================= DONOR SUPPORT PARTNER SECTION START ================= */

.donor-support-section,
.donor-support-section * {
  box-sizing: border-box;
}

.donor-support-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.donor-support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.donor-support-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.donor-support-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: donorSupportFloat 7s ease-in-out infinite;
}

.donor-support-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.donor-support-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes donorSupportFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.donor-support-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 48px;
  align-items: center;
}

/* Content */

.donor-support-content {
  position: relative;
  z-index: 2;
}

.donor-support-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.donor-support-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.donor-support-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.donor-support-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.donor-support-content > p {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.donor-support-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.donor-support-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.donor-support-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.donor-support-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.donor-support-point:hover::before {
  transform: scaleX(1);
}

.donor-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.donor-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.donor-point-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 13px 28px rgba(236, 72, 153, 0.22);
}

.donor-support-point:hover .donor-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.donor-support-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.donor-support-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.donor-support-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.donor-btn-main,
.donor-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.donor-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.donor-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.donor-btn-main:hover,
.donor-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Right Card */

.donor-support-card {
  position: relative;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.22),
    0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.donor-support-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.donor-support-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.donor-card-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.donor-card-top span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.donor-card-top h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.donor-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  font-size: 27px;
}

/* Impact Box */

.donor-impact-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: var(--white-color);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.donor-impact-circle {
  width: 92px;
  height: 92px;
  min-width: 92px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--green-gradient);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.donor-impact-circle span {
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.donor-impact-circle strong {
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.donor-impact-box h4 {
  margin: 0 0 7px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 950;
}

.donor-impact-box p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.65;
}

/* Amount */

.donor-amount-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.donor-amount {
  min-height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: var(--transition);
}

.donor-amount.active,
.donor-amount:hover {
  color: var(--primary-color);
  background: var(--white-color);
  transform: translateY(-3px);
}

/* List */

.donor-support-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  margin-bottom: 18px;
}

.donor-support-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 18px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.donor-support-item i {
  color: #bbf7d0;
  font-size: 17px;
  line-height: 1.25;
}

.donor-support-item span {
  font-size: 13.2px;
  font-weight: 750;
  line-height: 1.55;
}

/* Donate Button */

.donor-card-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 56px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--primary-color);
  background: var(--white-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  transition: var(--transition);
}

.donor-card-btn:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Bottom Cards */

.donor-support-bottom {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.donor-bottom-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.donor-bottom-card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.donor-bottom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.donor-bottom-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 22px;
}

.donor-bottom-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.donor-bottom-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.donor-bottom-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.20);
}

.donor-bottom-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.donor-bottom-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .donor-support-section {
    padding: 90px 0;
  }

  .donor-support-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 34px;
  }

  .donor-support-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .donor-support-section {
    padding: 78px 0;
  }

  .donor-support-wrapper {
    grid-template-columns: 1fr;
  }

  .donor-support-content {
    text-align: center;
  }

  .donor-support-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .donor-support-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .donor-support-point {
    text-align: left;
  }

  .donor-support-actions {
    justify-content: center;
  }

  .donor-support-card {
    max-width: 780px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .donor-support-section {
    padding: 64px 0;
  }

  .donor-support-shape {
    display: none;
  }

  .donor-support-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .donor-support-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .donor-support-card {
    padding: 26px;
    border-radius: 30px;
  }

  .donor-card-top {
    grid-template-columns: 1fr;
  }

  .donor-card-top h3 {
    font-size: 26px;
  }

  .donor-impact-box {
    align-items: flex-start;
  }

  .donor-support-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .donor-support-section {
    padding: 54px 0;
  }

  .donor-support-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .donor-support-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .donor-support-content h2 {
    font-size: 30px;
  }

  .donor-support-content > p {
    font-size: 14.5px;
  }

  .donor-support-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .donor-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .donor-support-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .donor-btn-main,
  .donor-btn-soft {
    width: 100%;
  }

  .donor-support-card {
    padding: 22px;
    border-radius: 26px;
  }

  .donor-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .donor-card-top h3 {
    font-size: 23px;
  }

  .donor-impact-box {
    flex-direction: column;
  }

  .donor-amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donor-bottom-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .donor-support-content h2 {
    font-size: 27px;
  }

  .donor-support-card {
    padding: 18px;
  }

  .donor-impact-circle {
    width: 82px;
    height: 82px;
    min-width: 82px;
  }
}

/* ================= DONOR SUPPORT PARTNER SECTION END ================= */

/* ================= MEDIA RESOURCE KNOWLEDGE PARTNER SECTION START ================= */

.mrk-partner-section,
.mrk-partner-section * {
  box-sizing: border-box;
}

.mrk-partner-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 52%, var(--body-bg) 100%);
  overflow: hidden;
}

.mrk-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.mrk-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.mrk-partner-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: mrkPartnerFloat 7s ease-in-out infinite;
}

.mrk-partner-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.mrk-partner-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes mrkPartnerFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.mrk-partner-wrapper {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* Left Card */

.mrk-partner-card {
  position: relative;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(14, 165, 233, 0.96), rgba(34, 197, 94, 0.92));
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.22),
    0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.mrk-partner-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.mrk-partner-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.mrk-card-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.mrk-card-top span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.mrk-card-top h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.mrk-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  font-size: 27px;
}

/* Support List */

.mrk-support-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.mrk-support-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  border-radius: 22px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.mrk-support-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.18);
}

.mrk-support-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  font-size: 19px;
}

.mrk-support-icon.green {
  color: var(--accent-color);
}

.mrk-support-icon.orange {
  color: #f97316;
}

.mrk-support-icon.purple {
  color: #8b5cf6;
}

.mrk-support-item h4 {
  margin: 0 0 6px;
  color: var(--white-color);
  font-size: 15.5px;
  font-weight: 950;
}

.mrk-support-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.9px;
  font-weight: 600;
  line-height: 1.55;
}

/* Content */

.mrk-partner-content {
  position: relative;
  z-index: 2;
}

.mrk-partner-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.mrk-partner-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.mrk-partner-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.mrk-partner-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mrk-partner-content > p {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.mrk-partner-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.mrk-partner-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.mrk-partner-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.mrk-partner-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mrk-partner-point:hover::before {
  transform: scaleX(1);
}

.mrk-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.mrk-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.mrk-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.mrk-partner-point:hover .mrk-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.mrk-partner-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.mrk-partner-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Actions */

.mrk-partner-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.mrk-partner-btn-main,
.mrk-partner-btn-soft {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.mrk-partner-btn-main {
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.mrk-partner-btn-soft {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.mrk-partner-btn-main:hover,
.mrk-partner-btn-soft:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Bottom Cards */

.mrk-partner-bottom {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mrk-bottom-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: var(--transition);
}

.mrk-bottom-card::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.mrk-bottom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mrk-bottom-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  font-size: 22px;
}

.mrk-bottom-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.mrk-bottom-icon.orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.20);
}

.mrk-bottom-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.20);
}

.mrk-bottom-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 950;
}

.mrk-bottom-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 13.4px;
  font-weight: 500;
  line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .mrk-partner-section {
    padding: 90px 0;
  }

  .mrk-partner-wrapper {
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1fr);
    gap: 34px;
  }

  .mrk-partner-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mrk-partner-section {
    padding: 78px 0;
  }

  .mrk-partner-wrapper {
    grid-template-columns: 1fr;
  }

  .mrk-partner-content {
    text-align: center;
  }

  .mrk-partner-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .mrk-partner-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .mrk-partner-point {
    text-align: left;
  }

  .mrk-partner-actions {
    justify-content: center;
  }

  .mrk-partner-card {
    max-width: 780px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .mrk-partner-section {
    padding: 64px 0;
  }

  .mrk-partner-shape {
    display: none;
  }

  .mrk-partner-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .mrk-partner-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .mrk-partner-card {
    padding: 26px;
    border-radius: 30px;
  }

  .mrk-card-top {
    grid-template-columns: 1fr;
  }

  .mrk-card-top h3 {
    font-size: 26px;
  }

  .mrk-partner-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .mrk-partner-section {
    padding: 54px 0;
  }

  .mrk-partner-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .mrk-partner-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .mrk-partner-content h2 {
    font-size: 30px;
  }

  .mrk-partner-content > p {
    font-size: 14.5px;
  }

  .mrk-partner-point {
    flex-direction: column;
    padding: 17px;
    border-radius: 22px;
  }

  .mrk-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .mrk-partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mrk-partner-btn-main,
  .mrk-partner-btn-soft {
    width: 100%;
  }

  .mrk-partner-card {
    padding: 22px;
    border-radius: 26px;
  }

  .mrk-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 23px;
  }

  .mrk-card-top h3 {
    font-size: 23px;
  }

  .mrk-support-item {
    flex-direction: column;
  }

  .mrk-bottom-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 380px) {
  .mrk-partner-content h2 {
    font-size: 27px;
  }

  .mrk-partner-card {
    padding: 18px;
  }
}

/* ================= MEDIA RESOURCE KNOWLEDGE PARTNER SECTION END ================= */

/* ================= PARTNER ENQUIRY FORM SECTION START ================= */

.partner-enquiry-form-section,
.partner-enquiry-form-section * {
  box-sizing: border-box;
}

.partner-enquiry-form-section {
  position: relative;
  padding: 10px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.13), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(180deg, var(--body-bg) 0%, var(--white-color) 52%, var(--light-bg) 100%);
  overflow: hidden;
}

.partner-enquiry-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
  pointer-events: none;
}

.partner-enquiry-form-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
}

/* Shapes */

.partner-enquiry-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: partnerEnquiryFloat 7s ease-in-out infinite;
}

.partner-enquiry-shape-1 {
  width: 310px;
  height: 310px;
  left: -150px;
  top: 120px;
  background: rgba(37, 99, 235, 0.13);
  filter: blur(7px);
}

.partner-enquiry-shape-2 {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 80px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(8px);
  animation-delay: 1.2s;
}

@keyframes partnerEnquiryFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

/* Wrapper */

.partner-enquiry-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 48px;
  align-items: center;
}

/* Left Content */

.partner-enquiry-content {
  position: relative;
  z-index: 2;
}

.partner-enquiry-form-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.partner-enquiry-form-section .section-badge span {
  width: 31px;
  height: 31px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.partner-enquiry-content h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1.7px;
}

.partner-enquiry-content h2 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-enquiry-content > p {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-size: 15.8px;
  font-weight: 500;
  line-height: 1.86;
}

/* Points */

.partner-enquiry-points {
  display: grid;
  gap: 15px;
  margin-bottom: 26px;
}

.partner-enquiry-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: var(--transition);
}

.partner-enquiry-point::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.partner-enquiry-point:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 20px 52px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.partner-enquiry-point:hover::before {
  transform: scaleX(1);
}

.partner-enquiry-point-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 21px;
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.partner-enquiry-point-icon.green {
  background: var(--green-gradient);
  box-shadow: 0 13px 28px rgba(34, 197, 94, 0.25);
}

.partner-enquiry-point-icon.sky {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 13px 28px rgba(14, 165, 233, 0.24);
}

.partner-enquiry-point:hover .partner-enquiry-point-icon {
  transform: rotate(-5deg) translateY(-4px);
}

.partner-enquiry-point h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.partner-enquiry-point p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* Contact */

.partner-enquiry-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.partner-enquiry-contact a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  color: var(--heading-color);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 950;
  transition: var(--transition);
}

.partner-enquiry-contact a:first-child {
  color: var(--primary-color);
}

.partner-enquiry-contact a:last-child {
  color: var(--accent-color);
}

.partner-enquiry-contact a:hover {
  color: var(--white-color);
  background: var(--footer-bg);
  transform: translateY(-4px);
}

/* Form Card */

.partner-enquiry-form-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    0 14px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.partner-enquiry-form-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.partner-enquiry-form-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  pointer-events: none;
}

/* Form Head */

.partner-form-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.partner-form-head span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.partner-form-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.75px;
}

.partner-form-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
  font-size: 25px;
}

/* Form */

.partner-enquiry-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.partner-form-group {
  min-width: 0;
}

.partner-form-group.full,
.partner-form-note.full,
.partner-consent.full,
.partner-form-submit.full {
  grid-column: 1 / -1;
}

.partner-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 12.5px;
  font-weight: 900;
}

.partner-form-group label span {
  color: #ef4444;
}

.partner-form-group input,
.partner-form-group select,
.partner-form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 17px;
  color: var(--heading-color);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.partner-form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
    linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.partner-form-group textarea {
  min-height: 135px;
  resize: vertical;
  line-height: 1.65;
}

.partner-form-group input::placeholder,
.partner-form-group textarea::placeholder {
  color: var(--text-light);
}

.partner-form-group input:focus,
.partner-form-group select:focus,
.partner-form-group textarea:focus {
  background: var(--white-color);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Upload */

.partner-upload-box {
  position: relative;
  min-height: 145px;
  padding: 22px;
  border-radius: 24px;
  border: 1.5px dashed rgba(37, 99, 235, 0.32);
  background:
    radial-gradient(circle at 15% 12%, rgba(37, 99, 235, 0.08), transparent 36%),
    rgba(37, 99, 235, 0.04);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.partner-upload-box:hover {
  background: rgba(37, 99, 235, 0.07);
  border-color: rgba(37, 99, 235, 0.48);
  transform: translateY(-4px);
}

.partner-upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  min-height: auto;
}

.partner-upload-icon {
  width: 58px;
  height: 58px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  font-size: 25px;
}

.partner-upload-box strong {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 950;
}

.partner-upload-box small {
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 700;
}

/* Note */

.partner-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text-color);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

.partner-form-note i {
  color: var(--primary-color);
  font-size: 17px;
  line-height: 1.2;
}

/* Consent */

.partner-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.partner-consent input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary-color);
}

.partner-consent span {
  color: var(--text-color);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.55;
}

/* Submit */

.partner-form-submit button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white-color);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--primary-gradient);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: var(--transition);
}

.partner-form-submit button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.36);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .partner-enquiry-form-section {
    padding: 90px 0;
  }

  .partner-enquiry-wrapper {
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    gap: 34px;
  }

  .partner-enquiry-form-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .partner-enquiry-form-section {
    padding: 78px 0;
  }

  .partner-enquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .partner-enquiry-content {
    text-align: center;
  }

  .partner-enquiry-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .partner-enquiry-points {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-enquiry-point {
    text-align: left;
  }

  .partner-enquiry-contact {
    justify-content: center;
  }

  .partner-enquiry-form-card {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .partner-enquiry-form-section {
    padding: 64px 0;
  }

  .partner-enquiry-shape {
    display: none;
  }

  .partner-enquiry-content h2 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .partner-enquiry-content > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .partner-enquiry-form-card {
    padding: 24px;
    border-radius: 30px;
  }

  .partner-form-head {
    grid-template-columns: 1fr;
  }

  .partner-enquiry-form {
    grid-template-columns: 1fr;
  }

  .partner-form-group.full,
  .partner-form-note.full,
  .partner-consent.full,
  .partner-form-submit.full {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .partner-enquiry-form-section {
    padding: 54px 0;
  }

  .partner-enquiry-form-section .section-badge {
    font-size: 11.5px;
    padding: 8px 13px 8px 8px;
    margin-bottom: 16px;
  }

  .partner-enquiry-form-section .section-badge span {
    width: 27px;
    height: 27px;
  }

  .partner-enquiry-content h2 {
    font-size: 30px;
  }

  .partner-enquiry-content > p {
    font-size: 14.5px;
  }

  .partner-enquiry-point {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
    border-radius: 22px;
  }

  .partner-enquiry-point-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

  .partner-enquiry-contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partner-enquiry-contact a {
    width: 100%;
  }

  .partner-enquiry-form-card {
    padding: 20px;
    border-radius: 26px;
  }

  .partner-form-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 20px;
    font-size: 22px;
  }

  .partner-form-group input,
  .partner-form-group select,
  .partner-form-group textarea {
    min-height: 50px;
    border-radius: 15px;
    font-size: 13px;
  }

  .partner-upload-box {
    min-height: 130px;
    padding: 18px;
    border-radius: 20px;
  }

  .partner-upload-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 22px;
  }

  .partner-form-submit button {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .partner-enquiry-content h2 {
    font-size: 27px;
  }

  .partner-enquiry-form-card {
    padding: 18px;
  }

  .partner-form-head h3 {
    font-size: 22px;
  }
}

/* ================= PARTNER ENQUIRY FORM SECTION END ================= */


/* ================= EVENT ALBUM LIGHTBOX ASSET STYLES START ================= */

.event-album-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-album-select-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.event-album-select-card:hover,
.event-album-select-card.active {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

.event-album-select-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.event-album-select-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.event-album-select-card:hover .event-album-select-img img {
  transform: scale(1.06);
}

.event-album-select-img > span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
}

.event-album-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-album-select-content {
  padding: 18px;
}

.event-album-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.event-album-meta small,
.event-album-select-meta small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 850;
}

.event-album-select-content h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.event-album-select-content p {
  margin: 9px 0 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.event-album-select-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lightbox-empty-message {
  text-align: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  padding: 34px;
  border-radius: 22px;
}

.lightbox-empty-message h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.lightbox-empty-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991px) {
  .event-album-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .event-album-select-grid {
    grid-template-columns: 1fr;
  }

  .event-album-select-img {
    height: 220px;
  }
}

/* ================= EVENT ALBUM LIGHTBOX ASSET STYLES END ================= */



/* ================= AUTH LOGIN REGISTER START ================= */

.auth-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.12), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(14, 165, 233, 0.14), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(34, 197, 94, 0.10), transparent 35%),
    var(--body-bg);
  font-family: var(--font-family);
}

.auth-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}

.auth-shape-1 {
  width: 280px;
  height: 280px;
  top: 90px;
  left: -90px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(14, 165, 233, 0.10));
}

.auth-shape-2 {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: 40px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(14, 165, 233, 0.10));
}

.auth-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
}

.auth-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(220, 232, 245, 0.95);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--primary-gradient);
}

.auth-brand-area {
  text-align: center;
  margin-bottom: 26px;
}

.auth-logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 35%),
    var(--primary-gradient);
  color: var(--white-color);
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
}

.auth-brand-area h1 {
  margin: 0;
  color: var(--heading-color);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.auth-brand-area p {
  margin: 8px 0 0;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.auth-alert.success {
  color: #075985;
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.22);
}

.auth-alert i {
  margin-top: 2px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 700;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  border-radius: 16px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.auth-input-wrap i {
  width: 48px;
  flex: 0 0 48px;
  text-align: center;
  color: var(--secondary-color);
  font-size: 17px;
}

.auth-input-wrap input {
  width: 100%;
  height: 52px;
  padding: 0 15px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
}

.auth-input-wrap input::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

.auth-input-wrap:focus-within {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.10),
    0 16px 34px rgba(37, 99, 235, 0.10);
  transform: translateY(-1px);
}

.auth-input-wrap.is-invalid {
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.auth-error {
  margin: 7px 0 0;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: -2px;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.auth-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.auth-options a,
.auth-bottom-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
}

.auth-options a:hover,
.auth-bottom-text a:hover {
  color: var(--secondary-color);
}

.auth-submit-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 17px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white-color);
  background: var(--primary-gradient);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-family);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
  transition: var(--transition);
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.32);
}

.auth-submit-btn i {
  transition: var(--transition);
}

.auth-submit-btn:hover i {
  transform: translateX(4px);
}

.auth-bottom-text {
  padding-top: 4px;
  text-align: center;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
}

.auth-bottom-text span {
  margin-right: 4px;
}

@media (max-width: 575px) {
  .auth-section {
    padding: 96px 14px 54px;
    align-items: flex-start;
  }

  .auth-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .auth-brand-area h1 {
    font-size: 23px;
  }

  .auth-logo {
    width: 60px;
    height: 60px;
    border-radius: 19px;
    font-size: 26px;
  }

  .auth-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .auth-input-wrap,
  .auth-input-wrap input {
    min-height: 50px;
    height: 50px;
  }
}

/* ================= AUTH LOGIN REGISTER END ================= */