* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #8d8e8f;
    color: #3a0ca3;
}


header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 100px;
    width: auto;
    margin-right: 10px;
    margin-left: 50%;
}
.hero-header-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--dark-red);
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: brightness(0.9) contrast(1.1);
}

.content-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--pure-white);
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4));
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 15px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
    margin-left: 45%;
    font-size: larger;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    nav ul {
        gap: 3px;
    }

    nav ul li a {
        font-size: 0.8rem;
        padding: 4px 6px;
    }

    .welcome-section h1 {
        font-size: 1.5rem;
    }

    .welcome-section h2 {
        font-size: 1rem;
    }

    .welcome-section p {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 40px;
    }

    p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    section h2 {
        font-size: 1.2rem;
    }

    section {
        padding: 20px 0;
    }
}
@media screen and (max-width: 480px) {
    nav ul {
        gap: 2px;
        margin-left: auto;
    }

    nav ul li a {
        font-size: 0.6rem;
        padding: 4px 6px;
    }

    .welcome-section h1 {
        font-size: 0.5rem;
    }

    .welcome-section h2 {
        font-size: 0.2rem;
    }

    .welcome-section p {
        font-size: 0.8rem;
    }
    .button-group{
        gap: 15px;
    }
    .btn {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .logo img {
        height: 40px;
    }

    p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    section h2 {
        font-size: 1.2rem;
    }

    section {
        padding: 20px 0;
    }
    .hero-header-wrapper {
        height: 50vh;
    }
}

.welcome-section {
    text-align: center;
    padding: 10px;
    background-size: cover;
    background-position: center;
    color: white;
}

.welcome-section h1 {
    font-size: 3.1rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.welcome-section h2 {
    font-size: 1.6rem;
    padding-top: 15px;
    margin-bottom: 20px;
    color: #f72585;
}

.button-group {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    gap: 25px;
}

.btn {
    background-color: #b5179e;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #7209b7;
}


.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f0f4f8;
}

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #7209b7;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    color: #3a0ca3;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.about-content .btn-join {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 30px;
    background-color: #f72585;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.about-content .btn-join:hover {
    background-color: #b5179e;
}

.how-it-works-section {
    padding: 50px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    color: #3f37c9;
    margin-bottom: 30px;
}

.methods-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.method {
    flex: 1 1 calc(33.333% - 20px); /* Adjust for 3 items per row */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.method i {
    font-size: 2rem;
    color: #f72585;
    margin-bottom: 10px;
}

.method h3 {
    font-size: 1.5rem;
    color: #7209b7;
    margin-bottom: 15px;
}

.method p {
    color: #3a0ca3;
    margin-bottom: 10px;
}

.method ul {
    list-style: none;
    padding-left: 0;
}

.method ul li {
    color: #4361ee;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .method {
        flex: 1 1 100%; /* Stack items on smaller screens */
    }
}

.audio-stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background-color: #f0f4f8;
}

.stats-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box {
    background-color: #4cc9f0;
    color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
}

.stat-box h3 {
    font-size: 1.2rem;
    color: #3a0ca3;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.5rem;
    font-weight: bold;
}

.audio-container {
    text-align: center;
}

.audio-container h2 {
    font-size: 1.5rem;
    color: #7209b7;
    margin-bottom: 20px;
}

audio {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .audio-stats-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-box {
        width: 100%;
        margin-bottom: 10px;
    }
}

.testimonials-section {
    padding: 50px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #3f37c9;
    margin-bottom: 30px;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    font-size: 1.2rem;
    color: #3a0ca3;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeEffect 1s ease-in-out;
    transition: transform 0.5s ease;
}


.testimonial-slide.active {
    display: block;
}

.testimonial-slide h4 {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #7209b7;
}

.testimonial-controls {
    margin-top: 20px;
}

.testimonial-controls span {
    cursor: pointer;
    padding: 10px 20px;
    background: #4cc9f0;
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s ease;
}

@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

.testimonial-controls span:hover {
    color: #f72585;
    background: #3a0ca3;
}

@media (max-width: 768px) {
    .testimonial-slide {
        font-size: 1rem;
    }
}

#faq, #why-choose-us {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

#faq h2, #why-choose-us h2 {
    font-size: 2.5rem;
    color: #3a0ca3;
}

.faq-container, .choose-us-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-item, .choose-us-item {
    background-color: white;
    margin: 15px;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.faq-item i, .choose-us-item i {
    color: #4cc9f0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-item h3, .choose-us-item p {
    font-size: 1.2rem;
    color: #3a0ca3;
}

.faq-item p, .choose-us-item p {
    font-size: 1rem;
    color: #560bad;
}

footer {
    background-color: #3a0ca3;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .footer-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .footer-services ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-services ul li {
    margin: 10px;
    font-size: 14px;
    color: #4cc9f0;
  }
  
  .social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #4cc9f0;
  }
  
  .footer-bottom {
    margin-top: 30px;
    font-size: 14px;
  }
  
  .footer-bottom span {
    color: #4cc9f0;
  }
  .audio-stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    color: #333;
    margin-bottom: 1rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2196F3;
}

.audio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.audio-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audio-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.audio-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

audio {
    width: 100%;
}
.certification-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
}

.certification-section h3 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

.certificate-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.certificate-container:hover {
    transform: scale(1.02);
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.certificate-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.certificate-container:hover .certificate-overlay {
    opacity: 1;
}
@media screen and (max-width: 768px) {
    /* Center text content */
    .welcome-section,
    .about-section,
    .how-it-works-section,
    .testimonials-section,
    .audio-stats-section,
    #faq,
    #why-choose-us {
        text-align: center;
    }

    /* Center flex items */
    .about-section,
    .methods-container,
    .stats-container,
    .audio-grid,
    .faq-container,
    .choose-us-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Center images */
    .about-image,
    .logo img {
        margin: 0 auto;
        display: block;
    }

   

    /* Adjust spacing */
    .about-content {
        padding: 20px;
        text-align: center;
    }
}

.blog-card {
    /* ... existing styles ... */
    position: relative;
}

.register-btn {
    display: flex;
    background-color: #f72585;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.register-btn:hover {
    background-color: #b5179e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}
.blog-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    color: #3f37c9;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease-out;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.4rem;
    color: #7209b7;
    margin-bottom: 1rem;
    font-weight: bold;
}

.blog-text {
    color: #3a0ca3;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-bottom: 1rem;
}

.blog-tag {
    background: #4cc9f0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.register-btn {
    display: inline-block;
    background-color: #f72585;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.register-btn:hover {
    background-color: #b5179e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        margin: 1rem 0;
    }
}
