:root {
    --gold-main: #b8860b;
    --gold-hover: #7A5D28; 
    --maroon-text: #800000;
    --royal-blue: #030230;
    --cream-bg: #fffbf0;
    /* शाही गहरा नीला बेस कलर */
    --deep-royal-blue: #091a3a; 
}

body { 
    font-family: 'Playfair Display', 'Noto Serif Devanagari', serif; 
    background-color: #f5f5f5; 
    color: #333; 
    overflow-x: hidden;
    margin: 0;
}

/* --- GOLD SHIMMER ANIMATION --- */
@keyframes goldShimmer {
    0% { background-position: -100%; }
    100% { background-position: 200%; }
}

/* --- PARALLAX GAP SETTINGS --- */
.parallax-gap {
    width: 100%;
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    border-top: 2px solid #7A5D28;
    border-bottom: 2px solid #7A5D28;
}

/* PHOTOS */
.gap-1 { background-image: url('view_from_fort.png'); }
.gap-2 { background-image: url('fort_kasumbi_2.png'); }

/* --- CONTENT SECTIONS --- */
.cream-section {
    background-color: var(--cream-bg);
    padding: 50px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* --- NAVBAR (Cylindrical Gradient) - REDUCED HEIGHT --- */
.navbar-wrapper {
    background-color: var(--deep-royal-blue);
    background: linear-gradient(
        to bottom, 
        #091a3a 0%,   /* ऊपर: गहरा नीला */
        #2a4065 50%,  /* बीच में: हल्का सफ़ेद सा नीला */
        #091a3a 100%  /* नीचे: गहरा नीला */
    );
    border-bottom: 2px solid #7A5D28;
    border-radius: 0 0 15px 15px;
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    /* NEW: Reduced Height */
    min-height: 45px !important; 
}

.navbar-inverse { background: transparent; border: none; margin-bottom: 0; }

/* LINKS HEIGHT REDUCED */
.navbar-inverse .navbar-nav>li>a { 
    color: #fff !important; 
    font-family: 'Cinzel', serif; 
    font-size: 13px !important; /* Font slightly smaller */
    font-weight: bold; 
    transition: 0.3s;
    /* NEW: Padding Reduced */
    padding-top: 12px !important;    
    padding-bottom: 12px !important; 
}

/* --- UPDATED: MENU HOVER (No Shadow, Only Color) --- */
.navbar-inverse .navbar-nav>li>a:hover { 
    color: #7A5D28 !important; /* Royal Gold Color */
    text-shadow: none !important; /* Shadow Hata Diya */
    background: transparent !important; 
}

/* BRAND & LOGO HEIGHT REDUCED */
.navbar-brand { 
    font-family: 'Cinzel'; 
    color: #fff !important; 
    font-weight: bold; 
    font-size: 18px !important; /* Font adjusted */
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: 0 !important; /* Margin removed */
    padding: 5px 15px !important; /* Padding reduced */
    height: 45px !important; /* Match wrapper height */
}

.menu-logo-img { 
    height: 50px !important; /* Logo reduced from 35px to 30px */
    width: auto; 
    border: none; 
}

.navbar-toggle { 
    border-color: #7A5D28 !important; 
    background: transparent !important; 
    margin-top: 5px !important; /* Centered */
    margin-bottom: 5px !important;
    padding: 6px 8px !important;
}
.navbar-toggle .icon-bar { background-color: #7A5D28 !important; }

/* ड्रॉपडाउन (Desktop) */
.dropdown-menu { 
    background-color: #091a3a; /* गहरा नीला */
    border: 1px solid #7A5D28; 
}
.dropdown-menu>li>a { color: #fff; padding: 10px; border-bottom: 1px solid rgba(184, 134, 11, 0.2); }
.dropdown-menu>li>a:hover { background-color: #2a4065; color: #b8860b; }


/* --- MOBILE FIX (Menu Reduced Height) --- */
@media (max-width: 768px) {
    .parallax-gap { display: none !important; }
    
    header.index-header {
        background-attachment: scroll !important;
        background-position: center top !important;
        background-size: cover !important;
        min-height: 250px !important;
    }
    
    .container { padding-left: 10px; padding-right: 10px; }
    .col-xs-6 { width: 50%; float: left; }
    
    /* MOBILE MENU GRADIENT FIX */
    .navbar-collapse {
        border-top: 1px solid #7A5D28;
        background: linear-gradient(to bottom, #091a3a 0%, #2a4065 50%, #091a3a 100%);
        max-height: 80vh; 
        overflow-y: auto;
    }
    
    .navbar-nav { 
        margin: 0; 
        padding-bottom: 10px; 
        background: transparent; 
    }
    
    .cream-section { box-shadow: none; border-top: 1px solid #7A5D28; border-bottom: 1px solid #7A5D28; padding: 30px 0; }

    /* Navbar items fix for mobile (Compact) */
    .navbar-brand {
        font-size: 14px !important; /* Text smaller */
        padding: 8px 5px !important;
        gap: 5px !important;
        max-width: 75%;
        white-space: nowrap;
        height: 45px !important;
        line-height: 30px !important;
    }
    .menu-logo-img { height: 24px !important; } /* Mobile logo smaller */
    
    .navbar-toggle {
        margin-top: 6px !important;
        margin-right: 10px !important;
        padding: 5px 8px !important;
    }
}


/* --- HEADER STYLES --- */
header.index-header {
    background-image: linear-gradient(rgba(230, 159, 28, 0.3), rgba(60, 94, 117, 0.0)), url('fort_kasumbi.png');
    background-attachment: fixed;
    background-size: cover; background-position: center;
    padding-top: 150px; padding-bottom: 60px;
    text-align: center; color: #fff;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.5);
    margin-bottom: 0;
}
.hero-logo { width: 110px; margin-bottom: 10px; filter: drop-shadow(0 0 10px rgba(255,215,0,0.8)); }

/* SHINING TEXT */
h1.shining-text {
    font-family: 'Berkshire Swash', 'Cinzel', serif; 
    font-size: 3em; 
    margin-top: 5px;
    font-weight: 900;
    background: linear-gradient(to right, #cfc09f 10%, #ffecb3 30%, #7A5D28 50%, #ffecb3 70%, #cfc09f 90%);
    background-size: 200% auto;
    color: #7A5D28;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s linear infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
    padding-top: 10px;
}

/* --- Mobile Fix for Text --- */
@media (max-width: 768px) {
    h1.shining-text {
        font-size: 1.8em !important;
        margin-top: 10px !important;
        white-space: nowrap;
        line-height: 1.4;
    }
}
@media (max-width: 380px) {
    h1.shining-text { font-size: 1.5em !important; }
}

/* --- MAROON TEXT WITHOUT BOX --- */
.maroon-text-wrapper {
    margin-top: 10px;
    margin-bottom: 15px;
}
.thikana-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8em;
    font-weight: 900;
    color: #600000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff, 1px 1px 0px #fff, 0px 0px 20px rgba(255, 215, 0, 0.6);
}
.thikana-motto {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.3em;
    font-weight: bold;
    color: #800000;
    margin-top: 5px;
    text-shadow: 0px 0px 4px #fff, 0px 0px 8px #fff, 0px 0px 15px #7A5D28;
}
@media (max-width: 600px) {
    .thikana-name { font-size: 1.4em; }
    .thikana-motto { font-size: 1.0em; }
}

h2, h3 { font-family: 'Berkshire Swash', 'Cinzel', serif; color: var(--maroon-text); }

/* Social Icons in Header */
/* --- Header Social Icons (Updated like Footer) --- */
.header-social-icons { 
    margin-top: 15px; 
}

.header-social-icons a { 
    color: #ffffff;      /* फूटर जैसा सफेद रंग */
    font-size: 28px;     /* फूटर जैसा बड़ा साइज़ */
    margin: 0 10px; 
    transition: 0.3s; 
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* बैकग्राउंड पर दिखने के लिए Shadow */
}

.header-social-icons a:hover { 
    color: #7A5D28;          /* माउस ले जाने पर Royal Gold */
    transform: translateY(-3px); /* हल्का सा ऊपर उठने का इफेक्ट */
}

/* --- THIKANA PROFILE --- */
.profile-box {
    border: 1px solid #7A5D28;
    padding: 10px; background: #fff; margin-bottom: 15px; text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); min-height: 100px; transition: 0.3s;
}
.profile-box:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2); border-color: var(--maroon-text); }
.p-icon { font-size: 18px; color: #7A5D28; margin-bottom: 5px; }
.p-label { display: block; font-size: 12px; font-weight: bold; color: var(--maroon-text); text-transform: uppercase; }
.p-value { font-size: 13px; color: #333; font-family: 'Noto Serif Devanagari', serif; }

/* --- NEW: GUESTBOOK ROYAL STYLE (Footer Jaisa) --- */
.guestbook-royal {
    background-color: #091a3a;
    background: linear-gradient(to bottom, #091a3a 0%, #2a4065 50%, #091a3a 100%);
    color: #fff; /* टेक्स्ट सफ़ेद */
    padding: 40px 20px;
    border-top: 3px solid #7A5D28;
    border-bottom: 3px solid #7A5D28;
}

/* Guestbook ke andar ki Headings ka color fix */
.guestbook-royal h2, .guestbook-royal h3 {
    color: #7A5D28; /* Gold headings taaki dark par dikhe */
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* --- GUESTBOOK & BUTTONS --- */
.gold-btn { background: linear-gradient(to right, #b8860b, #7A5D28); border: none; color: #000; font-weight: bold; padding: 10px 20px; width: 100%; transition: 0.3s; }
.gold-btn:hover { transform: scale(1.02); box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4); color: #800000; }

/* --- GUESTBOOK HEADER (Optional styling agar header alag hai) --- */
.cta-header {
    background-color: #091a3a;
    background: linear-gradient(to bottom, #091a3a 0%, #2a4065 50%, #091a3a 100%);
    color: #7A5D28;
    padding: 15px;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid #b8860b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

/* --- LIGHTBOX & UPDATES --- */
.lightbox-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.95); animation: fadeIn 0.4s; }
.lightbox-content { margin: auto; display: block; width: 90%; max-width: 700px; max-height: 70vh; object-fit: contain; border: 3px solid #7A5D28; margin-top: 50px; box-shadow: 0 0 20px #7A5D28; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; z-index: 10001; }
.lightbox-close:hover { color: #7A5D28; }
.fb-action-area { text-align: center; margin-top: 15px; color: #fff; padding: 10px; }
.fb-btn { background-color: #1877f2; color: white; padding: 8px 15px; border-radius: 4px; text-decoration: none; font-size: 14px; font-weight: bold; margin: 5px; display: inline-block; border: 1px solid #fff; }
.view-more-container { text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px dashed #7A5D28; }
.royal-link-btn { display: inline-block; background: #800000; color: #7A5D28; padding: 10px 20px; margin: 5px; border: 1px solid #7A5D28; font-family: 'Cinzel', serif; font-weight: bold; text-decoration: none; transition: 0.3s; }
.royal-link-btn:hover { background: #7A5D28; color: #800000; text-decoration: none; }
@keyframes fadeIn { from {opacity: 0} to {opacity: 1} }

/* FOOTER - GRADIENT & ROYAL */
.royal-footer {
    background-color: #091a3a;
    background: linear-gradient(to bottom, #091a3a 0%, #2a4065 50%, #091a3a 100%);
    color: #7A5D28;
    padding: 20px 10px; 
    text-align: center;
    border-top: 3px solid #7A5D28;
    margin-top: 0;
    border-radius: 15px 15px 0 0; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.4);
}

/* --- UPDATED: FOOTER SOCIAL ICONS (Bade aur White) --- */
.footer-social-icons a {
    color: #ffffff !important; /* Default White */
    font-size: 28px !important; /* Size increased */
    margin: 0 15px;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
}

.footer-social-icons a:hover {
    color: #7A5D28 !important; /* Hover pe Royal Color */
    transform: translateY(-3px); /* Thoda upar uthega */
    text-shadow: 0 0 10px rgba(122, 93, 40, 0.5);
}

/* Normal links in footer */
.royal-footer .fb-link { margin-top: 10px; margin-bottom: 10px; }
.royal-footer a:not(.footer-social-icons a) { 
    color: #fff !important; 
    text-decoration: none; 
    transition: 0.3s; 
}
.royal-footer a:not(.footer-social-icons a):hover { 
    color: #7A5D28 !important; 
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); 
}
/* =========================================
   GALLERY PAGE STYLES (Added to Global)
   ========================================= */

/* 1. Gallery Header Background */
.gallery-header-bg {
    background-image: linear-gradient(rgba(3, 2, 48, 0.6), rgba(128, 0, 0, 0.6)), url('sunset_kasumbifort.png');
    background-size: cover;
    background-position: center center;
    padding: 150px 0 60px 0;
    text-align: center; color: #fff;
    border-bottom: 4px solid #7A5D28;
    margin-bottom: 30px;
}

/* 2. UNIFORM GRID SYSTEM (सब एक बराबर) */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Bootstrap row padding fix */
}

.gallery-item {
    /* 3 की लाइन डेस्कटॉप पर */
    width: calc(33.33% - 20px); 
    margin: 10px;
    height: 250px; /* ★ FIXED HEIGHT (यही जादू है) */
    
    border: 2px solid #7A5D28;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    float: left; /* Bootstrap fallback */
}

/* मोबाइल पर 1 की लाइन */
@media (max-width: 768px) {
    .gallery-item { width: calc(50% - 20px); height: 180px; }
}
@media (max-width: 480px) {
    .gallery-item { width: 100%; height: 220px; }
}

/* फोटो को बॉक्स में फिट करना */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★ फोटो कटेगी नहीं, बॉक्स भरेगी */
    transition: 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); opacity: 0.8; }

/* 3. Filter Buttons */
.filter-container { text-align: center; margin: 30px 0; }
.filter-btn {
    background: transparent; border: 2px solid #7A5D28; color: #800000;
    padding: 8px 25px; margin: 5px; font-family: 'Cinzel', serif; font-weight: bold;
    transition: 0.3s; cursor: pointer; border-radius: 30px;
}
.filter-btn:hover, .filter-btn.active {
    background: #7A5D28; color: #fff; box-shadow: 0 0 10px #7A5D28;
}

/* 4. Modals & Add Yours Button */
.video-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 40px; color: #fff; pointer-events: none;
}
.gallery-modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(3, 2, 48, 0.95); z-index: 9999; text-align: center;
}
.gallery-modal-box {
    position: relative; top: 50%; transform: translateY(-50%);
    width: 90%; max-width: 800px; margin: 0 auto;
    border: 4px solid #7A5D28; padding: 5px; background: #000;
}
.modal-video-frame { width: 100%; height: 400px; border: none; }
.modal-media-img { width: 100%; max-height: 70vh; object-fit: contain; }

/* Add Button */
.add-yours-float {
    position: fixed; bottom: 30px; right: 20px;
    width: 60px; height: 60px;
    background: linear-gradient(145deg, #b8860b, #7A5D28);
    border: 2px solid #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px; box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    cursor: pointer; z-index: 5000; animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* Form */
.modal-form-content {
    background: #030230; border: 2px solid #b8860b; padding: 20px;
    border-radius: 15px; max-width: 400px; margin: 0 auto; color: #fff; text-align: left;
}
.form-input { width: 100%; padding: 10px; margin: 8px 0; background: #fff; color: #000; border: 2px solid #b8860b; border-radius: 5px; }
/* --- VIDEO HEADER STYLES --- */
.video-header {
    position: relative;
    width: 100%;
    min-height: 450px; /* हेडर की ऊंचाई */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* वीडियो बाहर न निकले */
    border-bottom: 4px solid #7A5D28;
    margin-bottom: 30px;
}

/* वीडियो को बैकग्राउंड की तरह सेट करना */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★ जरुरी: वीडियो कटेगी नहीं, पूरा बॉक्स भरेगी */
    z-index: 0;
}

/* काली छाया (Dark Overlay) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(3, 2, 48, 0.4), rgba(128, 0, 0, 0.4)); /* हल्का अंधेरा */
    z-index: 1;
}

/* टेक्स्ट और लोगो को सबसे ऊपर लाना */
.header-content {
    position: relative;
    z-index: 2; /* वीडियो और छाया के ऊपर */
    text-align: center;
}
/* --- Contact Page Styles --- */
.contact-header-bg {
    background-image: linear-gradient(rgba(3, 2, 48, 0.7), rgba(128, 0, 0, 0.7)), url('fort_kasumbi.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 50px 0;
    text-align: center;
    color: #fff;
    border-bottom: 4px solid #7A5D28;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.5);
}

.contact-box {
    background: #fff;
    border: 2px solid #7A5D28;
    padding: 20px;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: relative;
}
/* --- Equal Height Row Fix --- */


/* Make sure the box takes full height */
.contact-box {
    height: 100%;
    background: #fff;
    border: 2px solid #7A5D28;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: relative;
    /* Niche ka content bottom me lane ke liye (Optional) */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-title {
    font-family: 'Cinzel', serif;
    color: #800000;
    border-bottom: 2px solid #7A5D28;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.info-item { margin-bottom: 20px; display: flex; align-items: flex-start; }
.info-icon { color: #b8860b; font-size: 20px; margin-right: 15px; margin-top: 5px; }
.info-text { font-family: 'Noto Serif Devanagari', serif; color: #333; font-size: 15px; }

.royal-input {
    width: 100%; padding: 10px; margin-bottom: 15px;
    border: 1px solid #7A5D28; background: #fffbf0;
    font-family: 'Noto Serif Devanagari';
    color: #333;
}
.royal-input:focus { outline: none; border-color: #800000; box-shadow: 0 0 5px #7A5D28; }

/* --- Guestbook Entry Animation --- */
.guest-entry {
    border-bottom: 1px dashed #b8860b;
    padding: 10px 0;
    margin-bottom: 5px;
    animation: fadeIn 0.5s;
}
.guest-name { font-family: 'Cinzel', serif; font-weight: bold; color: #800000; font-size: 14px; }
.guest-date { font-size: 11px; color: #888; float: right; }
.guest-msg { font-family: 'Noto Serif Devanagari', serif; font-style: italic; color: #444; font-size: 14px; margin-top: 5px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* डेस्कटॉप और टैबलेट के लिए - दोनों डब्बे बराबर ऊँचाई के */
@media (min-width: 768px) {
  
    .royal-flex-col {
        display: flex !important;
        flex-direction: column;
    }
  
}

/* सोशल आइकॉन को बॉक्स के नीचे रखने के लिए */
.social-bottom {
    text-align: center;
    margin-top: auto; /* Baaki space upar chhod dega */
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}
/* --- FINAL EQUAL HEIGHT FIX --- */

/* 1. Row को Flexbox बनाएँ */
@media (min-width: 768px) {
    .royal-flex-row {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important; /* Ye dono ko barabar khinchega */
        flex-wrap: wrap;
    }

    .royal-flex-col {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        float: none !important; /* Bootstrap float ko hatana zaruri hai */
    }

    .contact-box {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        height: 100% !important; /* Paka barabar karega */
        margin-bottom: 0 !important; /* Bottom gap row se aayega */
    }
}

/* 2. Content ko manage karein */
.contact-box {
    background: #fff;
    border: 2px solid #7A5D28;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.content-up {
    flex-grow: 1; /* Ye upar ka hissa khali jagah bhar lega */
}

.social-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
}

/* 3. Mobile ke liye gap */
@media (max-width: 767px) {
    .royal-flex-col {
        margin-bottom: 20px;
    }
}
/* वंशावली में अलायंस लिंक की स्टाइल */
.alliance-link {
    color: #7A5D28 !important; /* सुनहरा रंग */
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dashed #7A5D28;
    transition: 0.3s;
    cursor: pointer;
}

.alliance-link:hover {
    color: #800000 !important; /* होवर करने पर मरून */
    border-bottom: 1px solid #800000;
}
/* Active Menu Item का रंग बदलें */
.navbar-inverse .navbar-nav > .active > a, 
.navbar-inverse .navbar-nav > .active > a:hover, 
.navbar-inverse .navbar-nav > .active > a:focus {
    background-color: #041f42 !important; /* शाही लाल (Maroon) */
    color: #fff !important; /* सफ़ेद टेक्स्ट */
    border-bottom: 3px solid #7A5D28; /* नीचे सुनहरी लाइन */
}