* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

body {
    background: #f4f7fb;
    line-height: 1.6;
}

.main-header {
    background: linear-gradient(rgb(165, 11, 15) 12%, rgb(117, 8, 11) 74%);
    color: rgb(225, 189, 0);
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    
}

.main-header h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ============================================
   MODERN PRIMARY HEADER STYLING (INDEX ONLY)
   ============================================ */

.primary-header {
        background: linear-gradient(rgb(165, 11, 15) 12%, rgb(117, 8, 11) 74%);
    color: white;
    padding: 50px 20px;
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.25), 0 0 40px rgba(25, 118, 210, 0.15);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #1affd9;
}

/* Decorative background elements */
.primary-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.primary-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(26, 255, 217, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.primary-header .container {
    position: relative;
    z-index: 2;
}

.primary-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.primary-brand .large-logo {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.primary-brand .large-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.primary-brand .brand-text {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.primary-brand .brand-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    
    line-height: 1.2;
    color: rgb(225, 189, 0);
    font-family: "Big Shoulders Display", cursive;
    text-shadow: rgba(0, 0, 0, 0.7) 1px 5px 5px;
}

.primary-brand .brand-text .tagline {
    font-size: 1.1rem;
    
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
   
    color: rgb(225, 189, 0);
    font-family: "Big Shoulders Display", cursive;
    text-shadow: rgba(0, 0, 0, 0.7) 1px 5px 5px;
}

/* ============================================
   MODERN SECONDARY HEADER (NAVIGATION)
   ============================================ */

.secondary-header {
    background-color: rgb(0, 19, 60);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.12);
    border-bottom: 2px solid rgba(26, 255, 217, 0.2);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.secondary-header .main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.secondary-header .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.secondary-header .nav-links li {
    position: relative;
    text-align: center;
}

.secondary-header .nav-links li a {
    display: inline-block;
    text-decoration: none;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.secondary-header .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #1affd9;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.secondary-header .nav-links li a:hover {
    color: #1affd9;
    background: rgba(26, 255, 217, 0.08);
}

.secondary-header .nav-links li a:hover::after {
    width: 60%;
}

.section {
    padding: 50px 10%;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #003366;
    font-size: 26px;
    position: relative;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-left: 6px solid #00509e;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card ul,
.card ol {
    margin-top: 15px;
    padding-left: 20px;
}

.card li {
    margin-bottom: 10px;
}

.center {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #00509e;
}

/* ============================================
   MODERN FOOTER STYLING (INDEX ONLY)
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 50%, #1e4d6b 100%);
    color: #ffffff;
    padding: 60px 20px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(13, 71, 161, 0.15);
}

/* Decorative background elements */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 255, 217, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.site-footer .col,
.site-footer .col-links,
.site-footer .col-contact {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.site-footer .col:hover,
.site-footer .col-links:hover,
.site-footer .col-contact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(26, 255, 217, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.site-footer .footer-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 auto 16px 100px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.site-footer .footer-logo:hover {
    transform: scale(1.05);
}

.site-footer h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: #1affd9;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-footer p {
    color: rgba(232, 240, 247, 0.9);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer a {
    color: #1affd9;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a::before {
    content: '→ ';
    margin-right: 6px;
    color: #1affd9;
    font-weight: bold;
    transition: margin 0.2s ease;
}

.site-footer ul li a:hover::before {
    margin-right: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 255, 217, 0.2), rgba(26, 255, 217, 0.05));
    color: #1affd9;
    border: 2px solid rgba(26, 255, 217, 0.4);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #1affd9, rgba(26, 255, 217, 0.8));
    color: #1a3a52;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 30px rgba(26, 255, 217, 0.4);
    border-color: #1affd9;
}

.social-icons a i {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1));
    border-top: 2px solid rgba(26, 255, 217, 0.2);
    padding: 24px 0;
    text-align: center;
    margin-top: 30px;
}

.footer-bottom p {
    color: rgba(232, 240, 247, 0.85);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .primary-header {
        padding: 35px 15px;
    }

    .primary-brand {
        gap: 16px;
    }

    .primary-brand .large-logo {
        width: 100px;
        height: 100px;
    }

    .primary-brand .brand-text h1 {
        font-size: 1.8rem;
    }

    .primary-brand .brand-text .tagline {
        font-size: 0.9rem;
    }

    .secondary-header .nav-links {
        gap: 0;
    }

    .secondary-header .nav-links li a {
        padding: 10px 14px;
        font-size: 0.85rem;
        color: #000 !important;
    }

    .footer-grid {
        gap: 24px;
    }

    .site-footer .col,
    .site-footer .col-links,
    .site-footer .col-contact {
        padding: 20px;
    }
}

.social-icons a:nth-child(3):hover {
    color: #1877f2;   /* Facebook */
}

.col-links ul{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
}






/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 40px 5%;
    }

    .main-header h1 {
        font-size: 24px;
    }
    
    .primary-brand {
        gap: 16px;
    }
    
    .primary-brand .large-logo {
        width: 80px;
        height: 80px;
    }
    
    .primary-brand .brand-text h1 {
        font-size: 1.8rem;
    }
    
    .primary-brand .brand-text .tagline {
        font-size: 0.9rem;
    }
    
    .secondary-header {
        position: relative;
    }
    
    .secondary-header .nav-links li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .site-footer {
        padding: 40px 15px 0;
        margin-top: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        padding: 30px 0;
    }
    
    .site-footer .col,
    .site-footer .col-links,
    .site-footer .col-contact {
        padding: 18px;
        border-radius: 12px;
    }
    
    .site-footer .footer-logo {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
    }
    
    .site-footer h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .site-footer p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .site-footer ul li {
        margin-bottom: 8px;
    }
    
    .site-footer ul li a {
        font-size: 0.9rem;
    }
    
    .social-icons {
        gap: 12px;
        padding: 16px 0;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .site-footer .nav-links {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        display: block;
    }
    
    .site-footer .nav-links li a {
        padding: 8px 0;
        font-size: 0.9rem;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .primary-header {
        padding: 20px 15px;
    }
    
    .primary-brand {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .primary-brand .large-logo {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    
    .primary-brand .brand-text {
        min-width: auto;
    }
    
    .primary-brand .brand-text h1 {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .primary-brand .brand-text .tagline {
        font-size: 0.75rem;
    }
    
    .secondary-header {
        padding: 8px 0;
    }
    
    .secondary-header .main-nav {
        gap: 4px;
    }
    
    .secondary-header .nav-links li a {
        padding: 8px 8px;
        font-size: 0.75rem;
    }
    
    .secondary-header .nav-links li a::after {
        height: 2px;
        bottom: 6px;
    }
    
    .section {
        padding: 20px 3%;
    }
    
    .section h2 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .card {
        padding: 14px;
    }
    
    .card ul {
        padding-left: 16px;
    }
    
    .card ol {
        padding-left: 16px;
    }
    
    .card li {
        margin-bottom: 4px;
        font-size: 13px;
    }
    
    .main-header {
        padding: 30px 15px;
    }
    
    .main-header h1 {
        font-size: 1.3rem;
    }
    
    .site-footer {
        padding: 20px 10px 0;
        margin-top: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 0;
    }
    
    .site-footer .col,
    .site-footer .col-links,
    .site-footer .col-contact {
        padding: 12px;
        border-radius: 8px;
        text-align: center;
    }
    
    .site-footer .col:hover,
    .site-footer .col-links:hover,
    .site-footer .col-contact:hover {
        transform: translateY(-4px);
    }
    
    .site-footer .footer-logo {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }
    
    .site-footer h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .site-footer p {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .site-footer ul li {
        margin-bottom: 6px;
    }
    
    .site-footer .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-left: 0;
    }
    
    .site-footer ul li a {
        font-size: 0.8rem;
    }
    
    .site-footer .nav-links li a {
        display: block;
        padding: 4px 0;
        font-size: 0.7rem;
        line-height: 1.3;
        color: #fff;
    }
    
    .site-footer ul li a::before {
        content: '';
        margin-right: 0;
    }
    
    .social-icons {
        gap: 10px;
        padding: 12px 0;
        margin-top: 12px;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 10px 0;
        margin-top: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .site-footer .nav-links li a {
        padding: 4px 0;
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .site-footer {
        padding: 15px 8px 0;
    }
    
    .footer-grid {
        gap: 8px;
        padding: 12px 0;
    }
    
    .site-footer .col,
    .site-footer .col-links,
    .site-footer .col-contact {
        padding: 10px;
        border-radius: 6px;
    }
    
    .site-footer .footer-logo {
        width: 44px;
        height: 44px;
        margin: 0 auto 8px;
    }
    
    .site-footer h4 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .site-footer p {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .site-footer ul li a {
        font-size: 0.75rem;
    }
    
    .site-footer .nav-links li a {
        display: block;
        padding: 3px 0;
        font-size: 0.65rem;
        color: #fff;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
