* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5f4a;
    --primary-dark: #0f3d2f;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --background: #f8f9fa;
    --white: #ffffff;
    --border: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-brand h1:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(26, 95, 74, 0.7), rgba(15, 61, 47, 0.7)), url('media/main.png') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.3), rgba(15, 61, 47, 0.3));
    z-index: 1;
}

.hero-content {
    z-index: 10;
    padding: 0 20px;
    position: relative;
    max-width: 900px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn:active {
    transform: translateY(0);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--background);
}

.impact-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.impact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.who-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Hindi Content Styling */
.hindi-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hindi-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.hindi-content strong {
    color: var(--primary);
    font-weight: 600;
}

.objectives-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text);
    line-height: 2;
}

.objectives-list li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    text-align: justify;
}

.about-section .hindi-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-section .objectives-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-section .objectives-list li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.who-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Services Showcase */
.services-showcase {
    padding: 80px 0;
    background: var(--background);
}

.services-showcase h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.service-item p {
    padding: 0.5rem 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Statistics */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-box p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--background);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p i {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(26, 95, 74, 0.7), rgba(15, 61, 47, 0.7)), url('media/main_photo.jpeg') center/cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Form Styles */
.contact-content {
    padding: 80px 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box i {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Team Page Styles */
.team-content {
    padding: 80px 0;
    background: var(--background);
}

.team-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-grid.executive {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-grid.members {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 2rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--background);
}

.team-member.small .member-image {
    height: 250px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--primary);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.3rem;
}

.team-member .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member .bio {
    color: var(--text-light);
    padding: 0 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.1);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.why-choose-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-item {
    padding: 1.5rem;
    background: var(--background);
    border-left: 4px solid var(--accent);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-item i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.why-item p {
    color: var(--text-light);
    margin: 0;
}

/* Objectives Page Styles */
.objectives-content {
    padding: 80px 0;
    background: var(--background);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.objective-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.objective-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.objective-card i {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.objective-card.full-width {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Vedanta Page Styles */
.vedanta-content {
    padding: 80px 0;
    background: var(--background);
}

.vedanta-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vedanta-intro img {
    width: 100%;
    border-radius: 10px;
}

.vedanta-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vedanta-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin: 4rem 0 2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.program-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    text-align: left;
}

.program-card li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-item i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Faculty Section Styles */
.faculty-section {
    margin: 4rem 0;
}

.faculty-category {
    margin-bottom: 3rem;
}

.faculty-category h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent);
}

.faculty-category h3 i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faculty-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faculty-info h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faculty-info p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faculty-info i {
    color: var(--accent);
    width: 20px;
}

.faculty-info .qualification {
    font-weight: 500;
    color: var(--text);
}

.faculty-info .experience {
    color: var(--accent);
    font-weight: 500;
}

.faculty-info .subject {
    color: var(--primary);
    font-weight: 500;
}

/* Syllabus Section Styles */
.syllabus-section {
    margin: 4rem 0;
}

.syllabus-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.syllabus-box i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.syllabus-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.syllabus-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.syllabus-box .btn {
    background: var(--accent);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
}

.syllabus-box .btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.4);
}

.syllabus-box .btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Gallery Section Styles */
.gallery-section,
.gallery-section-main {
    margin: 4rem 0;
    padding: 80px 0;
    background: var(--background);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-tab i {
    font-size: 1.1rem;
}

.gallery-content {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    display: none;
}

.gallery-grid.active {
    display: grid;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 74, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
}

.gallery-item {
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    cursor: pointer;
    pointer-events: auto;
}

/* Lightbox Modal Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-item {
    padding: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    padding: 1rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Navigation */
body.menu-open {
    overflow: hidden;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .impact-section h2,
    .services-showcase h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        display: block;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        border-left-color: var(--accent);
        border-bottom-color: transparent;
        background: var(--background);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .who-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-image {
        order: -1;
    }

    .impact-section h2,
    .services-showcase h2 {
        font-size: 2rem;
    }

    .impact-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid.executive,
    .team-grid.members {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-card.full-width {
        grid-column: auto;
    }

    .vedanta-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .about-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .page-hero {
        background-attachment: scroll;
    }

    .programs-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .faculty-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .impact-section,
    .services-showcase,
    .who-we-are,
    .stats-section,
    .cta-section,
    .about-content,
    .contact-content,
    .team-content {
        padding: 50px 0;
    }

    .impact-section h2,
    .services-showcase h2,
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .impact-card,
    .service-item {
        padding: 1.5rem;
    }

    .impact-card i {
        font-size: 2.5rem;
    }

    .impact-card h3 {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .stat-box p {
        font-size: 1rem;
    }

    .who-text h2 {
        font-size: 2rem;
    }

    .who-text p {
        font-size: 1rem;
    }

    .hindi-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .objectives-list {
        padding-left: 1.5rem;
        line-height: 1.8;
    }

    .objectives-list li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .about-section .hindi-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-section .objectives-list li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .page-hero {
        background-attachment: scroll;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 12px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }

    .about-section h2,
    .contact-form h2,
    .contact-info h2,
    .team-content h2 {
        font-size: 1.6rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .info-box i {
        margin: 0 auto;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-card.full-width {
        grid-column: auto;
    }

    .vedanta-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .programs-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .faculty-category h3 {
        font-size: 1.5rem;
    }

    .syllabus-box {
        padding: 2rem;
    }

    .syllabus-box h3 {
        font-size: 1.5rem;
    }

    .syllabus-box i {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .impact-section h2,
    .services-showcase h2 {
        font-size: 1.5rem;
    }
}