/* 🎨 Root Variables */
:root {
  --color-primary: #f2018e;
  --color-primary-dark: #c7006a;
  --color-secondary: #18f2c7;
  --color-secondary-dark: #12c7a4;
  --color-heading: #222222;
  --color-text: #555555;
  --color-light: #f8f9fa;
  --color-dark: #2c3e50;
  --color-white: #ffffff;
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-secondary-dark) 100%
  );
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 10px;
  border: 2px solid #f5f5f5;
  transition: background 0.3s ease;
}

/* Thumb Hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--color-primary-dark),
    var(--color-secondary-dark)
  );
}

/* 📝 General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #f5f5f5;
}

body {
  font-family: "Open Sans", sans-serif;

  /* font-family: "Segoe UI", Arial, sans-serif; */
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  padding: 0;

  /* 🔹 Radial Gradient Background */
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #ffffff 10%,
    #c3e1f9 100%
  );
}

/* 🔹 Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Merriweather", serif;
}

h1 span,
h2 span {
  color: var(--color-primary);
}

/* 🔹 Navigation */
header {
  background: var(--color-white);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: var(--color-heading);
  font-weight: 600;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: var(--color-primary);
}

/* 🔹 Sections */
section {
  padding: 80px 20px;
}

/* section:nth-child(even) {
  background-color: var(--color-light);
}

section:nth-child(odd) {
  background-color: var(--color-white);
} */

/* 🔹 Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-dark);
  border: none;
}

.btn-secondary:hover {
  background: var(--color-secondary-dark);
}

/* to be removed */
/* .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-heading);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f2018e;
  margin: 8px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-title {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
} */
/* to be removed */

.section-title i {
  color: var(--color-primary);
  margin-right: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 400;
  margin-top: 20px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

/* =========================================

NAVBAR

===========================================*/
.topbar-social {
  gap: 8px;
}

.topbar-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Brand colors */
.topbar-icon.facebook {
  background: #3b5998;
}
.topbar-icon.instagram {
  background: #e1306c;
}
.topbar-icon.youtube {
  background: #ff0000;
}
.topbar-icon.linkedin {
  background: #0077b5;
}
.topbar-icon.whatsapp {
  background: #25d366;
}
.topbar-btn.share {
  background: black;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Hover effect */
.topbar-icon:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.top-header {
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #ffffff 5%,
    #c3e1f9 100%
  );
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-size: 1.5rem;
  color: var(--color-light);
}

.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--color-primary);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
}
.navbar-brand h4 {
  font-family: "Poppins", sans-serif !important;
}

.navbar-brand h5 {
  font-size: 0.9rem !important;
}

.nav-link {
  font-size: 1.1rem;
  color: var(--color-white);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  margin-inline: 0.8rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-secondary);
  transform: translateY(-3px);
}

.navbar.bg-yellow .nav-link:hover,
.navbar.bg-yellow .nav-link:focus {
  color: var(--gray) !important;
  transform: none;
  text-decoration: none;
  transform: translateY(-3px);
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link.active {
  color: var(--color-secondary-dark) !important;
  font-weight: bold;
}

.brand-text h5 {
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}

.brand-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-phone {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;

  /* 👇 blinking effect */
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.nav-phone:hover {
  color: var(--color-secondary);
}

/* =========================================

CAROUSEL

===========================================*/

.creative-img {
  object-fit: cover;
  height: 80vh;
  transition: transform 2s ease, opacity 1.5s ease;
}

/* Outgoing slide */
.carousel-item-next .creative-img,
.carousel-item-prev .creative-img {
  opacity: 0;
  transform: translateX(50px); /* slide right */
  transition: transform 1s ease, opacity 1s ease;
}

/* Active (incoming) image */
.carousel-item.active .creative-img {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 1s ease;
}
.carousel-item.active .creative-img {
  transform: scale(1);
  opacity: 1;
}

/* Indicators */
.carousel-indicators {
  bottom: 20px; /* lift them up a bit */
}

.carousel-indicators button {
  width: 14px;
  height: 14px;
  background-color: rgba(242, 24, 30, 0.6);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--color-primary-dark);
  transform: scale(1.3);
}

/* Carousel Controls */
.custom-control {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  transition: all 0.3s ease;
}

.custom-control:hover {
  background: var(--color-primary-dark);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
  height: 20px;
}

.custom-control:hover .carousel-control-prev-icon,
.custom-control:hover .carousel-control-next-icon {
  filter: invert(0); /* arrows turn white on hover */
}

/* =========================================

ABOUT US

===========================================*/

/* Language Toggle Buttons */
.btn-lang {
  border: 1px solid var(--color-primary-dark);
  color: var(--color-primary);
  background: transparent;
  font-weight: 500;
  transition: 0.3s;
}

.btn-lang.active,
.btn-lang:hover {
  background: var(--color-primary);
  color: #fff;
}

/* About Content */
.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  transition: opacity 0.3s ease;
  text-align: justify;
}

.about-img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.founders-section .row {
  display: flex;
  flex-wrap: wrap;
}

.founders-section .col-md-6 {
  display: flex;
}

.founder-card {
  flex: 1;
}

.founder-card {
  background: #fff;
  border: 2px solid var(--color-primary-dark);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.founder-img {
  width: 100%;
  height: 400px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.founder-name {
  color: var(--color-dark);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  text-align: center;
}

.founder-role {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.founder-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* =========================================

REPRESENTATIVES

===========================================*/
.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-dark);
  line-height: 1.6;
}

.representative-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.representative-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 8px;
  background: linear-gradient(90deg, #667eea, var(--color-primary-dark));
  border-radius: 0 0 8px 0;
}

.representative-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 120px;
  background: linear-gradient(180deg, #667eea, var(--color-primary-dark));
  border-radius: 0 0 8px 0;
}

.representative-card .bottom-right-border::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 8px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 8px 0 0 0;
  z-index: 1;
}

.representative-card .bottom-right-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 120px;
  background: linear-gradient(180deg, #667eea, #764ba2);
  border-radius: 8px 0 0 0;
  z-index: 1;
}

.representative-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.card-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.representative-name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  text-align: center;
}

.representative-card:hover .card-image {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* .representative-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
} */

.representative-position {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.representative-bio {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  border: none;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--color-light);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(
    135deg,
    var(--color-secondary-dark),
    var(--color-secondary)
  );
}

.btn-secondary-custom {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 2px solid #667eea;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.decorative-element {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  top: -50px;
  right: -50px;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.stats-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea, var(--color-primary-dark));
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

/* =========================================

ACKNOWLEDGMENTS

===========================================*/
.acknowledgments {
  background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

/* Owl Carousel Custom Styling */
.acknowledgments-carousel {
  margin-top: 40px;
}

.ack-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(242, 1, 142, 0.1);
  overflow: hidden;
  position: relative;
  margin: 10px;
  height: 320px;
  display: flex;
  flex-direction: column;
}

.ack-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}

.ack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 25px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-header-section {
  flex-shrink: 0;
  margin-bottom: 15px;
}

.card-content-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.ack-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

.ack-icon i {
  font-size: 20px;
  color: var(--color-white);
}

.role-badge {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-secondary-dark)
  );
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 15px;
  margin-bottom: 0;
  display: inline-block;
  flex-shrink: 0;
}

.card-title {
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contributor-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  text-align: left;
  display: inline-block;
  max-height: 120px;
  overflow-y: auto;
}

.contributor-list::-webkit-scrollbar {
  width: 4px;
}

.contributor-list::-webkit-scrollbar-track {
  background: rgba(242, 1, 142, 0.1);
  border-radius: 2px;
}

.contributor-list::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 2px;
}

.contributor-list li {
  color: #000;
  font-weight: bold;
  margin-bottom: 6px;
  padding-left: 15px;
  position: relative;
  font-size: 0.9rem;
}

.contributor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

.contributor-list li:last-child {
  margin-bottom: 0;
}

/* =========================================

SERVICES

===========================================*/

.services-section {
  background: linear-gradient(135deg, var(--color-light) 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>')
    no-repeat;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon::before {
  transform: scale(1);
}

.service-icon i {
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.1) rotate(5deg);
}

.service-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-heading {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--color-text);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.service-card:hover .service-features li {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover .service-features li:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:hover .service-features li:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:hover .service-features li:nth-child(3) {
  transition-delay: 0.3s;
}

.learn-more-btn {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
}

.service-card:hover .learn-more-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.learn-more-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.stats-section {
  background: var(--gradient-primary);
  color: white;
  margin-top: 4rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.5;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

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

.animate-on-scroll {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-on-scroll:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-on-scroll:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-on-scroll:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-on-scroll:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-on-scroll:nth-child(6) {
  animation-delay: 0.6s;
}

/* Mobile-specific styles for touch interactions */

/* =========================================

UPCOMING PROJECTS
===========================================*/

.upcoming-projects {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--color-light) 0%,
    rgba(242, 1, 142, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.upcoming-projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(24, 242, 199, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(242, 1, 142, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.project-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(242, 1, 142, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  margin: 20px 15px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  background-size: 200% 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(242, 1, 142, 0.2);
}

.project-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(242, 1, 142, 0.3);
  transition: all 0.3s ease;
}

.project-card:hover .project-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(242, 1, 142, 0.5);
}

.project-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 15px;
  line-height: 1.3;
}

.project-desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(24, 242, 199, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: scale(1.1);
}

.project-status {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-secondary-dark)
  );
  color: var(--color-white);
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  max-width: fit-content;
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--color-white) !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 50% !important;
  color: var(--color-primary) !important;
  font-size: 18px !important;
  margin: 0 10px;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(242, 1, 142, 0.2);
}

.owl-carousel .owl-nav button:hover {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(242, 1, 142, 0.4);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(242, 1, 142, 0.3) !important;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
  background: var(--color-primary) !important;
  transform: scale(1.3);
}

.owl-carousel .owl-dot:hover {
  background: var(--color-primary-dark) !important;
}

/* Responsive adjustments */

/* Special status colors */
.status-planning {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
}

.status-starting {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}

.status-ongoing {
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-secondary-dark)
  );
}

.status-monthly {
  background: linear-gradient(90deg, #48dbfb, #0abde3);
}

.status-upcoming {
  background: linear-gradient(90deg, #ff9ff3, #f368e0);
}

/* =========================================

DONATE
===========================================*/

.donate-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-light) 0%,
    rgba(242, 1, 142, 0.03) 50%,
    rgba(24, 242, 199, 0.03) 100%
  );
  position: relative;
  overflow: hidden;
}

.donate-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(242, 1, 142, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(24, 242, 199, 0.08) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.donate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.donate-content {
  display: flex;
  justify-content: center;
  align-items: start;
}

.donate-card {
  background: var(--color-white);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(242, 1, 142, 0.1);
  position: relative;
  overflow: hidden;
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 90%; */
  width: 100%;
}

.donate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}

.donate-info-section {
  padding: 50px 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  /* display: flex;
  flex-direction: column;
  height: 100%; */
}

.donate-card .enquiry {
  margin-bottom: 12px;
}

.donate-card .enquiry a {
  text-decoration: none;
  color: black;
}

.bank-details-section {
  padding: 50px 40px;
}

.donate-info,
.bank-details {
  display: none;
}

.info-title,
.bank-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-title i {
  color: var(--color-primary);
  font-size: 1.6rem;
}

.bank-title i {
  color: var(--color-secondary);
  font-size: 1.6rem;
}

.info-text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.security-note {
  background: rgba(24, 242, 199, 0.1);
  border: 1px solid rgba(24, 242, 199, 0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.security-note i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.security-note p {
  color: var(--color-text);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bank-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  margin-bottom: 15px;
  background: rgba(242, 1, 142, 0.03);
  border-radius: 15px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.bank-detail-item:hover {
  background: rgba(242, 1, 142, 0.08);
  transform: translateX(5px);
}

.detail-label {
  font-weight: 600;
  color: var(--color-heading);
  font-size: 1rem;
}

.detail-value {
  color: var(--color-text);
  font-family: "Arial", monospace;
  font-weight: 500;
  position: relative;
}

.copy-btn {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--color-secondary-dark);
  transform: scale(1.05);
}

.qr-code-section {
  text-align: center;
  margin-top: 2rem;
  padding: 30px;
  background: rgba(24, 242, 199, 0.05);
  border-radius: 20px;
  border: 2px dashed var(--color-secondary);
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 3rem;
  color: var(--color-secondary);
}

.qr-text {
  color: var(--color-text);
  font-weight: 500;
}

.donation-amounts {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 12px 25px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 1, 142, 0.3);
}

.donate-cta {
  text-align: center;
  margin-top: 3rem;
}

.donate-btn {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(242, 1, 142, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(242, 1, 142, 0.4);
}

.security-note {
  background: rgba(24, 242, 199, 0.1);
  border: 1px solid rgba(24, 242, 199, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-top: 2rem;
  text-align: center;
}

.security-note i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.security-note p {
  color: var(--color-text);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* =========================================

CONTACT US

===========================================*/
#contact-us {
  background-color: whitesmoke;
  padding: 64px 0;
}

#contact-us i {
  color: var(--color-primary);
}

.contact-card {
  background-color: var(--color-primary-dark);
  border-radius: 18px;
}

.contact-card button {
  background-color: var(--color-white);
}

.form-label {
  color: var(--color-heading);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 2px solid rgba(242, 1, 142, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(242, 1, 142, 0.25);
  outline: 0;
}

.form-control::placeholder {
  color: #aaa;
}

.btn-primary {
  /* background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  ); */
  background-color: var(--color-white);
  color: var(--color-text);
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 1, 142, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 1, 142, 0.4);
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-secondary-dark)
  );
}

.form-card-title {
  color: var(--color-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

/* =========================================

GALLERY
===========================================*/
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.filter-dropdown-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.filter-label {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.filter-dropdown {
  background: white;
  border: 2px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  min-width: 150px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-dropdown:focus {
  background: var(--color-primary-dark);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 124, 89, 0.3);
  border-color: var(--color-primary-dark);
}

.filter-dropdown option {
  background: white;
  color: var(--color-primary-dark);
  padding: 10px;
}

.gallery-container {
  position: relative;
}

/* Desktop Gallery Grid */
.gallery-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* Mobile/Tablet Owl Carousel */
.gallery-carousel {
  display: none;
  margin-bottom: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
  margin: 0 10px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(44, 85, 48, 0.8),
    rgba(127, 176, 105, 0.8)
  );
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

.overlay-icon {
  color: white;
  font-size: 2rem;
  margin-bottom: 10px;
}

.overlay-text {
  color: white;
  text-align: center;
  padding: 0 20px;
}

.overlay-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay-year {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Custom Gallery Carousel Styles */
.gallery-carousel-custom .owl-stage-outer {
  padding: 10px 0;
  margin-bottom: 40px;
}

.gallery-carousel-custom .owl-nav button.owl-next,
.gallery-carousel-custom .owl-nav button.owl-prev {
  background: var(--color-primary-dark) !important;
  color: white !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  border: none !important;
}

.gallery-carousel-custom .owl-nav button.owl-prev {
  left: -25px;
}

.gallery-carousel-custom .owl-nav button.owl-next {
  right: -25px;
}

.gallery-carousel-custom .owl-nav button:hover {
  background: var(--color-primary) !important;
  transform: translateY(-50%) scale(1.1);
}

/* Custom Slide Indicator */
.slide-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
  color: var(--color-primary-dark);
  font-weight: 500;
}

.slide-counter {
  background: var(--color-primary-dark);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(76, 124, 89, 0.2);
}

.slide-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar-custom {
  width: 100px;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary-dark),
    var(--accent-color)
  );
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Custom Lightbox2 Styles */
.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  background: var(--color-primary-dark) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
}

.lb-nav a.lb-next:hover,
.lb-nav a.lb-prev:hover {
  background: var(--color-primary) !important;
}

.lb-outerContainer {
  border-radius: 10px !important;
}

.lb-caption {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.lb-number {
  color: #ffffff !important;
  font-weight: 500 !important;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #dee2e6;
}

/* =========================================

FOOTER
===========================================*/

.footer-section {
  background: linear-gradient(
    135deg,
    var(--color-dark) 0%,
    rgba(44, 62, 80, 0.95) 50%,
    var(--color-dark) 100%
  );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(242, 1, 142, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  transform: rotateY(180deg);
}

.custom-shape-divider .shape-fill {
  /* fill: #c3e1f9; */
  fill: whitesmoke;
}

.temple-logo {
  font-size: 2rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.temple-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(24, 242, 199, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-heavy);
  color: white;
  background: var(--gradient-secondary);
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.contact-item i {
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin-right: 0.8rem;
  width: 20px;
}

.section-heading {
  position: relative;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    45deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  border-radius: 2px;
}

.copyright-section {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-primary-dark);
  margin-top: 3rem;
  padding: 1.5rem 0;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 215, 0, 0.1);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.description-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-col {
  position: relative;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.footer-col:hover {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transform: translateY(-5px);
}

.contact-item .small {
  display: inline-block;
  word-wrap: break-word; /* old support */
  overflow-wrap: anywhere; /* modern support */
  white-space: normal; /* ensures it can break */
}

/* =========================================

COUNTER
===========================================*/

#counter {
  background-color: whitesmoke;
}

/* =========================================
Floating buttons
===========================================*/

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: var(--color-primary-dark);
  color: #fff;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn:hover {
  background-color: #005f86;
  transform: translateY(-3px);
}
.donate-fab {
  position: fixed;
  bottom: 20px;
  right: 70px; /* sits left of scrollTopBtn */
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #0000ff; /* 🔵 solid blue */
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 12px rgba(0, 0, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.donate-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 255, 0.55);
}

/* Pulse + blink animation */
.donate-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: donate-pulse 2.2s ease-out infinite;
}

.upi-box {
  background: #f9f9f9;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  flex-wrap: wrap;
  max-width: 100%;
}

.upi-label {
  color: #000;
  flex-shrink: 0;
}

.upi-value {
  color: #007bff;
  word-break: break-word;
  flex: 1;
}

.copy-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
}

/* 📱 Mobile responsiveness */
@media (max-width: 576px) {
  .upi-box {
    font-size: 16px; /* shrink font size */
    padding: 8px 10px;
    gap: 6px;
  }

  .copy-btn {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@keyframes donate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 0, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 255, 0);
  }
}

@keyframes donate-blink {
  0%,
  90%,
  100% {
    filter: none;
  }
  95% {
    filter: brightness(1.2);
  }
}
.donate-fab {
  animation: donate-blink 6s linear infinite;
}

/* Compact on small screens */
@media (max-width: 575px) {
  .donate-fab {
    padding: 12px;
    right: 65px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .donate-fab,
  .donate-fab::after {
    animation: none !important;
    transition: none !important;
  }
}
