@charset "utf-8";

/* Base Fonts */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #000;
}
a {
    text-decoration: none!important;
}
.grecaptcha-badge { visibility: hidden; }

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.dk-purple-txt {
	color: #37A5BA;
}
.gold-txt {
	color: #204B5E;
}
.blue-txt {
	color: #6FC3D1;
}
.text-primary {
  color: #37A5BA !important;
}

.btn.btn-primary {
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 25px;
}
.btn-primary {
  background-color: #37A5BA;
  border-color: #37A5BA;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #2b8393;
  border-color: #2b8393;
}
.btn-outline-primary {
  color: #37A5BA;
  border-color: #37A5BA;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #37A5BA;
  color: #fff;
  border-color: #37A5BA;
}

/*--------------------------------------<Nav>---------------------------------------------*/

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

/* Nav font sizing + spacing */
.navbar-nav > .nav-item > .nav-link {
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.navbar-nav > .nav-item:not(:first-child) {
  margin-left: 1rem;
}

/* Animated underline for links using .underline */
.navbar-nav > .nav-item > .nav-link.underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #37A5BA; /* updated from #007bff */
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}
.navbar-nav > .nav-item > .nav-link.underline:hover::after,
.navbar-nav > .nav-item > .nav-link.underline.active::after {
  width: 100%;
}

/* Active link color */
.nav-link.active {
  color: #37A5BA !important;  /* updated from #007bff */
  font-weight: 600;
}

/* Give Button Styling */
.navbar .btn.btn-primary {
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 25px;
  background-color: #37A5BA;
  border-color: #37A5BA;
}
.navbar .btn.btn-primary:hover,
.navbar .btn.btn-primary:focus {
  background-color: #2b8393;
  border-color: #2b8393;
}

/* Hover dropdown on desktop */
.hover-dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}
.dropdown-menu .dropdown-item {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.dropdown-menu .dropdown-item.underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #37A5BA;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.dropdown-menu .dropdown-item.underline:hover::after {
  width: 100%;
}
.dropdown-menu .dropdown-item.active {
  color: #37A5BA;
	background-color: transparent;
  font-weight: 600;
}
.dropdown-menu .dropdown-item.active::after {
  width: 100%;
}
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
  color: #37A5BA !important;
}

.dropdown-menu .dropdown-item:hover {
  color: #37A5BA;
  background-color: transparent;
}
/*--------------------------------------<Navbar Logo>---------------------------------------------*/

.navbar .navbar-brand img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    height: 40px; /* smaller on tablets and mobile */
  }
}

@media (max-width: 575.98px) {
  .navbar .navbar-brand img {
    height: 35px; /* even smaller on small phones */
  }
}


/*--------------------------------------</Nav>---------------------------------------------*/



/*--------------------------------------<Hero>---------------------------------------------*/

.hero-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
	margin-bottom: 0!important;
}

.hero-section .btn, .hero2-section .btn {
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 25px;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1.4s forwards;
}

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

/*--------------------------------------<Hero Image Rotator>---------------------------------------------*/

.hero-image-rotator {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rotating-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeImages 30s infinite;
}

.img-1 { animation-delay: 0s; }
.img-2 { animation-delay: 5s; }
.img-3 { animation-delay: 10s; }
.img-4 { animation-delay: 15s; }
.img-5 { animation-delay: 20s; }
.img-6 { animation-delay: 25s; }
.img-7 { animation-delay: 30s; }

@keyframes fadeImages {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

/*--------------------------------------<Hero Hexagons>---------------------------------------------*/

.floating-hex-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hex-wrapper {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s ease;
  opacity: 0;
}
.hex-no-grow .hex-wrapper {
  opacity: 1 !important;
}

.hex-appear {
  animation-name: growHex;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
/* Delay for growHex animation */
.hex-delay-0 { animation-delay: 0s; }
.hex-delay-1 { animation-delay: 0.3s; }
.hex-delay-2 { animation-delay: 0.6s; }
.hex-delay-3 { animation-delay: 0.9s; }
.hex-delay-4 { animation-delay: 1.2s; }
.hex-delay-5 { animation-delay: 1.5s; }


@keyframes growHex {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hex {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation-name: driftHex;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  z-index: 1;
}


/* Apply drift animation with staggered delay */
.hex-float-delay-0 { animation-delay: 0s; }
.hex-float-delay-1 { animation-delay: 3s; }
.hex-float-delay-2 { animation-delay: 6s; }
.hex-float-delay-3 { animation-delay: 9s; }
.hex-float-delay-4 { animation-delay: 12s; }
.hex-float-delay-5 { animation-delay: 15s; }

@keyframes driftHex {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  25%  { transform: translate(80px, -60px) rotate(90deg); }
  50%  { transform: translate(-100px, -30px) rotate(180deg); }
  75%  { transform: translate(60px, 40px) rotate(270deg); }
  100% { transform: translate(0px, 0px) rotate(360deg); }
}

/* Light Teal (logo accent base) */
.hex-teal {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(55, 165, 186, 0.5)); /* #37A5BA */
}

/* Deep Slate Blue (logo circle base) */
.hex-slate {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(32, 75, 94, 0.5)); /* #204B5E */
}

/* Sky Blue (lightened accent) */
.hex-sky {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(111, 195, 209, 0.5)); /* #6FC3D1 */
}

/* Navy Gray (soft neutral for balance) */
.hex-navygray {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(40, 60, 70, 0.5)); /* optional darker neutral */
}


.hex,
.hero-content {
  will-change: transform, opacity;
}


/*--------------------------------------<Wave Divider>---------------------------------------------*/

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vw; /* Make height responsive based on viewport width */
  max-height: 400px;
  min-height: 120px; /* Prevent it from getting too squished */
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Inherit responsive height from parent */
}

.wave-back path {
  fill: #37A5BA; /* Vibrant Teal */
  opacity: 1;
}

.wave-mid path {
  fill: #6FC3D1; /* Lighter Teal */
  opacity: 1;
}

.wave-front path {
  fill: #204B5E; /* Deep Slate Blue */
  opacity: 1;
}

/*--------------------------------------</Hero>---------------------------------------------*/



/* -------------------------------------<Hero2 Section>-------------------------------------------- */

.hero2-section {
  padding-top: 150px!important;
  background: linear-gradient(to bottom, #fdfdfd, #f6f6f6);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 -10px 12px -10px rgba(0, 0, 0, 0.15);
}




.hero2-section h1 {
  color: #37A5BA;
}

.hero2-section p {
  color: #333;
}

.hero2-image {
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* -------------------------------------</Hero2 Section>-------------------------------------------- */


/*--------------------------------------<Visit Section>---------------------------------------------*/

.visit-section {
  background-color: #204B5E;
  position: relative;
  z-index: 2;
	margin-top: -1px!important;
}

.visit-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px!important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  transition: transform 0.3s ease;
}

.visit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.visit-card h5 {
  color: #fff;
}

.visit-card a {
  color: #fff;
}
.visit-card a.btn {
  background-color: #fff;
  color: #204B5E;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.visit-card a.btn:hover {
  background-color: #2b8393;
  color: #fff;
  transform: translateY(-2px); /* Optional: subtle lift effect */
}


.icon-circle {
  font-size: 2rem;
  color: #fff;
}

/*--------------------------------------</Visit Section>---------------------------------------------*/

/*--------------------------------------<You Belong Here Section>---------------------------------------------*/
.belong-section {
    background-color: #F6F6F6;
}
.belong-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
    transition: transform 0.3s ease;
}

.belong-image {
  position: relative;
  overflow: hidden;
}

.belong-image img {
  width: 100%;
  height: auto;
  display: block;
}

.belong-card h5 {
  margin-bottom: 0.75rem;
}

.belong-card p {
  margin-bottom: 0;
}
.belong-card .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.belong-card .btn {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}
.belong-link {
    position: relative;
    display: block;
    /*overflow: hidden;*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belong-link:hover .belong-card {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.belong-link:hover .btn {
  filter: brightness(1.05);
  box-shadow: 0 0 10px rgba(55, 165, 186, 0.35); /* soft glow using Griner teal */
}

.belong-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(55, 165, 186, 0.3),   /* vibrant teal from logo */
    rgba(32, 75, 94, 0.3)      /* deep slate blue */
  );
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  border-radius: 20px;
}

.belong-link::after {
  pointer-events: none; /* So it doesn’t interfere with clicking buttons or links */
  /*mix-blend-mode: soft-light;*/ /* Optional: makes the gradient blend with image/text */
}


.belong-link:hover::after {
  opacity: 1;
    transform: translateY(-10px);
}
.belong-link:hover .belong-image img {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}


.mask1 {
  -webkit-mask-image: url("../img/mask1.webp");
  -webkit-mask-size:cover;
  mask-image: url("../img/mask1.webp");
    mask-size: cover;
}
.mask2 {
  -webkit-mask-image: url("../img/mask2.webp");
  -webkit-mask-size:cover;
  mask-image: url("../img/mask2.webp");
    mask-size: cover;
}
/*--------------------------------------</You Belong Here Section>---------------------------------------------*/

/* --------------------------------------<Vision Section>-------------------------------------- */
.vision-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.vision-card i {
	font-size: 5.0rem;
}

/* Smooth fade-in */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
  animation-delay: 0.6s;
}

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

.vision-card i {
  font-size: 5rem;
  color: #204B5E;
  display: inline-block; /* ✨ Enables transform to apply */
  transition: color 0.3s ease, transform 0.3s ease;
  transform-origin: center;
}

.vision-card:hover .icon-wrap i {
  color: #37A5BA;
  transform: scale(1.15);
}




/* --------------------------------------</Vision Section>-------------------------------------- */

/* ---------------------------------------------------<Team Section>--------------------------------------------------- */
.team-section {
  background-color: #dcf4f4;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(32, 75, 94, 0.2); /* Slate blue glow */
}

.team-member h5 {
  margin-top: 0.75rem;
}

.team-member p {
  margin-bottom: 0;
}
/* ---------------------------------------------------</Team Section>--------------------------------------------------- */


/* ---------------------------------------------------<Let Us Know Section>--------------------------------------------------- */

.visit-cta-section {
  background: #f9f9f9;
}

.visit-cta-section img {
  border-radius: 20px;
}
/* ---------------------------------------------------</Let Us Know Section>--------------------------------------------------- */

/* ---------------------------------------------------<Group Cards>--------------------------------------------------- */
.group-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.group-card:hover {
  transform: translateY(-5px);
}
.group-card img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
  height: 250px;
}
.group-card-single {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.group-card-single .card-img-top {
  max-height: 320px;
  object-fit: cover;
}
/* ---------------------------------------------------</Group Cards>--------------------------------------------------- */

/* ---------------------------------------------------<Give Page Cards>--------------------------------------------------- */
.card.rounded-4 {
  border-radius: 20px;
}
/* ---------------------------------------------------</Give Page Cards>--------------------------------------------------- */


/*--------------------------------------<Resources Section>---------------------------------------------*/
.resources-section {
  position: relative;
  z-index: 1;
}

.resources-section .container {
  position: relative;
  z-index: 2;
}
/*.resources-section .hex-wrapper {
  opacity: 1 !important;
}*/

/* Blue hex UNDER cards */
.floating-hex-container.under-cards {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Gold/Plum hexes ABOVE content */
.floating-hex-container.over-cards {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.feature-card {
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3)!important;
  border-radius: 20px!important;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-tile {
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3)!important;
  border-radius: 20px!important;
}

.resource-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card,
.resource-tile {
  position: relative;
  z-index: 2;
}


.resource-link {
  position: relative;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover .feature-card,
.resource-tile.resource-link:hover  {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.resource-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(55, 165, 186, 0.3),   /* vibrant teal */
    rgba(32, 75, 94, 0.3)      /* slate blue */
  );
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
  border-radius: 20px;
  pointer-events: none;
}


.resource-link:hover::after {
  opacity: 1;
  transform: translateY(-10px);
}
.resource-tile.resource-link:hover::after {
  opacity: 1;
  transform: translateY(0px);
}

/* Resource Icons */
.resource-icon {
  font-size: 5.5rem;
  color: #204B5E; /* teal brand color */
}
.resource-link:hover .resource-icon {
  text-shadow: 0 0 10px rgba(32, 75, 94, 0.3);
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.resource-link:hover .resource-icon {
  color: #37A5BA; /* switch to lighter teal on hover */
}


/*--------------------------------------</Resources Section>---------------------------------------------*/


/*--------------------------------------<Pastor Section>---------------------------------------------*/
.pastor-section {
	background-color: #dcf4f4;
}
.pastor-section img {
  max-width: 100%;
  height: auto;
  border-radius: 20px!important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------</Pastor Section>---------------------------------------------*/


/*--------------------------------------<FAQ Section>---------------------------------------------*/
.faq-section .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.faq-section .accordion-item:hover {
  transform: translateY(-3px);
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  background: #eaf6f9; /* soft teal-tinted background */
  border: none;
  transition: background-color 0.3s ease;
  color: #204B5E; /* slate blue from logo */
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #d3f0f5; /* stronger teal background */
  color: #37A5BA; /* primary teal brand color */
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-collapse {
  border-top: 1px solid #dee2e6;
}

.faq-section .accordion-body {
  padding: 1.25rem;
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
  color: #333;
}
/*--------------------------------------</FAQ Section>---------------------------------------------*/



/*--------------------------------------<Connect Section>---------------------------------------------*/
.connect-section {
  background-color: #f9f9f9;
}

.connect-section .contact-box {
  background: linear-gradient(135deg, #37A5BA, #204B5E); /* Griner teal to deep slate */
  color: #fff;
  border-radius: 20px!important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.connect-section .contact-box:hover {
  transform: translateY(-5px);
}

.connect-section .contact-box a {
  color: #fff;
  text-decoration: underline;
}

.connect-section .contact-box a.btn {
  background-color: #fff;
  color: #204B5E;
  border: none;
  font-weight: 600;
}

.connect-section .contact-box a.btn:hover {
  background-color: #f0f0f0;
  color: #204B5E;
}
/*--------------------------------------</Connect Section>---------------------------------------------*/


/*--------------------------------------<Footer>---------------------------------------------*/
.site-footer {
  background: linear-gradient(to right, #204B5E, #37A5BA); /* slate blue to vibrant teal */
  color: white;
  font-size: 0.95rem;
  padding: 40px 0;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.2);
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

footer .small a:hover {
  color: #aadfea; /* optional soft teal highlight */
}
/* Footer Link Hover - Deep Slate Blue */
.site-footer a:hover {
  color: #204B5E !important;
  text-decoration: underline;
}

/* Footer Social Icons - Circle Base */
.site-footer a i {
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.7rem!important;
}

/* Hover Effect */
.site-footer a:hover i {
  color: #204B5E !important;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(32, 75, 94, 0.3);
  transform: scale(1.15);
}



/*--------------------------------------</Footer>---------------------------------------------*/


/* --------------------------------------<Quick Access Buttons>-------------------------------------- */
.quick-resources {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.quick-btn {
  position: relative;
  background: white;
  border-radius: 150px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px 20px 10px 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.quick-btn i {
  font-size: 2rem;
}

.quick-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Default: labels shown */
.quick-btn::after {
  content: attr(data-label);
  margin-left: 8px;
  font-size: 0.9rem;
  color: #333;
  white-space: nowrap;
  opacity: 1;
  max-width: 200px;
  overflow: hidden;
  transition: opacity 1s ease, margin 1s ease, max-width 1s ease;
}

/* Hidden label state after timeout */
.quick-btn.hide-label::after {
  opacity: 0;
  margin-left: 0;
  max-width: 0;
  visibility: hidden;
  transition: opacity 1s ease, margin 1s ease, max-width 1s ease;
}

/* Always show on hover */
.quick-btn:hover::after {
  opacity: 1 !important;
  margin-left: 8px !important;
  max-width: 200px !important;
  visibility: visible !important;
  transition-delay: 0.2s;
}


/* --------------------------------------</Quick Access Buttons>-------------------------------------- */
