/* style.css - Shaheen Iqbal Diabetes Center (SIDE-C) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1A2C3E;
  overflow-x: hidden;
}

/* Full Logo Image - Navbar */
.navbar-logo-full {
  height: 70px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.navbar-logo-full:hover {
  transform: scale(1.02);
}

h1,
h2,
h3,
.heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

:root {
  --primary: #1B3A6B;
  --primary-dark: #122a52;
  --primary-light: #EBF0FA;
  --accent: #2E7D32;
  --accent-light: #E8F5E9;
  --accent-dark: #1B5E20;
  --red: #C62828;
  --red-light: #FFEBEE;
  --gray-bg: #F8FAFC;
  --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 30px 45px -15px rgba(27, 58, 107, 0.2);
}

/* === TEXT COLOR UTILITIES === */
.text-primary {
  color: var(--primary) !important;
}

/* === TOPBAR === */
div[style*="background: var(--primary-light)"],
div[style*="background:var(--primary-light)"] {
  background: var(--primary) !important;
}

div[style*="background: var(--primary-light)"] span,
div[style*="background:var(--primary-light)"] span {
  color: rgba(255, 255, 255, 0.85) !important;
}

div[style*="background: var(--primary-light)"] a,
div[style*="background:var(--primary-light)"] a {
  color: rgba(255, 255, 255, 0.9) !important;
}

div[style*="background: var(--primary-light)"] i,
div[style*="background:var(--primary-light)"] i {
  color: #a8d1ff !important;
}

div[style*="background: var(--primary-light)"] .bi-heart-fill,
div[style*="background:var(--primary-light)"] .bi-heart-fill {
  color: #ff8a8a !important;
}

/* Topbar responsive */
@media (max-width: 768px) {
  div[style*="background: var(--primary-light)"] .container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .topbar-email {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* === NAVBAR === */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  border-bottom: 2px solid rgba(27, 58, 107, 0.12);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Full Logo Image - Navbar */
.navbar-logo-full {
  height: 70px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.navbar-logo-full:hover {
  transform: scale(1.02);
}

.nav-link {
  font-weight: 500;
  color: #1A2C3E !important;
  margin: 0 0.1rem;
  border-radius: 40px;
  padding: 0.45rem 0.9rem !important;
  transition: 0.2s;
  font-size: 0.93rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary-light);
  color: var(--primary) !important;
}

.nav-donate-btn {
  background: var(--accent) !important;
  color: white !important;
  border-radius: 60px;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600;
}

.nav-donate-btn:hover {
  background: var(--accent-dark) !important;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4ff 50%, #ffffff 100%);
  padding: 4rem 0 5rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--primary);
}

.floating-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  border: 1px solid rgba(27, 58, 107, 0.15);
  transition: box-shadow 0.3s;
}

.floating-card:hover {
  box-shadow: var(--hover-shadow);
}

/* === SERVICE CARDS === */
.service-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  border: 1px solid rgba(27, 58, 107, 0.08);
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--hover-shadow);
  border-color: rgba(27, 58, 107, 0.2);
}

.service-icon {
  background: var(--primary-light);
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

/* === IMAGE CONTAINERS === */
.img-equal {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 360px;
  transition: box-shadow 0.4s;
}

.img-equal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.img-equal:hover {
  box-shadow: var(--hover-shadow);
}

.img-equal:hover img {
  transform: scale(1.04);
}

.img-small {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 260px;
  transition: box-shadow 0.4s;
}

.img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.img-small:hover {
  box-shadow: var(--hover-shadow);
}

.img-small:hover img {
  transform: scale(1.03);
}

/* === DONATE CARDS === */
.donate-card {
  background: white;
  border-radius: 24px;
  padding: 1.8rem;
  border: 1px solid rgba(27, 58, 107, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}

.donate-card:hover {
  border-color: var(--accent);
  box-shadow: var(--hover-shadow);
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover {
  box-shadow: var(--hover-shadow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(27, 58, 107, 0.75), transparent);
  color: white;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.9rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* === FOOTER === */
footer {
  background: var(--primary-dark);
  color: #CBD5E1;
}

footer h4,
footer h5,
footer h6 {
  color: white;
}

footer a {
  color: #CBD5E1;
  transition: 0.2s;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Full Logo Image - Footer */
.footer-logo-full {
  height: 70px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
}

/* === BUTTONS === */
.btn-primary-custom {
  background: var(--primary);
  border-radius: 60px;
  padding: 0.72rem 1.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white !important;
  box-shadow: 0 8px 20px rgba(27, 58, 107, 0.3);
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary) !important;
  border-radius: 60px;
  padding: 0.68rem 1.7rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: white !important;
}

/* === MODAL === */
.donate-modal .modal-content {
  border-radius: 36px;
  overflow: hidden;
}

.donate-modal-header {
  background: var(--primary);
  color: white;
}

.donate-details {
  background: #EBF0FA;
  border-radius: 20px;
  padding: 1rem 1.2rem;
}

/* === PAGE HEADERS === */
.page-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 0;
  text-align: center;
  color: white;
}

/* === IMPACT SECTION === */
.impact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 26px;
  padding: 3rem;
  margin: 2rem 0;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

/* === STATS (About page) — NO hover movement === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 2rem 0;
}

.stat-box {
  background: var(--primary-light);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background 0.3s;
}

.stat-box:hover {
  background: var(--primary);
}

.stat-box:hover .stat-number,
.stat-box:hover .stat-label {
  color: white;
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.3rem;
  display: block;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.83rem;
  color: #64748B;
  display: block;
}

/* === GALLERY STATS — NO hover movement === */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 2rem 0;
}

.stat-gallery {
  background: white;
  border-radius: 18px;
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.stat-gallery:hover {
  box-shadow: var(--hover-shadow);
}

/* === MISSION / VISION === */
.mission-vision {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 26px;
  padding: 2.5rem;
  color: white;
  margin: 2rem 0;
}

.mission-vision h3,
.mission-vision p {
  color: white;
}

.content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* === CONTACT/SERVICE/GALLERY HEADERS === */
.contact-header,
.service-header,
.gallery-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  color: white;
  text-align: center;
}

.contact-header h1,
.service-header h1,
.gallery-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-header p,
.service-header p,
.gallery-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

/* === INFO CARDS (Contact) === */
.info-card {
  background: white;
  border-radius: 22px;
  padding: 1.8rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 58, 107, 0.1);
  transition: box-shadow 0.3s;
}

.info-card:hover {
  box-shadow: var(--hover-shadow);
}

.info-icon {
  width: 68px;
  height: 68px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.7rem;
  color: var(--primary);
}

.info-card h5 {
  margin-bottom: 0.5rem;
}

.info-card a {
  color: var(--primary);
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-panel {
  background: white;
  border-radius: 22px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 58, 107, 0.1);
}

.working-hours-list {
  margin-top: 1rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 0.3rem;
}

.hour-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #1A2C3E;
}

.time {
  color: var(--primary);
  font-weight: 500;
}

.map-placeholder {
  background: var(--primary-light);
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary);
  margin-top: 1rem;
}

/* === SERVICE PAGE === */
.category-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 40px;
  padding: 0.3rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-highlight {
  background: var(--gray-bg);
  border-radius: 26px;
  padding: 2rem;
  margin: 2rem 0;
}

.price-tag {
  background: var(--primary-light);
  border-radius: 60px;
  padding: 0.22rem 1rem;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.cta-services {
  background: linear-gradient(135deg, var(--primary-light), white);
  border-radius: 26px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}

/* === TEAM CARDS === */
.team-card {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--hover-shadow);
}

.team-icon {
  width: 76px;
  height: 76px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.9rem;
  color: var(--primary);
}

/* === PARTNER LOGOS === */
.partner-logo {
  background: white;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: box-shadow 0.3s;
}

.partner-logo:hover {
  box-shadow: var(--hover-shadow);
}

/* ============================================================
   TABLET (≤991px)
   ============================================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 16px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(27, 58, 107, 0.1);
  }

  .navbar-nav {
    gap: 0.3rem !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.6rem 1rem !important;
    border-radius: 10px;
    white-space: normal;
    text-align: center;
  }

  .nav-donate-btn {
    display: inline-flex !important;
    width: auto;
    margin-top: 0.3rem;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .impact-section {
    padding: 2rem 1.5rem;
  }

  .impact-number {
    font-size: 2rem;
  }

  .navbar-logo-full {
    height: 56px;
  }

  .footer-logo-full {
    height: 56px;
  }

  .hero .row .col-lg-6:first-child {
    order: 2;
  }

  .hero .row .col-lg-6:last-child {
    order: 1;
    margin-bottom: 2rem;
  }

  .btn-primary-custom,
  .btn-outline-primary-custom {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   MOBILE (≤575px)
   ============================================================ */
@media (max-width: 575px) {
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .navbar-logo-full {
    height: 48px;
  }

  .footer-logo-full {
    height: 48px;
  }

  .hero {
    padding: 1.5rem 0 2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero .d-flex.gap-3 {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem !important;
  }

  .hero .d-flex.gap-3 a {
    justify-content: center;
    width: 100%;
  }

  .floating-card {
    border-radius: 20px;
  }

  .img-equal {
    min-height: 220px;
  }

  .img-small {
    min-height: 200px;
  }

  .impact-section {
    padding: 1.5rem 1rem;
    border-radius: 18px;
    margin: 1rem 0;
  }

  .impact-number {
    font-size: 1.5rem;
  }

  .impact-section .row .col-md-3 {
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin: 1rem 0;
  }

  .gallery-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-box {
    padding: 1rem 0.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .btn-primary-custom,
  .btn-outline-primary-custom {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
  }

  .p-5 {
    padding: 1.2rem !important;
  }

  .service-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    border-radius: 14px;
  }

  .service-card h5 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .gallery-item {
    border-radius: 12px;
  }

  footer .col-md-5,
  footer .col-md-3,
  footer .col-md-4 {
    margin-bottom: 1.2rem;
    text-align: center;
  }

  footer .d-flex.align-items-center {
    justify-content: center;
    flex-direction: column;
  }

  .footer-logo-full {
    height: 48px;
  }

  .donate-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .mission-vision {
    padding: 1.2rem;
    border-radius: 18px;
    margin: 1rem 0;
  }

  .team-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .team-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .info-card {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .info-panel {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .hour-row {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .service-highlight {
    padding: 1.2rem;
    border-radius: 18px;
    margin: 1rem 0;
  }

  .cta-services {
    padding: 1.2rem;
    border-radius: 18px;
    margin-top: 1rem;
  }

  .contact-header,
  .service-header,
  .gallery-header {
    padding: 2rem 0;
  }

  .contact-header h1,
  .service-header h1,
  .gallery-header h1 {
    font-size: 1.6rem;
  }

  .contact-header p,
  .service-header p,
  .gallery-header p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .page-title {
    padding: 2rem 0;
  }

  .page-title h1 {
    font-size: 1.6rem;
  }

  .modal-body {
    padding: 1rem !important;
  }

  .donate-details {
    padding: 0.8rem;
  }

  .donate-details p,
  .donate-details h6 {
    font-size: 0.85rem;
    word-break: break-word;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .col-md-4,
  .col-md-3,
  .col-md-6,
  .col-lg-6 {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Fix text cutting issues */
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  a,
  li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .stat-number {
    white-space: normal;
    font-size: 1.3rem;
  }

  .hero .floating-card h4 {
    font-size: 1.1rem;
  }

  .hero .floating-card small {
    font-size: 0.7rem;
  }
}

/* ============================================================
   VERY SMALL (≤375px)
   ============================================================ */
@media (max-width: 375px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .impact-number {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-box {
    padding: 0.8rem 0.3rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .btn-primary-custom,
  .btn-outline-primary-custom {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .brand-icon {
    width: 75px;
    height: 75px;
  }

  footer .brand-icon {
    width: 90px !important;
    height: 90px !important;
  }

  .service-card {
    padding: 1rem;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* ============================================================
   FIX FOR ANY HOVER MOVEMENTS - REMOVED ALL transform:translateY
   ============================================================ */
.stat-box,
.stat-gallery,
.team-card,
.info-card,
.partner-logo {
  transform: none !important;
}

.service-card,
.donate-card,
.gallery-item {
  transform: none !important;
}

/* Fix for any potential transform on hover */
.service-card:hover,
.donate-card:hover,
.gallery-item:hover,
.stat-box:hover,
.stat-gallery:hover,
.team-card:hover,
.info-card:hover,
.partner-logo:hover {
  transform: none !important;
}

/* Keep only scale transforms for images */
.img-equal:hover img,
.img-small:hover img,
.gallery-item:hover img {
  transform: scale(1.03);
}

/* Fix button transforms */
.btn-primary-custom:hover,
.btn-outline-primary-custom:hover {
  transform: translateY(-2px);
}

/* Fix for Donate Now button alignment on mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .nav-donate-btn {
    display: inline-flex !important;
    justify-content: center !important;
    width: auto !important;
    margin: 0.5rem auto !important;
    text-align: center;
  }

  .navbar-nav .nav-item {
    text-align: center;
  }

  .navbar-nav .nav-link {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .nav-donate-btn {
    display: inline-flex !important;
    justify-content: center !important;
    width: 80% !important;
    margin: 0.5rem auto !important;
  }
}

/* Donate Now Button - Extra Round on Mobile */
@media (max-width: 991px) {
  .nav-donate-btn {
    border-radius: 60px !important;
    padding: 0.6rem 1.5rem !important;
  }

  .navbar-nav .nav-link[href="tel:03332684911"] {
    border-radius: 60px !important;
  }
}

@media (max-width: 575px) {
  .nav-donate-btn {
    border-radius: 80px !important;
    padding: 0.7rem 1.8rem !important;
    width: auto !important;
    min-width: 180px;
  }

  .navbar-nav .nav-link[href="tel:03332684911"] {
    border-radius: 80px !important;
    padding: 0.7rem 1.5rem !important;
  }
}