









/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 50%, var(--primary-green) 100%);
    overflow: hidden;
}



/* Wave Background */
.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0; /* remove circle shape */
    animation: wave-motion 15s linear infinite;
    transform: rotate(0deg);
}

/* Adjust individual waves */
.wave-1 {
    top: 0;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: 0;
    left: -50%;
    animation-delay: 5s;
    background: rgba(255, 255, 255, 0.05);
}

.wave-3 {
    top: 0;
    left: -50%;
    animation-delay: 10s;
    background: rgba(255, 255, 255, 0.1);
}

/* Example wave animation */
/* @keyframes wave-motion {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(-25%) translateY(10px) rotate(0deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
} */


/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-gentle 15s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 6s;
}

.particle-4 {
    top: 30%;
    left: 60%;
    animation-delay: 9s;
}

.particle-5 {
    top: 70%;
    right: 30%;
    animation-delay: 12s;
}

.particle-6 {
    top: 15%;
    right: 40%;
    animation-delay: 15s;
}


.particle-7 {
    top: 85%;
    left: 60%;
    right: 80%;
    animation-delay: 55s;
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Breathing Effect */
.breathing-effect {
    animation: breathe 4s ease-in-out infinite;
}

/* Wellness Icons */
.wellness-icons {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons {
    font-size: 3rem;
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 1.5rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    animation: icon-float 6s ease-in-out infinite;
}

.balance-icon {
    animation-delay: 0s;
}

.lotus-icon {
    animation-delay: 2s;
}

.heartbeat-icon {
    animation-delay: 4s;
}







/* Impact Section */



.impact-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.metric-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
    padding: 1rem;
    border-radius: 50%;
    color: var(--white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-item span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Call to Action */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-teal) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    background: var(--white);
    color: var(--primary-teal);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.banner-style-eight-infos{
    padding-top:50px;
}


/* Animations */
@keyframes wave-motion {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    33% {
        transform: translateX(-30px) translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateX(20px) translateY(-30px) rotate(240deg);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.slide-in-gentle {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInGentle 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInGentle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .wellness-icons {
        gap: 2rem;
    }
    
    .icon {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .impact-metrics {
        gap: 2rem;
    }
    
    .philosophy-content h3,
    .programs-content h3,
    .impact-content h3,
    .cta-content h3 {
        font-size: 2rem;
    }
}






.special-modules {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 70%;
  height: 150px;
  object-fit: cover;
}

.card .container {
  padding: 15px;
  text-align: center;
}

.card h4 {
  margin: 0 0 8px;
  color: #001027; /* theme color */
}

.card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

 .module-card {
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.05); /* subtle transparent bg */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .module-card h4,p{
    color: white;
  }











  .module-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.module-icon {
  font-size: 45px;
  color: #007BFF;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.module-card:hover .module-icon {
  color: #0056b3;
}

.module-card h4 {
  margin-bottom: 12px;
  color: #001027;
}

.module-card p {
  color: #555;
  font-size: 15px;
}
