/* CSS फाईल: style.css */
:root {
    --primary: #F4C430; /* सॅफ्रन */
    --gold: #D4AA28;    /* सुवर्ण */
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { scroll-behavior: smooth; margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--dark); background: #fff; }

/* Header & Nav */
.main-header { width: 100%; z-index: 1000; background: #fff; }
.top-bar { background: var(--primary); color: #fff; padding: 10px 5%; display: flex; justify-content: space-between; font-size: 0.9rem; }
.logo-center { text-align: center; padding: 30px 0; border-bottom: 4px solid var(--primary); }
.logo-center h1 { font-size: 2.8rem; color: var(--primary); font-weight: 900; }

.navbar { background: var(--dark); position: sticky; top: 0; }
.nav-links { display: flex; justify-content: center; list-style: none; }
.nav-links li a { color: #fff; text-decoration: none; padding: 20px 25px; display: block; font-weight: 500; transition: var(--transition); }
.nav-links li a:hover { background: var(--primary); color: var(--dark); transform: scale(1.1); }

/* Hero Slider */
.hero-slider { height: 100vh; position: relative; background: #fffdf5; display: flex; align-items: center; overflow: hidden; }
.hero-art { flex: 1; position: relative; text-align: center; }
.krishna-img { width: 450px; z-index: 5; position: relative; filter: drop-shadow(0 0 30px rgba(244, 196, 48, 0.5)); }
.peacock-left { position: absolute; left: 10%; top: 20%; width: 150px; animation: float 3s infinite alternate; }
.flute-right { position: absolute; right: 10%; bottom: 20%; width: 250px; transform: rotate(15deg); }
.chakra-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; }
.rotate { width: 600px; animation: rotation 20s linear infinite; }

@keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-20px); } }

/* Section Styling */
.section-title { text-align: center; margin-bottom: 60px; padding: 0 5%; }
.section-title h2 { font-size: 2.5rem; color: var(--dark); position: relative; padding-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--primary); }

/* Exam Grid - Hover Effects */
.exam-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 10%; }
.exam-card { background: #fff; padding: 50px; text-align: center; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); border-bottom: 5px solid transparent; }
.exam-card:hover { transform: translateY(-15px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(244, 196, 48, 0.2); }
.exam-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }

/* Yoga Special Section - Full Width Parallax */
.yoga-special { height: 60vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('yoga-bg.jpg') fixed center; background-size: cover; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 0 10%; }
.yoga-special h2 { font-size: 3rem; margin-bottom: 20px; color: var(--primary); }

/* Contact Form */
.contact-container { display: flex; gap: 50px; padding: 80px 10%; background: #fdfdfd; }
.contact-form { flex: 1.5; background: #fff; padding: 40px; border-radius: 10px; box-shadow: var(--shadow); }
.submit-btn { background: var(--dark); color: #fff; padding: 15px 30px; border: none; cursor: pointer; transition: 0.3s; width: 100%; font-size: 1.1rem; }
.submit-btn:hover { background: var(--primary); color: var(--dark); }

/* Footer */
.main-footer { background: var(--dark); color: #fff; text-align: center; padding: 60px 0; }
.social-icons { margin-top: 20px; }
.social-icons a { color: var(--primary); font-size: 1.5rem; margin: 0 15px; transition: 0.3s; }
.social-icons a:hover { color: #fff; }