/* Unique namespace for Prim Roses Academy styles */
.prim-roses-academy-wrapper {
  --pra-primary-color: #fdc800;
  --pra-primary-dark: #e6b500;
  --pra-primary-light: #fff4b8;
  --pra-text-dark: #2c3e50;
  --pra-text-light: #6c757d;
  --pra-white: #ffffff;
  --pra-light-bg: #f8f9fa;
  --pra-shadow: 0 10px 40px rgba(253, 200, 0, 0.15);
  --pra-font-family: "Rubik", sans-serif;
}

.prim-roses-academy-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.prim-roses-academy-wrapper {
  font-family: var(--pra-font-family);
  line-height: 1.6;
  color: var(--pra-text-dark);
  background-color: var(--pra-white);
  width: 100%;
  overflow-x: hidden;
}

.pra-hero-section-main {
  background: linear-gradient(
    135deg,
    var(--pra-primary-color) 0%,
    var(--pra-primary-dark) 100%
  );
  background: linear-gradient(
    135deg,
    var(--pra-primary-color) 0%,
    var(--pra-primary-dark) 100%
  );
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.pra-hero-section-main::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"><circle cx="200" cy="200" r="100" fill="white" opacity="0.05"/><circle cx="800" cy="300" r="150" fill="white" opacity="0.03"/><circle cx="400" cy="600" r="80" fill="white" opacity="0.08"/></svg>');
  z-index: 1;
}

.pra-hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pra-hero-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pra-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pra-hero-subtitle-text {
  font-size: 1.3rem;
  color: var(--pra-white);
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pra-hero-subtitle-text strong {
  font-weight: 600;
}

.pra-cta-buttons-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pra-btn-primary-enroll {
  background: var(--pra-white);
  color: var(--pra-primary-color);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: var(--pra-font-family);
}

.pra-btn-primary-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  background: var(--pra-primary-light);
  color: var(--pra-primary-dark);
}

.pra-btn-secondary-trial {
  background: transparent;
  color: var(--pra-white);
  border: 2px solid var(--pra-white);
  padding: 13px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: var(--pra-font-family);
}

.pra-btn-secondary-trial:hover {
  background: var(--pra-white);
  color: var(--pra-primary-color);
  transform: translateY(-2px);
}

.pra-btn-icon-spacing {
  margin-right: 0.5rem;
}

.pra-content-section-main {
  padding: 60px 20px;
  background: var(--pra-light-bg);
  width: 100%;
}

.pra-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pra-section-title-main {
  font-size: 48px;
  font-weight: 700;
  color: var(--pra-text-dark);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.pra-section-title-main::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--pra-primary-color);
  border-radius: 2px;
}

.pra-courses-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pra-course-card-wrapper {
  background: var(--pra-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--pra-shadow);
  /* transition: all 0.3s ease; */
  border: 1px solid rgba(253, 200, 0, 0.1);
}

.pra-course-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(253, 200, 0, 0.2);
}

.pra-course-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--pra-primary-color),
    var(--pra-primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--pra-white);
  font-size: 1.5rem;
}

.pra-course-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--pra-text-dark);
  margin-bottom: 1rem;
}

.pra-course-items-list {
  list-style: none;
  padding: 0;
}

.pra-course-list-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.pra-course-list-item:last-child {
  border-bottom: none;
}

.pra-course-list-item::before {
  content: "✓";
  color: var(--pra-primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.pra-info-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pra-info-card-wrapper {
  background: var(--pra-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--pra-shadow);
  transition: all 0.3s ease;
}

.pra-info-card-wrapper:hover {
  transform: translateY(-3px);
}

.pra-info-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--pra-text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pra-info-title-icon {
  color: var(--pra-primary-color);
  margin-right: 0.5rem;
}

.pra-age-groups-container {
  margin-bottom: 1.5rem;
}

.pra-skill-levels-container {
  margin-top: 1.5rem;
}

.pra-badge-custom-style {
  background: var(--pra-primary-color);
  color: var(--pra-text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.25rem;
  display: inline-block;
}

.pra-skill-levels-title {
  color: var(--pra-text-dark);
  margin-bottom: 0.5rem;
  font-size: 22px;
  font-weight: 600;
}

.pra-pricing-highlight-box {
  background: linear-gradient(
    135deg,
    var(--pra-primary-light),
    var(--pra-primary-color)
  );
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

.pra-pricing-text-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pra-text-dark);
  margin-bottom: 0.5rem;
}

.pra-pricing-text-item:last-child {
  margin-bottom: 0;
}

.pra-pricing-icon {
  margin-right: 0.5rem;
}

.pra-worksheets-section {
  margin-top: 3rem;
}

.pra-coming-soon-container {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--pra-primary-light),
    var(--pra-white)
  );
  border-radius: 15px;
  border: 2px dashed var(--pra-primary-color);
}

.pra-coming-soon-icon {
  font-size: 3rem;
  color: var(--pra-primary-color);
  margin-bottom: 1rem;
}

.pra-coming-soon-title {
  color: var(--pra-primary-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.pra-coming-soon-text {
  color: var(--pra-text-light);
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pra-hero-main-title {
    font-size: 2.5rem;
  }

  .pra-hero-subtitle-text {
    font-size: 1.1rem;
  }

  .pra-cta-buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .pra-btn-primary-enroll,
  .pra-btn-secondary-trial {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .pra-courses-grid-container {
    grid-template-columns: 1fr;
  }

  .pra-info-grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pra-hero-section-main {
    padding: 60px 15px;
  }

  .pra-content-section-main {
    padding: 60px 15px;
  }

  .pra-course-card-wrapper,
  .pra-info-card-wrapper {
    padding: 1.5rem;
  }

  .pra-section-title-main {
    font-size: 2rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  /* background: linear-gradient(135deg, #2c3e50, #34495e); */
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::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 300"><path d="M0,150 Q250,50 500,150 T1000,150 V300 H0 Z" fill="rgba(253,200,0,0.1)"/></svg>');
  background-size: cover;
}

.header-content {
  position: relative;
  z-index: 2;
}

.header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.accent-text {
  color: #fdc800;
  font-weight: 600;
}

/* Main Content */
.main-content {
  padding: 35px 0;
}

/* .section {
  margin-bottom: 40px;
} */

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fdc800, #f39c12);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Legacy Story */
.legacy-story {
  background: white;
  padding: 25px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.legacy-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #fdc800, #f39c12);
}

.timeline {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  /* background: linear-gradient(270deg, #fdc800, #fff4b8); */
  background: #fdc800;
  border-radius: 15px;
  color: white;
  box-shadow: 0 5px 15px rgba(253, 200, 0, 0.3);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-icon {
  font-size: 2rem;
  opacity: 0.9;
}

.timeline-content h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 1rem;
  opacity: 0.9;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.story-text strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Mission Vision Cards */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #fdc800, #f39c12);
  /* background: #FDC800; */
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #fdc800, #f39c12); */
  background: #fdc800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 5px 15px rgba(253, 200, 0, 0.3);
}

.card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

/* Curriculum Section */
.curriculum {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 40px 0;
  margin: 60px 0 20px 0px;
  border-radius: 30px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.curriculum-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 5px solid #fdc800;
}

.curriculum-item:hover {
  transform: translateY(-5px);
}

.curriculum-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg, #fdc800, #f39c12); */
  background: #fdc800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
}

.curriculum-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.curriculum-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin: 80px 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.stats::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 200"><circle cx="100" cy="100" r="3" fill="rgba(253,200,0,0.3)"/><circle cx="300" cy="50" r="2" fill="rgba(253,200,0,0.4)"/><circle cx="500" cy="150" r="4" fill="rgba(253,200,0,0.2)"/><circle cx="700" cy="80" r="3" fill="rgba(253,200,0,0.3)"/><circle cx="900" cy="120" r="2" fill="rgba(253,200,0,0.4)"/></svg>');
  background-repeat: repeat;
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #fdc800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fdc800;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #fdc800, #f39c12);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 30px;
  margin-top: 80px;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #fdc800;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .header p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .timeline {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline-item {
    justify-content: center;
    text-align: center;
  }

  .legacy-story {
    padding: 40px 20px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header {
    padding: 60px 0;
  }

  .header h1 {
    font-size: 2rem;
  }

  .main-content {
    padding: 60px 0;
  }

  .section {
    /* margin-bottom: 60px; */
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------- */
/* Animated background elements */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 20%;
  animation-delay: 10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation-delay: 15s;
}

.shape-5 {
  width: 250px;
  height: 250px;
  bottom: -125px;
  right: -125px;
  animation-delay: 7s;
}

.shape-6 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 30%;
  animation-delay: 12s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

/* Geometric pattern overlay */
.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 2;
}

/* Content container */
.content-container {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px 20px 40px 20px;
  /* background: #fdc800; */
  margin-top: -100px;
}

.content-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 60px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fdc800, #f4b942, #fdc800);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.subtitle {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
}

.action-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  background: #fdc800;
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(253, 200, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  background: #e6b500;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(253, 200, 0, 0.4);
}

.action-btn:active {
  transform: translateY(-2px);
}

.action-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.action-btn:hover svg {
  transform: scale(1.1);
}

/* Secondary button style */
.action-btn.secondary {
  background: transparent;
  color: #fdc800;
  border: 2px solid #fdc800;
  box-shadow: 0 8px 25px rgba(253, 200, 0, 0.15);
}

.action-btn.secondary:hover {
  background: #fdc800;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(253, 200, 0, 0.4);
}

/* Floating particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 15s infinite linear;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .content-box {
    padding: 60px 30px;
    margin: 20px 0px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .content-box {
    padding: 40px 20px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}

.team-area {
  background: #f8f9fa;
  padding: 10px 0;
}

.section-title .title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.team-description {
  max-width: 800px;
  margin: 0 auto;
}

.team-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}

.team-description strong {
  color: #007bff;
  font-weight: 600;
}

.pd-top-110 {
  padding-top: 110px;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

@media (max-width: 991px) {
  .section-title .title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .team-description p {
    font-size: 16px;
  }

  .team-area {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .section-title .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .team-description p {
    font-size: 15px;
    line-height: 1.6;
  }

  .team-area {
    padding: 60px 0;
  }
}

.pra-worksheets-section {
  margin-top: 3rem;
}

.pra-coming-soon-container {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff4b8, #fff);
  border-radius: 15px;
  border: 2px dashed #fdc800;
}

.pra-coming-soon-icon {
  font-size: 3rem;
  color: #fdc800;
  margin-bottom: 1rem;
}

.pra-coming-soon-title {
  color: #e6b500;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.pra-coming-soon-text {
  color: #6c757d;
  font-size: 1.1rem;
}

.faq-button-prim button {
  background-color: #fdc800;
  font-size: 18px;
}

.mb-27 {
  margin-bottom: 27px;
}

.footer-logo-img-prim img {
  max-height: 102px;
}

@media (max-width: 768px) {
  .footer-logo-img-prim img {
    max-height: 93px;
    padding-bottom: 4px;
    
  }
}

.bg-blue-prim::after {
  background-color: rgba(0, 33, 71, 1);
}

/* @media (max-width: 400px) {
  padding-bottom: 7px;
} */


