:root {
  --primary: #e53935; /* Deep rose */
  --accent: #1e88e5;  /* Soft pink */
  --bg-light: #fff0f5;
  --bg-dark: #fef6f9;
  --text-main: #222;
  --text-muted: #666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --transition: 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --fade-animation: fadeInUp 1s ease-in-out forwards;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  line-height: 1.6;
}

/* ========== Section Titles ========== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fade-in 0.8s ease-out forwards;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 0.6rem auto 0;
  animation: grow-line 1s ease-out forwards;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grow-line {
  from { width: 0; }
  to { width: 80px; }
}

/* ========== Bubbles (More Lively) ========== */
.bubbles-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 9;
}

.bubbles-container span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  animation: bubble-rise 10s ease-in-out infinite;
  opacity: 0.7;
  filter: blur(1px);
}

.bubbles-container span:nth-child(odd) {
  background: rgba(236, 72, 72, 0.114);
  animation-duration: 12s;
}

.bubbles-container span:nth-child(even) {
  background: rgba(236, 72, 72, 0.3);
  animation-duration: 9s;
}

@keyframes bubble-rise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-60%) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120%) scale(1.3);
    opacity: 0;
  }
}

.video-content {
  flex: 0 0 auto;
  width: 100%;
  max-width: 650px;
  padding: 0 15px;
  box-sizing: border-box;
}

.video-box {
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.video-box iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

/* ✅ For Large Desktop Screens */
@media (min-width: 1200px) {
  .video-content {
    max-width: 700px;
  }

  .video-box iframe {
    height: 380px;
  }
}

/* ✅ Mobile & Tablet Optimizations */
@media (max-width: 768px) {
  .video-content {
    padding: 0 10px;
  }

  .video-box {
    padding: 6px;
  }

  .video-box iframe {
    border-radius: 8px;
  }
}

/* ========== Slider ========== */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-container {
  display: flex;
  justify-content: center;
  padding: 0 15px;
  margin: 10px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-box {
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}.video-content {
  flex: 0 0 auto;
  width: 100%;
  max-width: 650px;
  padding: 0 15px;
  box-sizing: border-box;
}

.video-box {
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.video-box iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

/* ✅ For Large Desktop Screens */
@media (min-width: 1200px) {
  .video-content {
    max-width: 700px;
  }

  .video-box iframe {
    height: 380px;
  }
}

/* ✅ Mobile & Tablet Optimizations */
@media (max-width: 768px) {
  .video-content {
    padding: 0 10px;
  }

  .video-box {
    padding: 6px;
  }

  .video-box iframe {
    border-radius: 8px;
  }
}

/* ========== Slider ========== */
.slider-wrapper {
  width: 100%;
  position: relative;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  margin: 10px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-box {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Tablet devices (≤ 991px) */
@media (max-width: 991px) {
  .slider-box {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
}

/* Mobile devices (≤ 576px) */
@media (max-width: 576px) {
  .slider-box {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
}


/* ========== About Section ========== */
/* ✅ About Section Styling */
.about-section1 {
  padding: 60px 5%;
  background: #ffffff;
}

.about-section1 .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.about-section1 .section-title span {
  color: #e53935;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

/* ========== Stats ========== */
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 15px rgba(236, 72, 72, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat:hover .circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(236, 72, 72, 0.6);
}

.stat p {
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 150px;
  margin: 0 auto;
}

/* ========== Animations ========== */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Enhanced Menstrual Cycle Cards */
.menstrual-cycle .phase-card {
  background: #fff;
  border-radius: 1rem;
  border-top: 5px solid var(--primary);
  box-shadow: 0 4px 15px rgba(236, 72, 72, 0.1);
  padding: 25px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Gradient Hover Glow */
.menstrual-cycle .phase-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(236, 72, 72, 0.25);
}

/* Phase Icons */
.phase-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Card Titles */
.menstrual-cycle h5 {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.menstrual-cycle h5 small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.menstrual-cycle p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* === Benefits Section === */
.benefits-section {
  padding: 60px 20px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Benefit Card === */
.benefit {
  background: #fff;
  border-radius: 1rem;
  min-height: 280px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.18);
}

/* === Icon (White Icon, Primary Background) === */
.benefit i {
  font-size: 1.8rem;
  background: var(--primary); 
  color: #fff !important; 
  border-radius: 50%;
  padding: 14px;
  margin-bottom: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(236, 72, 72, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover i {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(236, 72, 72, 0.35);
}

/* === Title & Text === */
.benefit h6 {
  padding-top: 20px;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit p {
  padding-top: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* === Responsive === */
@media (max-width: 768px) {
  .benefits-section {
    padding: 40px 15px;
  }
  .benefit {
    min-height: auto;
  }
}

<style>
/* Container */
.testimonials-section-modern {
  padding: 50px 20px;
  background: #f9f9f9;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Marquee Track */
.testimonial-marquee {
  overflow: hidden;
}

.testimonial-row {
  display: flex;
}

.testimonial-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

/* Cards */
.testimonial-card {
  flex: 0 0 auto;
  width: 220px;
  height: 300px;
  margin: 0 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    width: 150px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 120px;
    height: 160px;
  }
}
</style>

/* Reuse testimonial card layout for gallery images */
.gallery-style-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
  min-width: 250px;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-style-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.gallery-style-card:hover img {
  transform: scale(1.05);
}

.gallery-hover-card {
  width: 250px;
  height: 200px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;


.gallery-hover-card:hover img {
  transform: scale(1.05);
}

/* Fullscreen image on hover */
.hover-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 80vw;
  max-height: 80vh;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 12px;
  pointer-events: none;
}

.hover-popup img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ==================== About Us Page Styling ==================== */

/* Hero Section */
.hero-section {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(233, 30, 30, 0.7), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.hero-section a {
  color: #fff;
  text-decoration: none;
}

.moving-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/moving-bg.png');
  animation: moveBg 60s linear infinite;
  z-index: 1;
  opacity: 0.08;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.container1 {
  position: relative;
  z-index: 3;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.hero-section p {
  font-size: 16px;
  color: #eee;
}

@keyframes moveBg {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 0; }
}

/* Section Box */
.why-us-section {
  padding: 80px 0;
  background: #fff0f0;
}

.why-us-box:hover {
  transform: translateY(-5px);
}

.why-us-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 20px;
}

.why-us-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* Team Cards */
.why-us-box .d-flex {
  gap: 20px;
}

.why-us-box h6 {
  font-weight: 600;
  color: #555;
}

.why-us-box img.rounded-circle {
  border: 3px solid #e53935;
}

/* ===== Why Us Accordion ===== */
.why-us-box {
  background: #ffd5d5;
  padding: 40px 30px;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.12);
  margin-bottom: 30px;
}

.why-us-box h4 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Accordion Buttons */
.why-us-accordion .accordion-button {
  background: #fff;
  color: #e53935;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(236, 72, 153, 0.08);
  transition: all 0.3s ease;
}

.why-us-accordion .accordion-button::after {
  filter: hue-rotate(300deg) saturate(2);
}

.why-us-accordion .accordion-button:not(.collapsed) {
  background: #ffeaea;
  color: #e53935;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
}

/* Accordion Body */
.why-us-accordion .accordion-body {
  background: #fff;
  border-left: 4px solid #e53935;
  padding: 15px 20px;
  border-radius: 0.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-us-accordion ul {
  padding-left: 20px;
}

.why-us-accordion ul li {
  list-style: disc;
  margin-bottom: 6px;
}

/* Accordion */
.accordion-button {
  background: #fff;
  font-weight: 600;
  color: #e53935;
}

.accordion-button:not(.collapsed) {
  background: #fce4ec;
  color: #9b1f1d;
}

.accordion-body {
  font-size: 15px;
  color: #444;
  background: #fff;
}

/* Container */
.services-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Lift effect on hover */
.services-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Heading */
.services-box h2 {
  font-size: 1.6rem;
  color: #ff0066;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

/* Underline animation under heading */
.services-box h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ff0066;
  margin: 8px auto 0;
  border-radius: 3px;
}

/* List styles */
.services-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.services-box ul li {
  padding: 12px 15px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Hover effect on list items */
.services-box ul li:hover {
  background: #ffe6f0;
  transform: translateX(5px);
}

/* Arrow icon using CSS (Font Awesome not required) */
.services-box ul li::before {
  content: "\f105"; /* Font Awesome right arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff0066;
  margin-right: 10px;
  font-size: 1rem;
}

/* Link styles */
.services-box ul li a {
  color: #333;
  text-decoration: none;
  flex: 1;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.services-box ul li:hover a {
  color: #ff0066;
}

/* Side Services Box */
.benefits-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.benefits-box img {
  max-width: 100%;
  margin-bottom: 20px;
}

.services-box h2 {
  font-size: 22px;
  color: #e53935;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-box ul {
  list-style: none;
  padding-left: 0;
}

.services-box ul li a {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-box ul li a:hover {
  color: #e53935;
}

/* Vision/Mission Cards */
.vision-mission-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-card, .mission-card {
  background: #fff;
  padding: 25px;
  border-left: 6px solid #e53935;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.vision-card h3, .mission-card h3 {
  color: #e53935;
  font-weight: 700;
  margin-bottom: 15px;
}

.vision-card p, .mission-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }
  .why-us-box .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vision-mission-container {
    gap: 30px;
  }
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef6f9;
}

.banner a{
  color: #fff;
  text-decoration: none;
}

.banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-content {
  z-index: 2;
  text-align: center;
  color: #fff;
}
.banner-content h2 {
  font-size: 3rem;
  font-weight: 700;
}
.banner-content span {
  color: #f8bbd0;
}
.banner-content p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e53935;
}

/* Association Section */
.associations-section {
  background: #fff0f0;
}
.associations-section p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Tabs */
.nav-tabs {
  border-bottom: none;
  justify-content: center;
}
.nav-tabs .nav-link {
  background: #fff0f0;
  color: #e53935;
  margin: 5px;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s ease;
}
.nav-tabs .nav-link.active {
  background: #e53935;
  color: #fff;
}
/* Tabs Container */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px auto;
  background: #ffe6e6;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.4);
  max-width: fit-content;
}

/* Individual Tabs */
.tab {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  background: #fff;
  color: #e53935;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.tab:hover {
  background: #ffd6d6;
  color: #9a2321;
}

.tab.active {
  background: #e53935;
  color: white;
  box-shadow: 0 4px 10px rgba(255, 77, 77, 0.4);
}

/* Partner Container */
.partner-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

/* Partner Cards */
.partner-card {
  width: 160px;
  height: 160px;
  border: 2px solid #ffe6e6;
  border-radius: 16px;
  padding: 15px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 182, 193, 0.2);
}

.partner-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 18px rgba(255, 182, 193, 0.4);
  border-color: #e53935;
}

.partner-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.1);
}

/* === CTA Section === */
.cta-section {
  background: #fff0f0;
  color: #e53935;
  padding: 60px 20px;
  border-radius: 2rem 2rem 0 0;
  text-align: center;
}

.cta-section h2.cta-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Paragraph */
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

/* CTA Button */
.godson-cta-btn {
  background-color: #e53935;
  color: white;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.godson-cta-btn:hover {
  background-color: #d32f2f;
}

/* === Typewriter Text Animation === */
.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #e53935;
  width: 0;
  animation: typing 3s steps(30, end) forwards, blink 0.8s step-end infinite;
}

/* === Shimmer Effect === */
.shimmer {
  background: linear-gradient(to right, #e53935 20%, #f47e7c 40%, #e53935 60%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 2.5s linear infinite;
  animation-delay: 3s;
}

/* === Keyframes === */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #e53935; }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* === Responsive Typography === */
@media (max-width: 768px) {
  .cta-section h2.cta-heading {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .godson-cta-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .cta-section h2.cta-heading {
    font-size: 1.6rem;
  }

  .typewriter-text {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .godson-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

.godson-cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #e53935;
  color: #fff;
  border-radius: 40px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(214, 51, 51, 0.3);
  border: none;
  animation: pulse 2.5s infinite;
}

.godson-cta-btn:hover {
  background: #9f1b19;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 24px #a416149a(180, 43, 108, 0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 51, 51, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(214, 51, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 51, 132, 0); }
}

/* Fade In Animation */
.fade-in {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}