@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

:root {
  --color-primary: #1B3C6F;
  --color-gold: #F3A227;
  --color-gold-light: #FCD25A;
  --color-cream: #F7F7F5;
}

html {
  scroll-behavior: smooth;
}

.site-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.3rem 0.65rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.site-logo--header {
  display: block;
}

.site-logo--footer {
  display: block;
}

body {
  background-color: #F7F7F5;
  color: #1B3C6F;
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Mobile layout optimizations */
@media (max-width: 768px) {
  /* Prevent horizontal overflow on small screens */
  body {
    overflow-x: hidden;
  }
}

.font-display {
  font-family: 'Cairo', sans-serif;
}

[dir='ltr'] .font-display {
  font-family: 'Montserrat', sans-serif;
}

/* Main page scrollbar */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #F3A227;
  border-radius: 4px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent;
}

/* Hide scrollbar utility */
.scrollbar-none {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.scrollbar-none::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ── Color utility classes (mirroring the Tailwind @theme tokens) ── */
.text-primary {
  color: #1B3C6F;
}

.bg-primary {
  background-color: #1B3C6F;
}

.bg-cream {
  background-color: #F7F7F5;
}

.text-gold {
  color: #F3A227;
}

.bg-gold {
  background-color: #F3A227;
}

.border-gold\/30 {
  border-color: rgba(243, 162, 39, 0.3);
}

.border-gold\/40 {
  border-color: rgba(243, 162, 39, 0.4);
}

.bg-gold\/15 {
  background-color: rgba(243, 162, 39, 0.15);
}

/* ── Keyframes ───────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  33% {
    transform: translateY(-16px) translateX(10px);
  }

  66% {
    transform: translateY(-8px) translateX(-7px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes progressBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes pulseRing {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(243, 162, 39, 0.45);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(243, 162, 39, 0);
  }
}

@keyframes revealText {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes underlineExpand {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ── Scroll reveal ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

/* ── Nav underline ───────────────────────────────────────────── */

.nav-link,
.nav-mobile-link {
  position: relative;
  display: inline-block;
}

.nav-link {
  padding-bottom: 4px;
}

.nav-link::after,
.nav-mobile-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 2px;
  background: #F3A227;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, background 0.2s ease;
}

.nav-link:hover::after,
.nav-mobile-link:hover::after,
.nav-link-active::after,
.nav-mobile-link-active::after {
  transform: scaleX(1);
}

.nav-link-active,
.nav-mobile-link-active {
  color: #F3A227 !important;
}

.nav-mobile-link {
  display: block;
  width: 100%;
  padding-bottom: 12px;
}

.nav-mobile-link-active {
  border-bottom-color: rgba(243, 162, 39, 0.35) !important;
}

/* ── Circle-of-giving bubbles ────────────────────────────────── */

.circle-bubble {
  transform: translate(-50%, -50%);
  z-index: 1;
}

.circle-bubble-inner {
  position: relative;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.circle-bubble-inner.bubble-visible {
  opacity: 1;
  transform: scale(1);
  animation: float var(--float-dur, 6s) ease-in-out var(--float-delay, 0s) infinite;
}

.circle-bubble:hover {
  z-index: 10;
}

.circle-bubble:hover .circle-bubble-inner.bubble-visible {
  animation: none;
  transform: scale(1.2);
}

.bubble-tooltip {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.circle-bubble:hover .bubble-tooltip {
  opacity: 1;
}

.circle-bubble:hover .bubble-points {
  opacity: 0;
}

.circle-bubble:hover .bubble-avatar {
  box-shadow: 0 0 0 4px rgba(243, 162, 39, 0.4), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bubble-avatar {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

/* ── Misc helpers used by the JS-rendered markup ────────────── */
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3 / 4;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── Fallback utilities for classes not present in Tailwind's default set ── */
.group:hover .group-hover\:scale-108 {
  transform: scale(1.08);
}

.shadow-xs {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.blur-\[100px\] {
  filter: blur(100px);
}

/* ── About Us Page Specific Styles ─────────────────────────── */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  bottom: -2.5rem;
  width: 2px;
  background: linear-gradient(to bottom, #F3A227, rgba(243, 162, 39, 0.15));
}

[dir='rtl'] .timeline-item::before {
  right: 1.5rem;
}

[dir='ltr'] .timeline-item::before {
  left: 1.5rem;
}

.timeline-item:last-child::before {
  display: none;
}

.governance-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.governance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 162, 39, 0.4);
  box-shadow: 0 20px 40px -15px rgba(27, 60, 111, 0.15);
}

/* ── Work Areas Page Specific Styles ───────────────────────── */
.work-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 162, 39, 0.45);
  box-shadow: 0 24px 48px -12px rgba(27, 60, 111, 0.18);
}

.work-filter-btn {
  transition: all 0.25s ease;
}

.work-filter-btn.active {
  background-color: #1B3C6F;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(27, 60, 111, 0.25);
}

.modal-backdrop {
  animation: fadeIn 0.25s ease forwards;
}

.modal-box {
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Impact Page Specific Styles ────────────────────────────── */

/* Segmented fund-distribution bar */
.fund-bar-segment {
  height: 100%;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* KPI counter glow cards */
.impact-kpi-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.impact-kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(243, 162, 39, 0.25), 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Beneficiary story cards */
.story-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 162, 39, 0.45);
  box-shadow: 0 24px 48px -12px rgba(27, 60, 111, 0.18);
}

/* Trust badge shine sweep */
.trust-badge {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.trust-badge:hover::after {
  left: 140%;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -8px rgba(27, 60, 111, 0.18);
}

/* Impact page timeline connector */
.impact-timeline-item::before {
  content: '';
  position: absolute;
  top: 2rem;
  bottom: -2.5rem;
  width: 2px;
  background: linear-gradient(to bottom, #F3A227, rgba(243, 162, 39, 0.12));
}

[dir='rtl'] .impact-timeline-item::before {
  right: 1.1rem;
}

[dir='ltr'] .impact-timeline-item::before {
  left: 1.1rem;
}

.impact-timeline-item:last-child::before {
  display: none;
}

/* Evidence gallery — single row */
.evidence-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.evidence-grid .evidence-cell {
  flex: 1 1 0;
  min-width: 140px;
  height: 200px;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .evidence-grid {
    overflow-x: visible;
  }

  .evidence-grid .evidence-cell {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .evidence-grid .evidence-cell {
    min-width: 45%;
    flex: 0 0 45%;
  }
}

/* ── Contact Page Specific Styles ───────────────────────────── */
.contact-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 162, 39, 0.45);
  box-shadow: 0 20px 40px -10px rgba(27, 60, 111, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), opacity 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.whatsapp-glow {
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
}

.whatsapp-glow:hover {
  box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.6);
}

/* ── Contact page (contact.php only) ───────────────────────── */
.contact-main-section {
  padding-bottom: 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-side-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 4px 20px rgba(27, 60, 111, 0.07);
  border: 1px solid rgba(27, 60, 111, 0.06);
}

.contact-info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #1B3C6F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-card-label {
  display: block;
  color: #F3A227;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.contact-info-card-line {
  margin: 0;
  color: #1B3C6F;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.5;
  unicode-bidi: plaintext;
  text-align: start;
}

.contact-donate-card {
  background: linear-gradient(145deg, #F3A227 0%, #FCD25A 100%);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(243, 162, 39, 0.35);
}

.contact-donate-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  background: rgba(27, 60, 111, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3C6F;
  font-size: 1.35rem;
}

.contact-donate-title {
  color: #1B3C6F;
  font-weight: 900;
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.contact-donate-line {
  color: #1B3C6F;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.contact-donate-reg {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.25rem;
  background: #1B3C6F;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(27, 60, 111, 0.08);
  border: 1px solid rgba(27, 60, 111, 0.06);
}

.contact-form-title {
  color: #1B3C6F;
  font-weight: 900;
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  text-align: center;
}

.contact-stars-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.5rem;
  width: 100%;
}

.contact-stars-divider.center {
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-stars-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F3A227, transparent);
  max-width: 160px;
}

.contact-stars-divider.center .line {
  max-width: 180px;
}

.contact-stars-divider .stars {
  color: #F3A227;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field label {
  display: block;
  color: #1B3C6F;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.contact-field label .req {
  color: #e53e3e;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #F7F7F5;
  color: #1B3C6F;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #F3A227;
  box-shadow: 0 0 0 3px rgba(243, 162, 39, 0.15);
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: #1B3C6F;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}

.contact-submit-btn:hover {
  background: #15305a;
  transform: translateY(-1px);
}

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-form-alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-form-alert.hidden {
  display: none;
}

.contact-form-alert--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.contact-form-alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

.contact-map-section {
  padding-top: 0.5rem;
}

.contact-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #F3A227;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.contact-map-title {
  color: #1B3C6F;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.contact-map-wrap {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27, 60, 111, 0.1);
  border: 1px solid rgba(27, 60, 111, 0.08);
}

.contact-map-external {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: #1B3C6F;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-map-external:hover {
  color: #F3A227;
}

.contact-social-section {
  padding-top: 1rem;
}

.contact-social-title {
  color: #1B3C6F;
  font-weight: 900;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.5rem;
}

.contact-social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}

.contact-social-card {
  flex: 1 1 240px;
  max-width: 280px;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 4px 18px rgba(27, 60, 111, 0.07);
  border: 1px solid rgba(27, 60, 111, 0.06);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 60, 111, 0.12);
  border-color: rgba(27, 60, 111, 0.15);
}

.contact-social-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.contact-social-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-social-card-text strong {
  color: #1B3C6F;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-social-card-text span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-brand-facebook .contact-social-card-icon {
  background: #1877f2;
  color: #fff;
}

.social-brand-twitter .contact-social-card-icon {
  background: #1da1f2;
  color: #fff;
}

.social-brand-instagram .contact-social-card-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.social-brand-youtube .contact-social-card-icon {
  background: #ff0000;
  color: #fff;
}

.social-brand-whatsapp .contact-social-card-icon {
  background: #25d366;
  color: #fff;
}

.social-brand-telegram .contact-social-card-icon {
  background: #0088cc;
  color: #fff;
}

.social-brand-snapchat .contact-social-card-icon {
  background: #fffc00;
  color: #000;
}

.social-brand-tiktok .contact-social-card-icon {
  background: #010101;
  color: #fff;
}

.social-brand-default .contact-social-card-icon {
  background: #1B3C6F;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  @media (max-width: 560px) {
    .contact-social-card {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .contact-form-card {
      padding: 1.5rem;
    }
  }
}

/* ── About section image slider (home + about page) ─────────── */
.about-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  z-index: 1;
  user-select: none;
  cursor: grab;
}

.about-slider:active {
  cursor: grabbing;
}

.about-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  pointer-events: none;
  overflow: hidden;
}

.about-slider-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.about-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
  will-change: transform;
}

.about-slider-slide.active img {
  transform: scale(1.04);
}

.about-slider-arrow {
  display: none !important;
}

.about-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.about-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.about-slider-dot:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.2);
}

.about-slider-dot.active {
  background: #F3A227;
  border-color: #F3A227;
  width: 24px;
  border-radius: 10px;
}