* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f8f9fc;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}
header nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

header nav a:hover {
    color: #6a11cb;
}
.site-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-primary {
    background: white;
    color: #6a11cb;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #f0f0f0;
}

/* Sections */
.section {
    padding: 70px 0;
    text-align: center;
}

.section-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #6a11cb;
}

/* Webinar */
.webinar-section {
    background: #ffffff;
}

.webinar-container {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.webinar-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.webinar-content ul {
    list-style: none;
    margin: 15px 0;
}

.webinar-content ul li {
    margin-bottom: 10px;
}

.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    background: #6a11cb;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #2575fc;
}

/* Contact */
.contact-section {
    background: #f0f2f8;
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .webinar-container {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 28px;
    }
}

/* TRAINERS SECTION */
.trainers-section {
    background: #f8f9fc;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trainer-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-8px);
}

.trainer-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #6a11cb;
}

.trainer-card h3 {
    margin-bottom: 8px;
    color: #6a11cb;
    font-size: 20px;
}

.trainer-card p {
    font-size: 14px;
    color: #555;
}

/* ===== SPIRITUAL LUXURY HERO ===== */

.luxury-hero {
    background: linear-gradient(135deg, #083c46, #0f5e63);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .luxury-hero {
        padding: 50px 15px;
    }

    .luxury-title {
        font-size: 28px;
    }
}

.luxury-title {
    font-size: 40px;
    color: #f6e27a;
    letter-spacing: 1px;
}

.luxury-subtitle {
    font-size: 18px;
    margin: 15px 0 30px;
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f6e27a);
    color: #000;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: scale(1.05);
}



/* NEXT BATCH BOX */

.next-batch-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,215,0,0.5);
    padding: 20px;
    margin: 30px auto;
    border-radius: 15px;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.next-batch-box h3 {
    color: #f6e27a;
    margin-bottom: 10px;
}

/* SOCIAL ICONS */

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #f6e27a;
    font-weight: 500;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
}

/* ===== MISSION NIRAMAYA ===== */

.mission-niramaya {
    background: #fdfaf3;
    padding: 80px 0;
}

.mission-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mission-content h2 {
    color: #0f5e63;
    font-size: 32px;
}

.mission-tagline {
    color: #b8860b;
    font-weight: 600;
    margin: 15px 0;
}

.mission-content ul {
    margin: 20px 0;
}

.mission-content ul li {
    margin-bottom: 8px;
}

/* MOBILE RESPONSIVE */

@media(max-width: 768px) {

    .luxury-title {
        font-size: 28px;
    }

    .mission-container {
        flex-direction: column;
        text-align: center;
    }

}
/* Mission Button Spacing */
.mission-btn {
    display: inline-block;
    margin-top: 15px;
}

/* ===== LUXURY FOOTER ===== */

.luxury-footer {
    background: linear-gradient(135deg, #062f35, #083c46);
    color: #fff;
    padding: 25px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
}

.footer-right a {
    margin-left: 20px;
    text-decoration: none;
    color: #f6e27a;
    font-weight: 500;
    transition: 0.3s;
}

.footer-right a:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-right a {
        margin: 0 10px;
    }
}

/* ===== HEALING INDUSTRY SECTION ===== */

.industry-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.industry-box {
    flex: 1;
    min-width: 280px;
    background: #083c46;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.industry-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ===== BENEFITS SECTION ===== */

/* ===== ANCIENT TEMPLE STYLE ===== */

/* ===== SACRED PATH – LUXURY STYLE ===== */

.healer-benefits-ancient {
    background: linear-gradient(135deg, #062f35, #083c46);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.healer-benefits-ancient::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.healer-benefits-ancient::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent);
    bottom: -120px;
    right: -120px;
    z-index: 0;
}

.healer-benefits-ancient .section-title {
    color: #f6e27a;
    position: relative;
    z-index: 1;
}

/* Inner Card */

.ancient-box {
    max-width: 850px;
    margin: 40px auto 0;
    padding: 50px 40px;
    background: linear-gradient(145deg, #0f5e63, #083c46);
    border-radius: 25px;
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

/* Benefits List */

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    font-size: 20px;
    margin: 22px 0;
    color: #ffffff;
    position: relative;
    padding-left: 35px;
    transition: 0.3s;
}

/* Gold glowing bullet */

.benefit-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #f6e27a;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(212,175,55,0.8);
}

/* Hover effect */

.benefit-list li:hover {
    transform: translateX(8px);
    color: #f6e27a;
}


/* ===== YOUTUBE SECTION ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-grid iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
}

/* ===== CAREER GROWTH SECTION ===== */

.career-growth-section {
    background:  #f4efe6; 
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.career-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: Black;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.career-card {
    background: linear-gradient(145deg, #0f5e63, #083c46);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.4);
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.career-card h3 {
    color: #f6e27a;
    margin-bottom: 15px;
    font-size: 20px;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.35);
}

.career-opportunity-box {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #d4af37;
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.career-opportunity-box h3 {
    color: #f6e27a;
    margin-bottom: 25px;
}

.career-opportunity-box ul {
    list-style: none;
    padding: 0;
}

.career-opportunity-box li {
    margin: 12px 0;
    font-size: 17px;
}

/* ===== CERTIFICATION SECTION ===== */

.certification-section {
    background: #f8f9fb;   /* Soft light professional background */
    padding: 80px 20px;
    color: #1e2a44;
}
.certification-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

.cert-left {
    flex: 1;
    text-align: center;
}

.cert-logo {
    max-width: 300px;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
}

.cert-right {
    flex: 1.5;
}

.cert-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color:  #0f5e63;
}

.cert-highlight {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
   color: #083c46;
}

.cert-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.cert-points li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Mobile */

@media (max-width: 768px) {

    .certification-container {
        flex-direction: column;
        text-align: center;
    }

    .cert-logo {
        max-width: 220px;
    }

    .cert-right h2 {
        font-size: 24px;
    }
}

/* ===== COORDINATOR SECTION ===== */

.coordinator-section {
    background: #083c46;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #f6e27a;
}

.coordinator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.coordinator-card {
    background: #0f5e63;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.coordinator-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.coordinator-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.coordinator-card p {
    font-size: 14px;
    color: #f6e27a;
}

.coordinator-card:hover {
    transform: translateY(-8px);
}

/* Mobile */
@media (max-width: 768px) {
    .coordinator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .coordinator-grid {
        grid-template-columns: 1fr;
    }
}