:root { --primary-color: #e65100; --primary-light: #ff9800; --secondary-color: #ffb300; --theme-gradient: linear-gradient(135deg, #e65100 0%, #ffb300 100%); --bg-color: #fffaf5; --text-dark: #2d1a11; --text-light: #ffffff; --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { background-color: var(--bg-color); color: var(--text-dark); line-height: 1.7; font-family: 'Montserrat', sans-serif; overflow-x: hidden; position: relative; }
h1, h2, h3 { font-family: 'Cinzel', serif; }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: url('LOGOM.png'); background-position: center; background-repeat: no-repeat; background-size: 60%; opacity: 0.06; z-index: -1; pointer-events: none; }
::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--bg-color); } ::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: var(--primary-color); } ::selection { background: var(--primary-color); color: #fff; }
.cursor { width: 20px; height: 20px; border: 2px solid var(--primary-color); border-radius: 50%; position: fixed; transform: translate(-50%, -50%); pointer-events: none; z-index: 9999; transition: width 0.3s, height 0.3s, background-color 0.3s; mix-blend-mode: difference; }
.cursor-grow { width: 50px; height: 50px; background-color: rgba(255, 152, 0, 0.3); border-color: transparent; }
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--theme-gradient); z-index: 10000; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease; }
.preloader-content { font-size: 5rem; color: var(--text-light); font-family: 'Cinzel', serif; animation: heartbeat 1.5s infinite; text-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: var(--theme-gradient); width: 0%; z-index: 10001; transition: width 0.1s; }
.gradient-text { background: var(--theme-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0px 2px 4px rgba(230, 81, 0, 0.1); }
@keyframes heartbeat { 0% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; text-shadow: 0 0 20px rgba(255,255,255,0.5); } 100% { transform: scale(1); opacity: 0.8; } }
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); } .reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }
nav { background: rgba(255, 250, 245, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(230, 81, 0, 0.1); position: fixed; width: 100%; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 6%; transition: var(--transition); }
nav.scrolled { padding: 0.4rem 6%; box-shadow: 0 10px 30px rgba(230, 81, 0, 0.05); }
.nav-logo { height: 120px; width: auto; transition: all 0.4s ease; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); } .nav-logo:hover { transform: scale(1.03); } nav.scrolled .nav-logo { height: 75px; }
.nav-links { display: flex; align-items: center; } .nav-links a { text-decoration: none; color: var(--text-dark); margin-left: 2.5rem; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; position: relative; transition: var(--transition); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -6px; left: 0; background: var(--theme-gradient); transition: var(--transition); } .nav-links a:hover { color: var(--primary-color); } .nav-links a:hover::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; z-index: 1001; } .menu-toggle .bar { width: 28px; height: 3px; background-color: var(--primary-color); margin: 4px 0; transition: 0.4s; border-radius: 2px; }
section { padding: 10rem 6% 6rem; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 1; }
.section-title { text-align: center; font-size: 3.5rem; margin-bottom: 4rem; position: relative; letter-spacing: 2px; } .section-title::after { content: '✧ ॐ ✧'; display: block; font-size: 1.2rem; color: var(--primary-light); margin-top: 15px; letter-spacing: 15px; opacity: 0.6; }
#home { background: radial-gradient(circle at center top, rgba(255,255,255,0.7) 0%, transparent 100%); text-align: center; }
.hero-title { font-size: 5.5rem; margin-bottom: 0px; line-height: 1.1; } .hero-subtitle { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 2rem; letter-spacing: 4px; text-transform: uppercase; } .sanskrit-quote { font-size: 1.6rem; color: var(--primary-color); margin-bottom: 2rem; font-weight: 600; font-family: 'Cinzel', serif;} .sub-text { font-size: 1.2rem; color: #666; margin-bottom: 3.5rem; max-width: 600px; margin-left: auto; margin-right: auto;}
.btn { display: inline-block; background: var(--theme-gradient); color: var(--text-light); padding: 1.2rem 3.5rem; text-decoration: none; font-size: 1rem; font-weight: 700; border-radius: 50px; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); position: relative; overflow: hidden; box-shadow: 0 10px 25px rgba(230, 81, 0, 0.3); border: none; cursor: none; } .btn:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(230, 81, 0, 0.5); }
.features-container { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 5rem; flex-wrap: wrap; } .feature-box { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); padding: 2.5rem 2rem; border-radius: 12px; text-align: center; width: 300px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid rgba(230, 81, 0, 0.05); transition: var(--transition); position: relative; z-index: 2; } .feature-box:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(230, 81, 0, 0.1); border-color: var(--primary-light); } .feature-box h3 { margin-bottom: 15px; font-size: 1.3rem; color: var(--primary-color); } .feature-box p { color: #555; font-size: 0.95rem; }
.boards-container { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; width: 100%; max-width: 1100px; } .board-card { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); border-radius: 15px; padding: 4rem 3rem; width: 100%; max-width: 480px; box-shadow: 0 20px 50px rgba(0,0,0,0.04); position: relative; transition: var(--transition); border-top: 5px solid var(--primary-color); overflow: hidden; z-index: 2; } .card-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(230, 81, 0, 0.05) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s; pointer-events: none; } .board-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(230, 81, 0, 0.12); } .board-card:hover .card-glow { opacity: 1; } .board-card h3 { text-align: center; font-size: 2.2rem; margin-bottom: 2.5rem; color: var(--primary-color); }
.fee-list { list-style: none; position: relative; z-index: 2; } .fee-list li { font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px dashed rgba(230, 81, 0, 0.2); } .fee-list li:last-child { border-bottom: none; } .fee-list span { color: #444; font-weight: 600;} .fee-list strong { font-size: 1.5rem; letter-spacing: 1px;}
.articles-container { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; width: 100%; max-width: 1200px; } .article-card { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); padding: 3rem 2.5rem; border-radius: 12px; width: 100%; max-width: 350px; text-align: left; box-shadow: 0 15px 40px rgba(0,0,0,0.04); border-top: 4px solid var(--primary-light); transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 2; } .article-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(230, 81, 0, 0.1); } .article-card h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.3;} .article-card p { color: #555; margin-bottom: 2rem; font-size: 0.95rem; } .read-more { color: var(--primary-color); font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: inline-flex; align-items: center; transition: var(--transition); margin-top: auto; } .read-more span { margin-left: 8px; transition: transform 0.3s; font-size: 1.2rem;} .read-more:hover { color: var(--secondary-color); } .read-more:hover span { transform: translateX(5px); }
.about-content { max-width: 800px; text-align: center; font-size: 1.2rem; line-height: 2; color: #444; margin-left: auto; margin-right: auto;} .about-content p { margin-bottom: 1.8rem; }
.contact-container { width: 100%; display: flex; justify-content: center; } .contact-info { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 4rem; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); text-align: center; max-width: 550px; width: 100%; position: relative; z-index: 2; } .contact-info::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--theme-gradient); border-radius: 12px 12px 0 0; } .contact-form { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; } .contact-form input { width: 100%; padding: 1.2rem; border: 1px solid rgba(230, 81, 0, 0.2); border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 1rem; background: #fdfaf7; color: var(--text-dark); transition: var(--transition); } .contact-form input:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 15px rgba(230, 81, 0, 0.15); background: #ffffff; } .submit-btn { width: 100%; border-radius: 8px; padding: 1.2rem; margin-top: 10px;}
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; z-index: 10000; transition: transform 0.3s; filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.25)); } .whatsapp-float:hover { transform: scale(1.1); } .whatsapp-float img { width: 100%; height: 100%; object-fit: contain; }
footer { background: var(--theme-gradient); color: var(--text-light); text-align: center; padding: 3rem 2rem 1.5rem; position: relative; overflow: hidden; z-index: 2; } .footer-logo { font-size: 1.4rem; font-family: 'Cinzel', serif; letter-spacing: 2px; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); margin-bottom: 1.5rem; } .footer-contact-row { display: flex; justify-content: center; align-items: center; margin-bottom: 2rem; width: 100%; } .footer-contact-row p { margin: 0; font-size: 1.1rem; text-align: center; } .footer-contact-row a { color: var(--text-light); text-decoration: none; font-weight: 600; transition: opacity 0.3s; } .footer-contact-row a:hover { opacity: 0.8; } .footer-separator { color: rgba(255,255,255,0.5); margin: 0 12px; font-weight: 300; } .social-handles { display: flex; justify-content: center; gap: 20px; margin-bottom: 1.5rem; } .social-handles a { display: inline-block; transition: var(--transition); } .social-handles img { width: 35px; height: 35px; object-fit: contain; transition: transform 0.3s ease, filter 0.3s ease; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15)); } .social-handles a:hover img { transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 8px 15px rgba(0,0,0,0.3)); } .footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); } .copyright { font-size: 0.9rem; opacity: 0.8; letter-spacing: 1px; font-weight: 400; } .powered-by { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; opacity: 0.95; letter-spacing: 1px; } .powered-by img { height: 45px; width: auto; transition: transform 0.3s ease; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); background-color: rgba(255,255,255,0.9); padding: 5px 10px; border-radius: 8px;} .powered-by a:hover img { transform: scale(1.08); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: center; gap: 50px; } }
@media (max-width: 768px) { .menu-toggle { display: flex; } .nav-logo { height: 85px; } nav.scrolled .nav-logo { height: 60px; } .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255, 250, 245, 0.98); backdrop-filter: blur(15px); flex-direction: column; align-items: center; padding: 2rem 0; box-shadow: 0 10px 15px rgba(0,0,0,0.05); display: none; border-top: 1px solid rgba(230, 81, 0, 0.1); } .nav-links.active { display: flex; } .nav-links a { margin: 15px 0; font-size: 1.2rem; } .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; } .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); } .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .cursor { display: none; } .hero-title { font-size: 3.2rem; } .hero-subtitle { font-size: 1.4rem; } .sanskrit-quote { font-size: 1.3rem; } .section-title { font-size: 2.5rem; } section { padding: 9rem 5% 4rem; } .board-card, .article-card, .contact-info { padding: 2.5rem 1.5rem; } .fee-list li { font-size: 1rem; } .fee-list strong { font-size: 1.2rem; } .footer-logo { font-size: clamp(0.65rem, 2.8vw, 1.1rem); white-space: nowrap; letter-spacing: 1px; } .footer-contact-row { margin-bottom: 1.5rem; padding: 0 5px; } .footer-contact-row p { font-size: clamp(0.55rem, 2.3vw, 0.95rem); white-space: nowrap; } .footer-separator { margin: 0 6px; display: inline-block; } .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; } }

/* --- NEW HOMEPAGE SECTIONS CSS --- */

.section-padding {
    padding: 80px 5%;
    text-align: center;
    background-color: #fcfcfc; /* Very light background for contrast */
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

/* Grids for Features and Courses */
.features-grid, .courses-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Boxes */
.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1 1 300px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #d35400; /* Warm saffron color */
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

/* Course Cards */
.board-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid #d35400;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.board-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.board-card p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.outline-btn {
    background: transparent;
    color: #d35400;
    border: 2px solid #d35400;
}

.outline-btn:hover {
    background: #d35400;
    color: #fff;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    padding: 80px 5%;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner .btn {
    background: #fff;
    color: #d35400;
    font-weight: bold;
}

.cta-banner .btn:hover {
    background: #333;
    color: #fff;
}
/* --- MOBILE RESPONSIVENESS FOR NEW SECTIONS --- */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    /* Forces the boxes to stack vertically on small screens */
    .features-grid, .courses-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box, .board-card {
        width: 100%;
        max-width: 350px;
    }
}
/* =========================================
   NEW HOMEPAGE SECTIONS (FEATURES & COURSES)
   ========================================= */

.section-padding {
    padding: 80px 5%;
    text-align: center;
    background-color: #fcfcfc; /* Light background to make white cards pop */
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

/* Grids for Features and Courses */
.features-grid, .courses-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Boxes */
.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1 1 300px; /* Makes them resize automatically */
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #d35400; /* Warm saffron/orange color */
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

/* Course Cards */
.board-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid #d35400;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.board-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.board-card p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

/* Outline Button for Course Cards */
.outline-btn {
    background: transparent;
    color: #d35400;
    border: 2px solid #d35400;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.outline-btn:hover {
    background: #d35400;
    color: #fff;
}

/* =========================================
   CALL TO ACTION BANNER
   ========================================= */
.cta-banner {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    padding: 80px 5%;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-banner .btn:hover {
    background: #fff !important;
    color: #d35400 !important;
    border-color: #fff !important;
}


/* =========================================
   MOBILE RESPONSIVENESS FIXES
   ========================================= */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid, .courses-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .feature-box, .board-card {
        width: 100%;
        max-width: 100%;
    }
    
    .cta-banner {
        padding: 60px 5%;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
}
/* Updated Section Wrapper */
.section-padding {
    padding: 80px 5%;
    text-align: center;
    background-color: transparent; /* Removed the light grey background */
}

/* Updated Feature Boxes */
.feature-box {
    background: transparent; /* Removed the white background */
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 300px; 
    transition: transform 0.3s ease;
    /* Box-shadow removed for a clean transparent look */
}

/* Updated Course Cards */
.board-card {
    background: transparent; /* Removed the white background */
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid #d35400;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Box-shadow removed for a clean transparent look */
}
