        /* ========== BASIC RESET ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hind Vadodara', sans-serif;
            background: #FFFFFF;
            color: #000000;
            overflow-x: hidden;
        }

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

        /* ========== HEADER / NAVIGATION ========== */
        #header {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            border-bottom: 4px solid #FF9933;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 153, 51, 0.3);
        }

        #header .navbar-brand {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #FF9933 !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }

        #header .navbar-brand:hover {
            transform: scale(1.05);
            color: #FFB366 !important;
        }

        #header .nav-link {
            color: #FFFFFF !important;
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            transition: color 0.3s ease;
        }

        #header .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: #FF9933;
            transition: width 0.3s ease;
        }

        #header .nav-link:hover {
            color: #FF9933 !important;
        }

        #header .nav-link:hover::after {
            width: 100%;
        }

        /* ========== HERO SECTION ========== */
        #hero {
            background: linear-gradient(135deg, #FF9933 0%, #CC7A29 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(0,0,0,0.05) 10px,
                rgba(0,0,0,0.05) 20px
            );
        }

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

        #hero h1 {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        #hero .lead {
            font-size: 1.4rem;
            color: #000000;
            font-weight: 600;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }

        #hero .btn-custom {
            background: #000000;
            color: #FFFFFF;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: fadeInUp 1.4s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        #hero .btn-custom:hover {
            background: #FFFFFF;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FF9933, #CC7A29);
        }

        /* ========== IMAGES/EVENTS SECTION ========== */
        #images {
            padding: 80px 0;
            background: #FFFFFF;
        }

        #images .image-card {
            background: #FFFFFF;
            border: 2px solid #FF9933;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        #images .image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 153, 51, 0.3);
            border-color: #CC7A29;
        }

        #images .image-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        #images .image-card:hover img {
            transform: scale(1.1);
        }

        #images .card-body {
            padding: 25px;
            background: linear-gradient(to bottom, #FFFFFF, #f8f8f8);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        #images .card-title {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
            min-height: 2.6rem;
        }

        #images .card-text {
            color: #444444;
            font-size: 1rem;
            flex-grow: 1;
        }

        #images .event-date {
            display: inline-block;
            background: #FF9933;
            color: #FFFFFF;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 10px;
        }

        /* ========== VIDEOS SECTION ========== */
        #videos {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        }

        #videos .video-card {
            background: #FFFFFF;
            border: 3px solid #000000;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        #videos .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.25);
            border-color: #FF9933;
        }

        #videos .video-wrapper {
            position: relative;
            width: 100%;
            background: #000000;
        }

        #videos .video-wrapper video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        #videos .video-card .card-body {
            padding: 25px;
            background: #FFFFFF;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        #videos .video-title {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
            min-height: 2.6rem;
        }

        #videos .video-description {
            color: #555555;
            font-size: 1rem;
            flex-grow: 1;
        }

        /* ========== ARTICLES SECTION ========== */
        #articles {
            padding: 80px 0;
            background: #FFFFFF;
        }

        #articles .article-card {
            background: #FFFFFF;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 30px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        #articles .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FF9933, #CC7A29);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        #articles .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 153, 51, 0.2);
            border-color: #FF9933;
        }

        #articles .article-card:hover::before {
            transform: scaleX(1);
        }

        #articles .article-header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 20px;
        }

        #articles .article-number {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 3rem;
            font-weight: 700;
            color: #FF9933;
            opacity: 0.4;
            line-height: 1;
        }

        #articles .article-title {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
            line-height: 1.4;
            min-height: 4.2rem;
        }

        #articles .article-meta {
            color: #666666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        #articles .article-excerpt {
            color: #444444;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        #articles .article-footer {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        #articles .read-more {
            background: #000000;
            color: #FFFFFF;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        #articles .read-more:hover {
            background: #FF9933;
            color: #FFFFFF;
            transform: translateX(5px);
        }

        /* ========== MODAL STYLING ========== */
        .modal-content {
            border: 3px solid #FF9933;
            border-radius: 15px;
        }

        .modal-header {
            background: linear-gradient(135deg, #FF9933 0%, #CC7A29 100%);
            border-bottom: 3px solid #000000;
            border-radius: 12px 12px 0 0;
        }

        .modal-title {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #FFFFFF;
        }

        .modal .btn-close {
            background-color: #FFFFFF;
            opacity: 1;
        }

        .modal-body {
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .article-content h4 {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            color: #000000;
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 25px;
            margin-bottom: 15px;
            border-left: 4px solid #FF9933;
            padding-left: 15px;
        }

        .article-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 15px;
            text-align: justify;
        }

        .article-content ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }

        .article-content ul li {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 10px;
        }

        .article-content ul li strong {
            color: #FF9933;
            font-weight: 700;
        }

        .article-meta-modal {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #FF9933;
        }

        .modal-footer {
            border-top: 2px solid #FF9933;
            padding: 20px 30px;
        }

        .modal-footer .btn-secondary {
            background: #000000;
            border: none;
            color: #FFFFFF;
            padding: 10px 30px;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .modal-footer .btn-secondary:hover {
            background: #FF9933;
            transform: scale(1.05);
        }

        /* ========== CONTACT FORM SECTION ========== */
        #contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            position: relative;
        }

        #contact .section-title {
            color: #FFFFFF;
        }

        #contact .section-title::after {
            background: linear-gradient(90deg, #FF9933, #FFFFFF);
        }

        #contact .form-control {
            background: rgba(255,255,255,0.1);
            border: 2px solid #FF9933;
            color: #FFFFFF;
            padding: 15px;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        #contact .form-control:focus {
            background: rgba(255,255,255,0.15);
            border-color: #FFB366;
            color: #FFFFFF;
            box-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
        }

        #contact .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }

        #contact .form-label {
            color: #FFFFFF;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.05rem;
        }

        #contact .required {
            color: #FF9933;
        }

        #contact .btn-submit {
            background: #FF9933;
            color: #FFFFFF;
            border: none;
            padding: 15px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
        }

        #contact .btn-submit:hover {
            background: #FFFFFF;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 153, 51, 0.5);
        }

        #contact .contact-info {
            background: rgba(255, 153, 51, 0.1);
            border: 2px solid #FF9933;
            border-radius: 15px;
            padding: 40px;
            margin-top: 30px;
        }

        #contact .contact-info h4 {
            color: #FF9933;
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        #contact .contact-info p {
            color: #FFFFFF;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        #contact .contact-info i {
            color: #FF9933;
            margin-right: 10px;
        }

        /* ========== FOOTER SECTION ========== */
        #footer {
            background: #000000;
            color: #FFFFFF;
            padding: 40px 0 20px;
            border-top: 4px solid #FF9933;
        }

        #footer .footer-content {
            text-align: center;
        }

        #footer .footer-logo {
            font-family: 'Tiro Devanagari Sanskrit', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #FF9933;
            margin-bottom: 20px;
        }

        #footer .social-links a {
            color: #FFFFFF;
            font-size: 1.8rem;
            margin: 0 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        #footer .social-links a:hover {
            color: #FF9933;
            transform: translateY(-5px);
        }

        #footer .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 153, 51, 0.3);
            color: rgba(255,255,255,0.7);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {
            #hero h1 {
                font-size: 2.2rem;
            }

            #hero .lead {
                font-size: 1.1rem;
            }

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

            #header .navbar-brand {
                font-size: 1.3rem;
            }
        }
