:root {
    --primary-color: #28a745;
    --secondary-color: #00274d;
    /* --secondary-color: #b23c3c; */
    --light-color: #f8f9fa;
    --dark-color: #333;
    --accent-color: #ffd700;
    --text-light: #f8f9fa;
    --gradient-bg: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header */
.top-header {
    background-color: var(--light-color);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.university-logo {
    max-width: 150px;
    height: auto;
}

/* Navigation */
.navbar {
    background-color: #00274d;
    /* background-color: white; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-item {
    position: relative;
    margin-right: 5px;
}

.navbar-nav .nav-link {
    /* color: var(--dark-color); */
    color: white;
    font-weight: 500;
    padding: 15px 15px;
}

.navbar-toggler {
    background-color: white;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--primary-color);
    color: white;
}

/* Multilevel Dropdown Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Arrow for dropdown submenu */
.dropdown-submenu > a:after {
    display: block;
    content: "";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #cccccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: var(--primary-color);
}

/* Mobile view adjustments */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 15px;
        border-left: 1px solid #eee;
    }

    .dropdown-submenu > a:after {
        transform: rotate(90deg);
        margin-top: 8px;
    }
}
/* Banner */
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Content Sections */
.section {
    /* padding: 60px 0; */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* About Section */
.about-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

/* Page Headers */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.page-header h1 {
    margin: 0;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: 700;
    color: var(--dark-color);
}

.card-text {
    color: #666;
}
.rules-pdf img {
    height: 3rem;
}
/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* News Section */
.news-item {
    margin-bottom: 30px;
}

.news-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

/* Hero Section */
/* .hero-section {
    background: var(--gradient-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
} */

.hero-content {
    position: relative;
    z-index: 2;
}

.university-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.university-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* Take Action Section */
.action-section {
    background: #2c5aa0;
    padding: 80px 0;
    position: relative;
}

.action-title {
    font-size: 3rem;
    color: white;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 4rem;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* .action-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #00bcd4;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
} */

/* .action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s;
} */

/* .action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    color: white;
    border-color: #00e5ff;
} */

/* .action-btn:hover::before {
    left: 100%;
} */

/* .take-action-university-logo {
    height: 40vh;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
} */

/* old Footer */

/* footer {
    background-color: var(--secondary-color);
    background-color: #00274D;
    color: white;
    padding: 0px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.social-links li {
    margin-right: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}
 */

/* Footer Section */
.footer-section {
    background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-light);
    padding: 60px 0 20px;
    position: relative;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #ff6b6b,
        #4ecdc4,
        #45b7d1,
        #96ceb4,
        #fdd835
    );
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}
.footer-statement,
.footer-title {
    color: white;
}
.footer-links {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-statement {
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    opacity: 1;
    color: white;
}

/* Site Plan */
.site-plan-img {
    max-width: 100%;
    height: auto;
}

/* Development Plan Page */
.development-plan {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.map-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* Breadcrumb styling for inner pages */
.page-breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.page-breadcrumb .breadcrumb {
    margin-bottom: 0;
    padding: 0;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin-right: 0;
    }

    .banner h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 400px;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 300px;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    .top-header h1 {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .university-title {
        font-size: 2.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .action-btn {
        width: 150px;
        height: 150px;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.take-action-university-logo {
    animation: float 3s ease-in-out infinite;
}

/* new theme */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: #f59e0b;
    --accent-color: #059669;
    --ayurveda-green: #16a34a;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 120px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Navigation Styles from vidushi_university.html */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@supports not (backdrop-filter: blur(20px)) {
    .navbar-container {
        background: rgba(255, 255, 255, 0.95);
    }
}

@supports (backdrop-filter: blur(20px)) {
    .navbar-container {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

.top-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid var(--border-light);
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 4px;
}

.brand-logo:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.brand-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.05);
}

.brand-info h1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.brand-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
}

.search-input {
    width: 280px;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15);
    width: 320px;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
}

.cta-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cta-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cta-btn.secondary {
    background: var(--ayurveda-green);
}

.cta-btn.secondary:hover {
    background: var(--accent-color);
}

.tab-nav-container {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background: var(--bg-light);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-nav-container::-webkit-scrollbar {
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    role: navigation;
    aria-label: "Main navigation";
}

.nav-item-compact {
    position: relative;
}

.nav-link-compact {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.nav-link-compact:hover,
.nav-link-compact:focus {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    outline: none;
}

.nav-link-compact.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.nav-link-compact i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.tab-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow-xl);
    max-height: 60vh;
    overflow-y: auto;
    z-index: 1050;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.tab-panel {
    padding: 2rem;
}

.tab-panel-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.content-section h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
}

.content-links {
    list-style: none;
}

.content-links li {
    margin-bottom: 0.5rem;
}

.content-links a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.content-links a:hover,
.content-links a:focus {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
    outline: 1px solid var(--primary-color);
}

.content-links a i {
    margin-right: 0.75rem;
    color: var(--text-light);
    width: 16px;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
    background: rgba(30, 64, 175, 0.1);
    outline: none;
}

.hamburger {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.mobile-toggle.active .hamburger {
    background: transparent;
}

.mobile-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1040;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-content {
    padding: 1.5rem;
}

.mobile-nav-section {
    margin-bottom: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.mobile-nav-title {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-nav-title:hover,
.mobile-nav-title:focus {
    background: var(--primary-dark);
    outline: none;
}

.mobile-nav-title i.section-icon {
    margin-right: 0.5rem;
}

.mobile-nav-links {
    max-height: 0;
    overflow: auto;
    transition: all 0.3s ease;
}

.mobile-nav-section.active .mobile-nav-links {
    max-height: 500px;
    padding: 1rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    background: white;
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    outline: 1px solid var(--primary-color);
}

.mobile-nav-links a i {
    margin-right: 0.75rem;
    width: 18px;
}

/* Content Styles from pasted.txt */
.hero-section {
    background: linear-gradient(
            135deg,
            rgba(30, 64, 175, 0.9),
            rgba(30, 58, 138, 0.85)
        ),
        url("https://yogmayaau.edu.np/images/home/background.jpg");
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-section {
        background-attachment: fixed;
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover,
.btn:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: var(--shadow-lg);
    outline: 2px solid white;
    outline-offset: 2px;
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Cards */
.card-executive,
.academic-card,
.news-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* height: 100%; */
    border: none;
    position: relative;
    overflow: hidden;
}

/* .card-executive::before, */
.academic-card::before,
.news-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 64, 175, 0.02),
        rgba(16, 185, 129, 0.02)
    );
    opacity: 0;
    transition: all 0.3s ease;
}

.card-executive:hover::before,
.academic-card:hover::before,
.news-card:hover::before {
    opacity: 1;
}

.card-executive:hover,
.academic-card:hover,
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.profile-img,
.profile-img-2 {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.profile-img:hover,
.profile-img-2:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.name-under-photo {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.designation {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn::after {
    content: "→";
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateX(5px);
}

.read-more-btn:hover::after {
    transform: translateX(5px);
}

/* Additional styles for other components */
.academic-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.academic-card:hover img {
    transform: scale(1.02);
}

.academic-card h5 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.news-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.02);
}

.news-date {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.news-card h6 {
    color: var(--text-dark);
    margin: 1rem 0;
    line-height: 1.4;
}

.rule-card,
.notice-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 4px solid var(--primary-color);
}

.rule-card:hover,
.notice-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.pdf-icon {
    width: 45px;
    height: 45px;
    margin-right: 1.25rem;
}

.rule-text {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.rule-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.download-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
}

.download-icon:hover {
    color: white;
    background: var(--primary-color);
    transform: scale(1.1);
}

.campus-life-section {
    background: linear-gradient(135deg, var(--text-dark), #374151);
    color: white;
    position: relative;
    overflow: hidden;
}

.campus-life-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 30% 20%,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(16, 185, 129, 0.1) 0%,
            transparent 50%
        );
}

.campus-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.campus-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.campus-item img {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.campus-item:hover img {
    transform: scale(1.05);
}

.testimonial-box {
    background: rgba(30, 64, 175, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    margin: 2rem 0;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.testimonial-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.action-section {
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary-color)
    );
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}

.action-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.take-action-university-logo {
    height: 150px;
    /* filter: brightness(0) invert(1); */
    position: relative;
    z-index: 2;
}

.footer-section {
    background: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
    text-align: center;
    position: relative;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-statement {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.4);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: none;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-justify {
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tab-nav-container {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    body {
        padding-top: 70px;
    }

    .navbar-container .top-header {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 0 1rem;
    }

    .brand-info {
        display: none;
    }

    .search-input {
        width: 200px;
    }

    .search-input:focus {
        width: 220px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.25rem;
    }

    .cta-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .mobile-nav {
        top: 70px;
    }

    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .section {
        padding: 4rem 0;
    }

    .action-title {
        font-size: 2.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .card-executive .row {
        text-align: center;
    }

    .profile-img,
    .profile-img-2 {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 576px) {
    .search-input {
        width: 160px;
    }

    .search-input:focus {
        width: 180px;
    }

    .cta-buttons {
        display: none;
    }

    .top-header {
        padding: 0 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-executive,
    .academic-card,
    .news-card {
        padding: 1.5rem;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --text-dark: #000000;
        --border-light: #000000;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .navbar-container,
    .mobile-nav,
    .cta-buttons {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

    .hero-section {
        background: none;
        color: var(--text-dark);
    }
}
