:root {
  --primary-color: #2e7d32;
  --secondary-color: #1565c0;
  --accent-color: #ff9800;

  --dark-color: #0f172a;
  --text-color: #667085;

  --white-color: #ffffff;
  --light-bg: #f8fafc;

  --border-color: #e5e7eb;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  --transition: 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: var(--light-bg);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* ================= HEADER ================= */

.main-header {
  position: fixed;
  top: 20px;
  left: 0;

  width: 100%;

  z-index: 9999;

  transition: 0.5s ease;
}

.header-container {
  width: 100%;
  padding: 0 40px;
}

.navbar-wrapper {
  width: 100%;
  max-width: 1550px;

  margin: auto;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);

  border-radius: 24px;

  padding: 0 35px ;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: 0.5s ease;

  box-shadow: var(--shadow);
}

.main-header.scrolled {
  top: 0;
}

.main-header.scrolled .header-container {
  padding: 0;
}

.main-header.scrolled .navbar-wrapper {
  max-width: 100%;

  border-radius: 0;

  padding: 0 45px;

  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark-color);
}

.logo img {
  width: 85px;
}

/* .logo-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logo-text span {
  color: var(--primary-color);

  font-size: 14px;
  font-weight: 600;
} */

/* ================= MENU ================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  color: var(--dark-color);

  font-size: 16px;
  font-weight: 500;

  position: relative;

  transition: var(--transition);
}

.nav-menu a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--primary-color);

  transition: 0.4s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

/* ================= DROPDOWN MENU ================= */

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: block !important; /* Force override Bootstrap's display: none */
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);

  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Prevent interaction when hidden */
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 100;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.nav-menu li.has-dropdown:hover > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(10px) !important;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 25px;
  font-size: 15px !important;
  font-weight: 500;
  color: var(--dark-color) !important;
  transition: 0.3s;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: rgba(46, 125, 50, 0.08);
  color: var(--primary-color) !important;
  padding-left: 30px;
}

/* MOBILE DROPDOWN */

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submenu-toggle {
  width: 35px;
  height: 35px;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  color: var(--dark-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.submenu-toggle.active {
  background: var(--primary-color);
  color: white;
  transform: rotate(45deg);
}

.mobile-drawer .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important; /* Fixing inactive links */
  transform: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-drawer .has-dropdown.active > .dropdown-menu {
  max-height: 500px;
  padding-top: 15px;
}

.mobile-drawer .dropdown-menu li a {
  padding: 8px 15px;
  font-size: 16px !important;
}

/* ================= RIGHT ================= */

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-btn {
  width: 50px;
  height: 50px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 152, 0, 0.12);

  color: var(--accent-color);

  font-size: 18px;
}

.donate-btn {
  padding: 15px 30px;

  border-radius: 16px;

  color: white;

  font-weight: 600;

  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  transition: var(--transition);
}

.donate-btn:hover {
  transform: translateY(-3px);
}

.mobile-menu-btn {
  display: none;

  border: none;
  background: none;

  font-size: 28px;

  color: var(--dark-color);
}

/* ================= MOBILE DRAWER ================= */

.mobile-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;

  z-index: 9998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;

  top: 0;
  right: -100%;

  width: 320px;
  max-width: 100%;

  height: 100vh;

  background: white;

  z-index: 99999;

  padding: 25px;

  transition: 0.5s ease;

  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 40px;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-logo img {
  width: 60px;
}

.drawer-top button {
  width: 45px;
  height: 45px;

  border: none;

  border-radius: 12px;

  background: #f3f4f6;
}

.mobile-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer a {
  color: var(--dark-color);

  font-size: 18px;
  font-weight: 500;
}

.mobile-donate-btn {
  width: 100%;

  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 58px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  color: white !important;

  font-weight: 600;
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(14, 25, 49, 0.8) 0%,
    rgba(19, 48, 117, 0.6) 50%,
    rgba(25, 56, 128, 0.4) 100%
  );
  z-index: 2;
}

.relative-container {
  position: relative;
  z-index: 5;
}

/* CONTENT */
.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 28px;
  align-items: center;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 580px;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-btn {
  padding: 16px 34px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.4s ease;
}

.primary-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.primary-btn:hover {
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
}

.hero-btn:hover {
  transform: translateY(-4px);
  color: white;
}

/* ================= PREMIUM DONATION CARD ================= */

.premium-donation-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(35px) saturate(200%);
  -webkit-backdrop-filter: blur(35px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 45px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-donation-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.premium-donation-card h3 {
  font-size: 38px;
  font-weight: 800;
  color: white;
  /* color: rgb(13, 153, 55); */
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.input-box {
  position: relative;
}

.input-box label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-box input,
.input-box select {
  width: 100%;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 0 22px;
  font-size: 16px;
  color: white;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-box input:focus,
.input-box select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.input-box select option {
  background: #1a202c;
  color: white;
  padding: 15px;
}

.premium-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    min-height: auto;
    padding: 160px 0 100px;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .premium-donation-card {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 140px 0 80px;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 50px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-donation-card {
    padding: 40px;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 130px;
  }
  .hero-content h1 {
    font-size: 38px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  .hero-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 120px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .premium-donation-card {
    padding: 30px 20px;
    border-radius: 24px;
  }
  .premium-donation-card h3 {
    font-size: 26px;
    text-align: center;
  }
}

/* Cleaned up duplicate styles */

/* ================= CONTENT ================= */

.dummy-section {
  padding: 200px 0 100px;
}

.section-title {
  max-width: 700px;

  text-align: center;

  margin: auto auto 60px;
}

.section-title h2 {
  font-size: 52px;
  font-weight: 700;

  color: var(--dark-color);

  margin-bottom: 15px;
}

.feature-card {
  background: white;

  border-radius: 28px;

  padding: 40px 35px;

  box-shadow: var(--shadow);

  transition: 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  width: 78px;
  height: 78px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  color: white;

  margin-bottom: 25px;

  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.feature-card h4 {
  font-size: 24px;
  font-weight: 700;

  margin-bottom: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 68px;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 24px;
  }

  .hero-section::before,
  .hero-overlay {
    width: 72%;
  }

  .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    min-height: auto;

    padding: 150px 0 90px;
  }

  .hero-section::before,
  .hero-overlay {
    width: 100%;

    border-radius: 0;

    opacity: 0.2;
  }

  .hero-content {
    text-align: center;

    margin: auto;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-btns {
    justify-content: center;
  }

  .donation-card {
    position: relative;

    left: 0;
    bottom: 0;

    transform: none;

    margin: 70px auto 0;

    width: 100%;
  }

  .dummy-section {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 0 18px;
  }

  .main-header.scrolled .navbar-wrapper {
    padding: 0 18px;
  }

  .logo img {
    width: 55px;
  }

  .logo-text h4 {
    font-size: 20px;
  }

  .profile-btn,
  .donate-btn {
    display: none;
  }

  .hero-section {
    padding-top: 130px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;

    text-align: center;
  }

  .donation-card {
    padding: 30px 20px;

    border-radius: 24px;
  }

  .donation-card h3 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-badge {
    font-size: 14px;
  }

  .mobile-drawer {
    width: 100%;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .feature-card {
    padding: 30px 25px;
  }
}

/* ================= ACTIVITY SECTION ================= */

.activity-section {
  padding: 100px 0;
  background: #fdfdfd;
  overflow: hidden;
}

.section-header {
  max-width: 1200px;
}

.section-title span {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.slider-controls {
  display: flex;
  gap: 15px;
}

.swiper-button-next-act,
.swiper-button-prev-act {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.swiper-button-next-act:hover,
.swiper-button-prev-act:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.activity-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.activity-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.activity-card:hover .activity-img img {
  transform: scale(1.15);
}

.activity-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 18px;
  background: var(--primary-color);
  color: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.activity-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.activity-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.activity-card:hover .activity-body h4 {
  color: var(--primary-color);
}

.activity-body p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.details-btn {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.details-btn:hover {
  gap: 12px;
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white !important;
  border-radius: 16px;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.show-more-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 40px;
}

/* ACTIVITY PAGE GRID */
.activity-grid-section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
}

.main-footer {
  background: var(--dark-color);
  padding: 100px 0 0;
  color: white;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.footer-logo img {
  width: 100px;
}

/* .footer-logo h4 {
  margin-bottom: 0;
}

.footer-logo h4::after {
  display: none;
} */

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links li {
  margin-bottom: 15px;
}
.activity-links li a {
  color: rgba(27, 14, 14, 0.7);
  transition: var(--transition);
}
.activity-links li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}


.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 5px;
}

.footer-contact li a {
 color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-newsletter {
  position: relative;
  margin-top: 30px;
}

.footer-newsletter input {
  width: 100%;
  height: 55px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0 60px 0 20px;
  color: white;
  outline: none;
}

.footer-newsletter button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--primary-color);
  border: none;
  color: white;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 13px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 25px;
  font-size: 14px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ================= INNER PAGE BANNER ================= */

.inner-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 25, 49, 0.7);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.breadcrumb-nav a {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 30px;
    font-weight: 500;
  }
  .inner-banner {
    height: 33vh;
  }
}

/* ================= ABOUT SECTION ================= */

.about-page-section {
  padding: 100px 0;
}

.about-text-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-color);
}

.about-text-content p {
  margin-bottom: 30px;
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.experience-badge h2 {
  font-size: 45px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.experience-badge span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-color);
}

/* ================= DONATE CAUSE CARDS ================= */
.donate-cause-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.donate-card-item {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.donate-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.donate-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.donate-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.donate-card-item:hover .donate-img-wrapper img {
  transform: scale(1.1);
}

.donate-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.donate-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.donate-card-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.donate-card-body p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.donate-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.donate-btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}


.join-us-section{
    padding: 120px 20px;
    background: var(--light-bg);
    overflow: hidden;
    position: relative;
}

.join-us-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 50%;
    top: -200px;
    left: -200px;
}

.join-us-section::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(21, 101, 192, 0.05);
    border-radius: 50%;
    bottom: -180px;
    right: -180px;
}

.join-us-section .container{
    max-width: 1320px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* =========================
   Section Title
========================= */

.join-title{
    text-align: center;
    margin-bottom: 70px;
}

.join-title span{
    display: inline-block;
    padding: 10px 22px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 18px;
}

.join-title h2{
    font-size: 58px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.join-title p{
    max-width: 750px;
    margin: auto;
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   Layout
========================= */

.join-grid{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.join-small-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================
   Card Design
========================= */

.join-card{
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    padding: 55px 45px;
    text-decoration: none;
    color: var(--white-color);
    min-height: 280px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: var(--shadow);

    transition: var(--transition);

    isolation: isolate;
}

.join-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0)
    );
    z-index: -1;
}

.join-card:hover{
    transform: translateY(-12px);
}

.join-card:hover .join-arrow{
    transform: translateX(8px);
}

.join-card:hover .join-bg-shape{
    transform: scale(1.3) rotate(12deg);
}

/* =========================
   Background Colors
========================= */

.donor-card{
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #43a047
    );
}

.member-card{
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        #42a5f5
    );
}

.volunteer-card{
    background: linear-gradient(
        135deg,
        var(--accent-color),
        #ffb74d
    );
}

.career-card{
    background: linear-gradient(
        135deg,
        #7b1fa2,
        #c2185b
    );
}

/* =========================
   Shapes
========================= */

.join-bg-shape{
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);

    top: -100px;
    right: -80px;

    transition: 0.7s ease;
}

/* =========================
   Icon
========================= */

.join-icon{
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: rgba(255,255,255,0.15);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;

    margin-bottom: 35px;

    border: 1px solid rgba(255,255,255,0.2);
}

/* =========================
   Content
========================= */

.join-content h3{
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.join-content p{
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 550px;
}

/* =========================
   Arrow
========================= */

.join-arrow{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 35px;

    transition: var(--transition);

    border: 1px solid rgba(255,255,255,0.2);

    font-size: 20px;
}

/* =========================
   Responsive
========================= */

@media(max-width: 1200px){

    .join-content h3{
        font-size: 30px;
    }

}

@media(max-width: 991px){

    .join-title h2{
        font-size: 46px;
    }

    .join-small-grid{
        grid-template-columns: 1fr;
    }

    .join-card{
        min-height: auto;
    }

}

@media(max-width: 767px){

    .join-us-section{
        padding: 90px 15px;
    }

    .join-title{
        margin-bottom: 50px;
    }

    .join-title h2{
        font-size: 38px;
    }

    .join-title p{
        font-size: 16px;
    }

    .join-card{
        padding: 40px 28px;
        border-radius: 28px;
    }

    .join-icon{
        width: 80px;
        height: 80px;
        font-size: 34px;
        border-radius: 22px;
    }

    .join-content h3{
        font-size: 28px;
    }

    .join-content p{
        font-size: 15px;
    }

}

/* =========================
   Blog Section
========================= */

.blog-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.blog-card {
    background: var(--white-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.blog-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 14px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
    transition: var(--transition);
    display: block;
}

.blog-title:hover {
    color: var(--primary-color);
}

.blog-text {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-btn:hover {
    gap: 15px;
    color: var(--secondary-color);
}

/* Blog Details Section */

.blog-details-section {
    padding: 100px 0;
    background: var(--white-color);
}

.blog-details-img {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.blog-details-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.blog-details-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

.blog-details-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 16px;
}

.blog-details-meta i {
    color: var(--primary-color);
    margin-right: 8px;
}

.blog-details-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.blog-details-body h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.blog-details-body h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.blog-details-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-details-body ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
    list-style-type: disc;
}

.blog-details-body blockquote {
    background: var(--light-bg);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.sidebar-widget {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-content span {
    font-size: 13px;
    color: var(--text-color);
}

.recent-post-content span i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* =========================
   Contact Section
========================= */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.contact-info-card:hover::before {
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    font-size: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.contact-info-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-title {
    color: var(--white-color);
}

.contact-info-text {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
}

.contact-info-text a {
    color: var(--text-color);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-text,
.contact-info-card:hover .contact-info-text a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper {
    background: var(--white-color);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-form-subtitle {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-form .input-box {
    margin-bottom: 25px;
}

.contact-form .input-box label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-shadow: none;
    letter-spacing: normal;
    text-transform: none;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
    width: 100%;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: var(--dark-color);
    transition: var(--transition);
    height: auto;
}

.contact-form .input-box textarea {
    height: 150px;
    resize: none;
}

.contact-form .input-box input:focus,
.contact-form .input-box textarea:focus {
    background: var(--white-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
    transform: none;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   Premium Join Us Section
========================= */
.premium-join-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white-color) 0%, var(--light-bg) 100%);
}

.premium-join-card {
    background: var(--white-color);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: translateY(100%);
}

.premium-join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
    border-color: transparent;
}

.premium-join-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.join-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.donor-icon {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
}

.member-icon {
    background: rgba(21, 101, 192, 0.1);
    color: var(--secondary-color);
}

.volunteer-icon {
    background: rgba(255, 152, 0, 0.1);
    color: var(--accent-color);
}

.career-icon {
    background: rgba(123, 31, 162, 0.1);
    color: #7b1fa2;
}

.premium-join-card:hover .join-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    transform: scale(1.1);
}

.premium-join-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.premium-join-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    transition: var(--transition);
}

.premium-join-card:hover h3,
.premium-join-card:hover p {
    color: var(--white-color);
}

.join-link-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
}

.join-link-text i {
    font-size: 14px;
    transition: var(--transition);
}

.premium-join-card:hover .join-link-text {
    color: var(--white-color);
}

.premium-join-card:hover .join-link-text i {
    transform: translateX(5px);
}


/* ==== 13. Team Card ==== */
.team-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
}

.team-card-content {
    background-color: white;
    width: 100%;
    padding: 20px;
    color: var(--dark-color);
    position: relative;
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition);
}

.team-card-content .team-socials {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.team-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-socials a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-socials a svg {
    width: auto;
    height: 14px;
    fill: currentColor;
}

.team-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.team-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-color);
    margin: 0 0 8px;
}

.team-card-content h4 a {
    color: var(--dark-color);
    transition: color var(--transition);
}

.team-card-content h4 a:hover {
    color: var(--primary-color);
}

.team-card-content p {
    margin: 0;
    line-height: 1.4;
    color: var(--text-color);
    font-size: 14px;
}

.team-card-content-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.team-card-content .team-btn {
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    margin-top: 12px;
}

.team-card-content .team-btn i {
    transition: var(--transition);
}

.team-card-content .team-btn:hover i {
    transform: rotate(45deg);
}

.team-card-content .team-btn:hover {
    background-color: var(--secondary-color);
}

.team-card .team-card-content {
    visibility: visible;
    opacity: 1;
    bottom: auto;
    transition: all var(--transition);
}

/* == Team Details == */
.team-details-thumb{
    background-color: #234443;
    width: 100%;
    height: 520px;
    border-radius: 5px;
    position: relative;
}

.team-details-thumb img{
    width: calc(100% - 80px);
    height: 590px;
    object-fit: contain;
    object-position: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.team-social-links{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
}

.team-social-links a{
    background-color: var(--hq-white-bg-color);
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--hq-heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transform: translateX(-10px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transition-duration: 500ms;
}

.team-social-links a:nth-child(1){
    transition-delay: 100ms;
}

.team-social-links a:nth-child(2){
    transition-delay: 200ms;
}

.team-social-links a:nth-child(3){
    transition-delay: 300ms;
}

.team-social-links a:nth-child(4){
    transition-delay: 400ms;
}

.is-social-links:hover .team-social-links a{
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.team-social-links a:hover{
    background-color: var(--hq-primary-bg-color);
    color: var(--hq-black-color);
    transition-duration: 200ms;
}

.team-details-content h3{
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
    color: var(--hq-heading-color);
    margin: 0 0 25px;
}

.team-details-content .team-tagline{
    font-size: 16px;
    line-height: 1;
    color: var(--hq-grey-color);
}

.team-details-content .team-tagline span{
    color: var(--hq-primary-color);
    margin-right: 20px;
}

.team-details-content hr{
    margin: 30px 0;
    border-top: 1px solid var(--hq-light-grey-bd-color);
    opacity: 1;
}

.team-contact-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-contact-list li{
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 15px;
    align-items: center;
}

.team-contact-list li i{
    font-size: 20px;
    color: var(--hq-primary-color);
}

.team-contact-list li div{
    font-size: 16px;
    line-height: 1;
}

.team-contact-list li div span{
    color: var(--hq-heading-color);
    font-weight: 500;
}

.team-skills{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-skills .hq-progress {
    height: 15px;
    border-radius: 30px;
}

.team-skills .hq-progress-line {
    border-radius: 30px;
}

/* ================= AUTH LOGIN ================= */

.auth-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(21, 101, 192, 0.54)),
    url("/assets/images/banner-page.jpg") center/cover no-repeat;
  color: var(--dark-color);
}

.auth-page .login-container {
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
}

.auth-showcase,
.login-panel {
  min-height: 100vh;
}

.auth-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  overflow: hidden;
}

.auth-showcase::after {
  content: "";
  position: absolute;
  inset: auto 48px 48px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.auth-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
}

.auth-brand img,
.auth-mobile-logo img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white-color);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.auth-showcase-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: var(--white-color);
}

.auth-eyebrow,
.auth-page .form-header span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-eyebrow {
  margin-bottom: 18px;
  background: rgba(255, 152, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff7ed;
}

.auth-showcase h1 {
  max-width: 580px;
  margin: 0 0 18px;
  color: var(--white-color);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 800;
}

.auth-showcase p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.login-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(20px);
}

.auth-page .login-form {
  width: 100%;
  max-width: 420px;
  padding: 0;
}

.auth-mobile-logo {
  display: none;
  margin-bottom: 24px;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.auth-back-link:hover {
  color: var(--primary-color);
}

.auth-page .form-header {
  margin-bottom: 28px;
}

.auth-page .form-header span {
  margin-bottom: 14px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary-color);
}

.auth-page .form-header h2 {
  margin: 0 0 10px;
  color: var(--dark-color);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
}

.auth-page .form-header p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
}

.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 13px 14px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.5;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-field label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 700;
}

.auth-page .input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-page .input-group > i {
  position: absolute;
  left: 16px;
  z-index: 1;
  color: #94a3b8;
  font-size: 18px;
  pointer-events: none;
}

.auth-page .input-group input {
  width: 100%;
  height: 54px;
  padding: 0 52px 0 48px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: 0;
  background: var(--white-color);
  color: var(--dark-color);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.auth-page .input-group input::placeholder {
  color: #a8b3c3;
}

.auth-page .input-group input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
}

.auth-page .toggle-password {
  position: absolute;
  right: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.auth-page .toggle-password:hover {
  background: #f1f5f9;
  color: var(--primary-color);
}

.auth-page .text-danger {
  display: block;
  margin-top: 7px;
  color: #dc2626;
  font-size: 13px;
  line-height: 1.4;
}

.auth-page .login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0 24px;
}

.auth-page .login-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.auth-page .login-options input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.auth-page .login-options a,
.auth-page .signup-text a {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.auth-page .login-options a:hover,
.auth-page .signup-text a:hover {
  color: var(--primary-color);
}

.auth-page .login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(46, 125, 50, 0.26);
  transition: var(--transition);
}

.auth-page .login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(21, 101, 192, 0.28);
}

.auth-page .signup-text {
  margin: 24px 0 0;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 991px) {
  .auth-page .login-container {
    grid-template-columns: 1fr;
  }

  .auth-showcase {
    display: none;
  }

  .auth-page .login-panel {
    min-height: 100vh;
    padding: 24px;
  }

  .auth-mobile-logo {
    display: block;
  }
}

@media (max-width: 575px) {
  .auth-page .login-panel {
    align-items: flex-start;
    padding: 28px 18px;
  }

  .auth-back-link {
    margin-bottom: 28px;
  }

  .auth-page .form-header h2 {
    font-size: 27px;
  }

  .auth-page .login-options {
    align-items: flex-start;
    flex-direction: column;
  }
}
