/* ========================================
   AKANKSHA CHARITABLE TRUST — STYLESHEET
   Brand: Gold #E5A422 · Dark #1A1D2E
   ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap");

:root {
  --gold: #e5a422;
  --accent-color: var(--gold);
  --gold-dark: #c88e1a;
  --gold-light: #fff8e7;
  --gold-10: rgba(229, 164, 34, 0.1);
  --dark: #1a1d2e;
  --dark-light: #2a2e42;
  --navy: #1e3a5f;
  --teal: #0ea5a0;
  --teal-light: #e6f7f6;
  --coral: #e8523f;
  --coral-light: #fff0ed;
  --green: #22c55e;
  --green-light: #ecfdf5;
  --purple: #8b5cf6;
  --purple-light: #f3eeff;
  --blue: #3b82f6;
  --blue-light: #eff6ff;

  --white: #ffffff;
  --g50: #fafafa;
  --g100: #f4f4f5;
  --g200: #e4e4e7;
  --g300: #d4d4d8;
  --g400: #a1a1aa;
  --g500: #71717a;
  --g600: #52525b;
  --g700: #3f3f46;
  --g800: #27272a;

  --font-h: "Poppins", sans-serif;
  --font-b: "DM Sans", sans-serif;
  --max-w: 1160px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(229, 164, 34, 0.15);
  --radius: 20px;
  --ease: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  color: var(--g700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  font-family: var(--font-h);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-sm {
  padding: 8px 22px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 8px 20px rgba(229, 164, 34, 0.25);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(229, 164, 34, 0.4);
}
.btn-dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  color: var(--white);
  border: none;
  box-shadow: 0 8px 20px rgba(26, 29, 46, 0.2);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(26, 29, 46, 0.35);
}
.btn-outline {
  border: 2px solid var(--g200);
  color: var(--dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-3px);
}
.btn-coral {
  background: linear-gradient(135deg, var(--coral), #d04232);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 20px rgba(232, 82, 63, 0.25);
}
.btn-coral:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(232, 82, 63, 0.4);
}

/* ====================== TOP BAR ====================== */
.top-bar {
  background: linear-gradient(90deg, var(--dark), var(--navy));
  padding: 8px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar span {
  color: rgba(255, 255, 255, 0.3);
}

/* ====================== HEADER ====================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  transition: var(--ease);
}
header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  border-bottom: var(--glass-border);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links li a:not(.btn) {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--g600);
  border-radius: 50px;
  font-family: var(--font-h);
  transition: var(--ease);
}
.nav-links li a:not(.btn):hover,
.nav-links li a:not(.btn).active {
  color: var(--gold);
  background: var(--gold-10);
  transform: translateY(-1px);
}
.nav-links .btn {
  margin-left: 8px;
}

/* Dropdown CSS */
.nav-links li {
  position: relative;
}

.nav-links li.dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--ease);
  z-index: 1000;
  padding: 10px 0;
  border: 1px solid var(--g200);
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--g700);
  border-radius: 0;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: var(--g50);
  color: var(--gold);
  transform: none;
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}
.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ====================== ANIMATIONS ====================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.reveal:nth-child(6) {
  transition-delay: 0.4s;
}

/* ====================== SECTION HEADERS ====================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 10px;
}
.section-header h2 .accent {
  color: var(--gold);
}
.section-header p {
  font-size: 1rem;
  color: var(--g500);
  max-width: 560px;
  margin: 0 auto;
}

/* ====================== HERO CAROUSEL ====================== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  height: 100vh;
  min-height: 500px;
  background: var(--dark);
}
@supports (height: 100dvh) {
  .hero-carousel {
    height: 100dvh;
  }
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-slide .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-slide-content {
  color: var(--white);
  padding: 40px 0 80px;
  max-width: 620px;
}
.hero-slide-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero-slide-content h1 .gold {
  color: var(--gold);
}
.hero-slide-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 550px;
  line-height: 1.7;
}
.hero-slide-content .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--ease);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ====================== IMPACT STRIP ====================== */
.impact-strip {
  background: linear-gradient(135deg, var(--gold), #f3ba3e);
  padding: 60px 0;
  color: var(--dark);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.impact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.impact-num {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: var(--font-h);
  color: var(--dark);
}
.impact-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(26, 29, 46, 0.7);
}
.impact-since {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(26, 29, 46, 0.5);
  font-weight: 500;
}

/* ====================== PROGRAMS ====================== */
.programs-section {
  background: var(--g50);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.program-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--g200);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.program-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover::after {
  transform: scaleX(1);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 164, 34, 0.3);
}
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 0;
  transition: var(--ease);
}
.program-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}
.card-icon svg,
.card-icon i {
  width: 24px;
  height: 24px;
}
.icon-gold {
  background: var(--gold);
}
.icon-teal {
  background: var(--teal);
}
.icon-coral {
  background: var(--coral);
}
.icon-navy {
  background: var(--navy);
}
.icon-purple {
  background: var(--purple);
}
.icon-green {
  background: var(--green);
}
.program-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.program-card p {
  color: var(--g500);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.learn-more {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.learn-more:hover {
  color: var(--gold-dark);
  gap: 8px;
}

/* ====================== VOLUNTEER BANNER ====================== */
.volunteer-banner {
  background: linear-gradient(135deg, var(--dark), var(--navy), #1a365d);
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
.volunteer-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
}
.volunteer-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
}
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.banner-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  color: var(--white);
  line-height: 1.2;
}
.banner-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 34px;
  line-height: 1.8;
}

/* Join */
.join-banner {
  text-align: center;
  padding: 50px 0;
  background: var(--g50);
}

/* ====================== PAGE HEROES ====================== */
.page-hero {
  padding: 0;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 20px;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--white);
}
.page-hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto;
}

/* ====================== ABOUT ====================== */
.who-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.who-content p {
  font-size: 0.95rem;
  color: var(--g600);
  line-height: 1.85;
  margin-bottom: 14px;
}

.vmv-section {
  background: var(--g50);
}
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vmv-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--ease);
  box-shadow: var(--shadow);
}
.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-dark);
}
.vmv-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  transition: var(--ease);
}
.vmv-card:hover .vmv-icon {
  transform: scale(1.1) rotate(-5deg);
}
.vmv-icon svg {
  width: 24px;
  height: 24px;
}
.vmv-icon.bg-gold {
  background: var(--gold);
}
.vmv-icon.bg-navy {
  background: var(--navy);
}
.vmv-icon.bg-teal {
  background: var(--teal);
}
.vmv-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  color: var(--dark);
}
.vmv-card p {
  color: var(--g500);
  font-size: 0.88rem;
  line-height: 1.7;
}

.founder-section {
  background: var(--white);
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}
.founder-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.founder-quote {
  font-size: 0.95rem;
  color: var(--g600);
  line-height: 1.85;
  margin-bottom: 16px;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}
.founder-name {
  font-weight: 700;
  color: var(--dark);
}
.founder-title {
  color: var(--g400);
  font-size: 0.85rem;
}

.pillars-section {
  background: var(--g50);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  transition: var(--ease);
  text-align: center;
  box-shadow: var(--shadow);
}
.pillar-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  transition: var(--ease);
}
.pillar-card:hover .pillar-icon {
  transform: scale(1.1);
}
.pillar-icon svg {
  width: 24px;
  height: 24px;
}
.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.pillar-card p {
  color: var(--g500);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Timeline Horizontal */
.journey-section {
  background: var(--white);
}
.timeline-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}
.timeline-year {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.timeline-node p {
  font-size: 0.78rem;
  color: var(--g500);
  max-width: 110px;
}

/* Carousel */
.story-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 750px;
  margin: 0 auto;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--g300);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--g600);
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}
.story-slides {
  flex: 1;
  overflow: hidden;
}
.story-slide {
  display: none;
}
.story-slide.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====================== OUR WORK ====================== */
.tabs-section {
  padding-bottom: 24px;
}
.tab-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 24px;
  border: 2px solid var(--g200);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-h);
  color: var(--g500);
  transition: var(--ease);
}
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.sdg-strip {
  background: var(--dark);
  padding: 24px 0;
  text-align: center;
}
.sdg-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sdg-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sdg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}
.sdg-num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
}
.sdg-education {
  background: #c5192d;
}
.sdg-inequality {
  background: #dd1367;
}

.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  transition: var(--ease);
  box-shadow: var(--shadow);
}
.work-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: var(--gold-dark);
}
.work-card-img {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease);
}
.work-card:hover .work-card-img img {
  transform: scale(1.05);
}
.work-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.work-card p {
  font-size: 0.88rem;
  color: var(--g500);
  line-height: 1.7;
  margin-bottom: 14px;
}

.work-impact {
  background: linear-gradient(135deg, var(--dark), var(--navy));
  color: var(--white);
  border: none;
  border-radius: 0;
}
.work-impact .impact-num {
  color: var(--gold);
}
.work-impact .impact-label {
  color: rgba(255, 255, 255, 0.8);
}
.work-impact .impact-since {
  color: rgba(255, 255, 255, 0.5);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.success-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  transition: var(--ease);
  box-shadow: var(--shadow);
}
.success-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.success-img {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.success-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease);
}
.success-card:hover .success-img img {
  transform: scale(1.05);
}
.success-card p {
  font-size: 0.88rem;
  color: var(--g500);
  line-height: 1.7;
}

/* ====================== GET INVOLVED ====================== */
.trust-markers {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
}
.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-logo {
  height: 36px;
  width: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--g600);
  font-weight: 500;
}
.trust-item i {
  color: var(--green);
  width: 18px;
  height: 18px;
}

.partnerships-section {
  background: var(--g50);
}
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 800px;
  margin: 0 auto;
}
.partner-type-card {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  transition: var(--ease);
}
.partner-type-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.partner-type-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-type-card h3 i {
  color: var(--gold);
  width: 20px;
  height: 20px;
}
.partner-type-card ul li {
  font-size: 0.88rem;
  color: var(--g500);
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}
.partner-type-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ====================== VOLUNTEER ====================== */
.why-list {
  max-width: 700px;
  margin: 0 auto;
}
.why-list ul li {
  font-size: 0.95rem;
  color: var(--g600);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}
.why-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--gold-10);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.vol-opp-section {
  background: var(--g50);
}

.form-section {
  background: var(--g50);
}
.volunteer-form,
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.form-group label {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--g700);
  font-family: var(--font-h);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--g200);
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--ease);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-10);
  transform: translateY(-1px);
}

.sponsor-options {
  margin-bottom: 20px;
}
.sponsor-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sponsor-option input {
  display: none;
}
.sponsor-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 2px solid var(--g200);
  border-radius: 12px;
  font-weight: 700;
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--g700);
  cursor: pointer;
  transition: var(--ease);
  flex: 1;
  min-width: 100px;
  box-shadow: var(--shadow);
}
.sponsor-option input:checked + .sponsor-box {
  border-color: var(--gold);
  background: var(--gold-10);
  color: var(--gold-dark);
  box-shadow:
    0 0 0 4px var(--gold-10),
    var(--shadow-md);
}
.sponsor-box:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--g600);
  cursor: pointer;
}
.radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

/* ====================== DONATE ====================== */
.donate-type-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--g100);
  border-radius: 8px;
  padding: 4px;
  max-width: 420px;
  margin: 0 auto 30px;
  border: 1px solid var(--g200);
}
.toggle-btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-h);
  font-size: 0.85rem;
  color: var(--g500);
  transition: var(--ease);
}
.toggle-btn.active {
  background: var(--gold);
  color: var(--white);
}

.donate-amounts {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.amount-option {
  display: block;
  width: 100%;
  height: 100%;
}
.amount-option input {
  display: none;
}
.amount-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  border: 2px solid var(--g200);
  border-radius: 16px;
  font-weight: 800;
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--g700);
  cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--shadow);
  text-align: center;
}
.amount-option input:checked + .amount-box {
  border-color: var(--gold);
  background: var(--gold-10);
  color: var(--gold-dark);
  box-shadow:
    0 0 0 4px var(--gold-10),
    var(--shadow-md);
  transform: translateY(-2px);
}
.amount-box:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.donate-description {
  text-align: center;
  margin: 16px 0;
  color: var(--g500);
  font-size: 0.9rem;
}
.custom-amount {
  max-width: 500px;
  margin: 20px auto 0;
}
.form-row-inline {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.form-row-inline .form-group {
  margin-bottom: 0;
}
.money-section {
  background: var(--g50);
}
.money-list {
  max-width: 700px;
  margin: 0 auto;
}
.money-list ul li {
  font-size: 0.92rem;
  color: var(--g600);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}
.money-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ====================== CONTACT ====================== */
.contact-page-section {
  padding-top: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.contact-info ul li {
  color: var(--g500);
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-info ul li i {
  color: var(--gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.contact-form-wrap .form-group {
  margin-bottom: 16px;
}
.contact-form {
  padding: 0;
  border: none;
  box-shadow: none;
  max-width: none;
  background: transparent;
}
.map-placeholder {
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g400);
  font-size: 0.9rem;
}
.contact-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ====================== FOOTER ====================== */
footer {
  background: linear-gradient(180deg, var(--dark), #111322);
  color: var(--white);
  padding: 80px 0 24px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-h);
}
.footer-logo {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-col ul li {
  color: var(--g400);
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-col ul li a {
  color: var(--g400);
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-col ul li i {
  color: var(--gold);
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g400);
  transition: var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}
.footer-social a i {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--g500);
}

/* ====================== MEDIA GALLERY & TABS ====================== */
.tabs-container {
  width: 100%;
}
.tab-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 12px 32px;
  border: 2px solid var(--g200);
  background: transparent;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--g600);
  cursor: pointer;
  transition: var(--ease);
}
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(229, 164, 34, 0.3);
}

.tab-content {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.tab-content.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--g50);
  box-shadow: var(--shadow);
  transition: var(--ease);
  aspect-ratio: 4/3;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}
.video-item {
  position: relative;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--ease);
  z-index: 2;
}
.gallery-item:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 991px) {
  .hero-carousel {
    height: 75vh;
    min-height: 420px;
  }
  .hero-slide-content {
    padding: 30px 0 60px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vmv-grid,
  .pillars-grid,
  .programs-grid,
  .work-cards-grid,
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-track {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .timeline-track::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 2px;
    border-top: 1px solid var(--g200);
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    padding: 10px 14px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 100%;
    background: transparent;
    display: none;
    padding: 0 0 0 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links li.dropdown:hover .dropdown-menu {
    display: block;
    transform: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-carousel {
    height: auto;
    min-height: 65vh;
  }
  .hero-slide {
    position: relative;
    min-height: 65vh;
    display: none;
  }
  .hero-slide.active {
    display: flex;
  }
  .hero-slide-content {
    padding: 80px 0 90px;
  }
  .hero-slide-content h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .hero-slide-content p {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }
  .hero-dots {
    bottom: 20px;
  }
  .section {
    padding: 50px 0;
  }
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vmv-grid,
  .pillars-grid,
  .programs-grid,
  .work-cards-grid,
  .success-grid {
    grid-template-columns: 1fr;
  }
  .partner-types-grid {
    grid-template-columns: 1fr;
  }
  .volunteer-form {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .story-inner {
    grid-template-columns: 1fr;
  }
  .donate-amounts {
    flex-direction: column;
    align-items: stretch;
  }
  .sponsor-grid {
    flex-direction: column;
  }
  .form-row-inline {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero-carousel {
    min-height: 55vh;
  }
  .hero-slide {
    min-height: 55vh;
  }
  .hero-slide-content {
    padding: 60px 0 70px;
  }
  .hero-slide-content h1 {
    font-size: 1.4rem;
  }
  .hero-slide-content p {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }
  .hero-slide-content .hero-btns {
    flex-direction: column;
  }
  .hero-slide-content .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-cta-row {
    flex-direction: column;
  }
}

/* --- GRAND LOOK & HIGH-FIDELITY ANIMATIONS --- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --font-h: "Outfit", "Poppins", sans-serif;
}

/* Advanced reveal transition */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered load delays */
.impact-item.reveal:nth-child(1) { transition-delay: 0.1s; }
.impact-item.reveal:nth-child(2) { transition-delay: 0.2s; }
.impact-item.reveal:nth-child(3) { transition-delay: 0.3s; }

.program-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.program-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.program-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.program-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.program-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.program-card.reveal:nth-child(6) { transition-delay: 0.3s; }

.work-card.reveal:nth-child(odd) { transition-delay: 0.1s; }
.work-card.reveal:nth-child(even) { transition-delay: 0.2s; }

/* Grand button transitions */
.btn {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn:hover::after {
    left: 0;
}
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(229, 164, 34, 0.3);
}

/* Card interactions with custom drop-shadow glows */
.program-card, .team-card, .vmv-card, .work-card, .success-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.program-card:hover, .team-card:hover, .vmv-card:hover, .work-card:hover, .success-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(229, 164, 34, 0.12);
    border-color: rgba(229, 164, 34, 0.35);
}

/* Gradient Text Shimmer */
.section-header h2 .accent, 
.hero-slide-content h1 .gold, 
.gold {
    background: linear-gradient(135deg, var(--gold) 20%, #fcd34d 50%, var(--gold-dark) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

/* Header Slide-in animations */
.hero-slide-content h1 {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-slide-content p {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-slide-content .hero-btns {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dynamic floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.founder-img img {
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Hover scales on program card icons */
.program-card:hover .card-icon {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 8px 20px rgba(229, 164, 34, 0.3);
}

/* Active navigation sliding underlines */
.nav-links li a:not(.btn) {
    position: relative;
}
.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-links li a:not(.btn):hover::after,
.nav-links li a:not(.btn).active::after {
    width: 60%;
}

/* ==========================================================================
   FLOATING CONTACT DOCK (WhatsApp, Phone Call, Gmail)
   ========================================================================== */
.floating-contact-dock {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: auto;
}

.dock-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.dock-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.dock-btn svg,
.dock-btn i {
    width: 24px;
    height: 24px;
    display: block;
    stroke-width: 2.2;
}

.dock-whatsapp {
    background-color: #25D366;
}
.dock-whatsapp:hover {
    background-color: #20ba56;
}

.dock-phone {
    background-color: #E5A422; /* Matches ACT brand gold */
}
.dock-phone:hover {
    background-color: #c88e1a;
}

.dock-gmail {
    background-color: #EF4444; /* Vibrant red */
}
.dock-gmail:hover {
    background-color: #dc2626;
}

/* Responsive adjustment for smaller mobile devices & applications */
@media (max-width: 768px) {
    .floating-contact-dock {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    .dock-btn {
        width: 48px;
        height: 48px;
    }
    .dock-btn svg,
    .dock-btn i {
        width: 20px;
        height: 20px;
    }
}

