/* Mobile Accordion Styles for Pillars Section */
@media (max-width: 767px) {
    #pillarsAccordion .accordion-button {
        background: linear-gradient(90deg, #001027, #004D99); /* dark to medium blue gradient */
        color: #ffffff;
        font-weight: 600;
        border-radius: 10px;
        margin-bottom: 10px;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background 0.3s, color 0.3s;
    }

    #pillarsAccordion .accordion-button:focus {
        box-shadow: none;
    }

    #pillarsAccordion .accordion-button:not(.collapsed) {
        background: linear-gradient(90deg, #20B2AA, #008080); /* teal gradient when expanded */
        color: #ffffff;
    }

    #pillarsAccordion .accordion-button i {
        color: #4CAF50; /* green accent for vitality */
        font-size: 1.2rem;
    }

    #pillarsAccordion .accordion-body {
        background: #f0f8ff; /* light blue/white background */
        color: #001027;
        border-radius: 0 0 10px 10px;
        padding: 1rem 1.5rem;
        margin-bottom: 15px;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    }

    #pillarsAccordion .accordion-body ul {
        padding-left: 1.2rem;
        margin: 0;
    }

    #pillarsAccordion .accordion-body li {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }

    #pillarsAccordion .accordion-body li::before {
        content: "✔"; /* checkmark bullet */
        color: #4CAF50; /* green accent */
        position: absolute;
        left: 0;
        font-weight: bold;
    }
}


.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0fdfa 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}



.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: #0d9488;
    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%;
    left: 80%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ccfbf1;
    color: #0f766e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #0d9488, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: #0d9488;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #0d9488;
    background: #f0fdfa;
    color: #0d9488;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0d9488;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pulse-indicator {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    background: #ccfbf1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.pulse-indicator i {
    color: #0d9488;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 148, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
    }
}

.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.metric:nth-child(1) .metric-icon {
    background: #dcfce7;
    color: #16a34a;
}

.metric:nth-child(2) .metric-icon {
    background: #dbeafe;
    color: #2563eb;
}

.metric:nth-child(3) .metric-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.metric-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.metric-value {
    color: #64748b;
    font-size: 0.875rem;
}

/* Heartbeat to Wave Animation */
.heartbeat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave-svg {
    width: 100%;
    height: 100%;
}

.heartbeat-path {
    fill: none;
    stroke: #0d9488;
    stroke-width: 3;
    opacity: 0.8;
    animation: heartbeat-to-wave 4s ease-in-out infinite;
}

.wave-path {
    fill: none;
    stroke: #0d9488;
    stroke-width: 2;
    opacity: 0;
    animation: wave-flow 4s ease-in-out infinite;
}

@keyframes heartbeat-to-wave {
    0% {
        opacity: 0.8;
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    50% {
        opacity: 0.4;
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: 0;
        stroke-dasharray: 1000;
        stroke-dashoffset: -1000;
    }
}

@keyframes wave-flow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.8;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Overview Section */
.overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.overview-card {
    background: linear-gradient(135deg, #f0fdfa, #dbeafe);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #ccfbf1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #0d9488;
}

.overview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.overview-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Pillars Section */
.pillars {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
}

.pillars-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.pillars-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-nav-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.pillar-nav-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pillar-nav-item.active {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: #0d9488;
}

.pillar-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
}

.pillar-nav-item.active .pillar-icon {
    background: #ccfbf1;
    color: #0d9488;
}

.pillar-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pillar-info p {
    color: #64748b;
    font-size: 0.875rem;
}

.pillar-details {
    position: sticky;
    top: 120px;
}

.pillar-detail {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: none;
}

.pillar-detail.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-icon {
    width: 64px;
    height: 64px;
    background: #ccfbf1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d9488;
}

.detail-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.detail-header p {
    color: #0d9488;
    font-weight: 600;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    color: #16a34a;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item span {
    color: #475569;
    line-height: 1.5;
}


/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ccfbf1, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: #0d9488;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: #3b82f6;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Formats Section */
.formats {
    padding: 100px 0;
    background: linear-gradient(135deg, #dbeafe, #f0fdfa);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.format-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.format-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.format-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.format-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ccfbf1, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d9488;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.format-card:hover .format-icon {
    transform: scale(1.1);
    color: #3b82f6;
}

.format-content {
    flex: 1;
}

.format-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.format-content p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.format-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d9488;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.format-link:hover {
    color: #0f766e;
    transform: translateX(4px);
}


/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #14b8a6;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #14b8a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    color: #94a3b8;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 32px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
    }
    
    .pillars-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pillar-details {
        position: static;
    }
    
   
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .format-card {
        flex-direction: column;
        text-align: center;
    }
}


.balloon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



