/* --- VIJAY BULLION DESIGN V2 --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --mg-red: #7b0300;
    --mg-dark-red: #5a0000;
    --mg-board-red: #450202;
    --mg-light-red: #781301;
    --mg-lighter-red: #c80101;
    --mg-gold: #e2b329;
    --mg-gold-text: #e4c98c;
    --mg-gold-info: #ffde8a;
    --mg-beige: #2b0000;
    --mg-white: #ffffff;
    --mg-black: #000;
}

body {
    background: var(--mg-beige) !important;
    font-family: Calibri, Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif;
    color: #FFF;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body * {
    box-sizing: border-box;
}

/* Live site gradient for content area */
.body_content {
    background: rgba(69, 2, 2, 1);
    background: linear-gradient(to bottom, rgba(69, 2, 2, 1) 0%, rgba(43, 0, 0, 1) 100%);
    padding: 15px 0;
}

/* Booking section - exact live styles */
.booking {
    /*margin-top: 15px;*/
    font-family: Arial, Helvetica, sans-serif;

}

.booking_head1 {
    background: #610303;
    margin-top: 0px;
    border: 1px solid #666;
    margin-bottom: 8px;
    padding-left: 0px;
    padding-right: 0px;
}

.booking_head1 h4 {
    padding: 5px;
    margin-bottom: 0px;
    color: #FFF;
    text-align: center;
    margin-top: 0;
    font-size: 18px;
}

.booking_head1 h3 {
    text-align: center;
    margin-top: 0;
    color: #e2b329;
    font-size: 16px;
}

.booking_head1 h3 a {
    color: #e2b329;
}

.booking_location {
    padding-left: 0px;
    padding-right: 0px;
}

.booking_location h4 {
    font-size: 15px;
}

.booking_location p a {
    color: #4fc752;
    font-size: 13px;
}

.booking_contant {
    background: #280000;
    border: 1px solid #642929;
}

/* Marquee top bar */
.marquee_top {
    background: #2b0a01;
    /*height: 35px;*/
    margin-top: 12px;
    margin-bottom: 0;
}


a {
    color: inherit;
    text-decoration: none;
}


.paddingTop15 {
    padding-top: 15px
}

.paddingBottom15 {
    padding-bottom: 15px
}

.paddingRight15 {
    padding-right: 15px
}

.paddingLeft15 {
    padding-left: 15px
}

.paddingTopBottom15 {
    padding-top: 15px;
    padding-bottom: 15px
}

.marginTop10 {
    margin-top: 10px
}

.marginBottom10 {
    margin-bottom: 10px
}

.marginLeft10 {
    margin-left: 10px
}

.marginRight10 {
    margin-right: 10px
}







li,
ul {
    padding: 0;
    margin: 0
}

.listItems li {
    line-height: 2
}

.designedBy {
    text-align: right
}

.footerLinks li {
    list-style: none
}

.hamburger {
    border: none !important;
    background: transparent !important;
    padding: 6px 8px;
    position: relative;
    width: 44px;
    height: 40px;
    cursor: pointer
}

.ham-bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    left: 9px;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.ham-bar--top {
    top: 10px
}

.ham-bar--mid {
    top: 19px;
    opacity: 1
}

.ham-bar--bot {
    top: 28px
}

.hamburger.active .ham-bar--top {
    transform: translateY(9px) rotate(45deg);
    background-color: #fff
}

.hamburger.active .ham-bar--mid {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.active .ham-bar--bot {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #fff
}

.mobile-nav-wrapper {
    background: #7b0300;
    box-shadow: 0 2px 10px #0000001a;
    position: sticky;
    top: 0;
    z-index: 1040
}

.mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px
}

.mobile-logo img {
    height: 45px;
    width: auto
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008c;
    z-index: 1041;
    opacity: 0;
    transition: opacity .35s ease
}

.mobile-overlay.active {
    display: block;
    opacity: 1
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 270px;
    height: 100%;
    background: #fff;
    z-index: 1042;
    box-shadow: -5px 0 20px #00000026;
    transition: right .38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.mobile-sidebar.active {
    left: 0
}

.mobile-sidebar-header {
    background: linear-gradient(135deg, #7b0300, #5a0000);
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sidebar-logo {
    height: 40px;
    width: auto
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    position: relative;
    padding: 0
}

.sidebar-close span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 6px;
    transition: transform .3s ease
}

.sidebar-close span:first-child {
    top: 16px;
    transform: rotate(45deg)
}

.sidebar-close span:last-child {
    top: 16px;
    transform: rotate(-45deg)
}

.mobile-nav-links {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    flex: 1
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .35s ease, transform .35s ease
}

.mobile-sidebar.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0)
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(1) {
    transition-delay: .08s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(2) {
    transition-delay: .14s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(3) {
    transition-delay: .2s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(4) {
    transition-delay: .26s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(5) {
    transition-delay: .32s
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #1E2939;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color .2s
}

.mobile-nav-links li a:hover {
    background: #f9f0f0;
    color: #f98b00
}

.mobile-nav-links li a i {
    width: 18px;
    text-align: center;
    color: #f98b00;
    font-size: 16px
}

.navbar-nav .dropdown-toggle::after {
    content: '\25BC';
    font-size: 10px;
    margin-left: 8px
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    content: '\25B2'
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    list-style: none;
    background-color: #094b7f;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
    margin: 0
}

.navbar-nav .dropdown-menu li {
    background-color: #d8b573;
    height: auto
}

.navbar-nav .dropdown-menu li a {
    padding: 10px 20px;
    color: #fff;
    line-height: 20px;
    font-size: small;
    text-align: left;
    background-color: #211f20
}

.navbar-nav .dropdown-menu li a:hover,
.navbar-nav .dropdown-menu li a:focus {
    background-color: #d8b573;
    color: #fff !important;
    background-image: none
}

.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block
}

.navbar-nav .dropdown:hover .dropdown-menu:hover {
    display: block
}

.navbar-nav .dropdown:hover:not(:hover)>.dropdown-menu {
    display: none
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.active>a {
    background: #eacc90 !important;
    color: #64081f !important;
    text-shadow: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #64081f
}

.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a:hover {
    background: #eacc90 !important;
    color: #64081f !important
}

a:hover {
    color: inherit
}

hr {
    border-color: #6b6b6b
}

.logo img {
    margin-top: 10px;
    width: 100%
}

.logoContainertop {
    background-image: url(../images/topheader_gradient.jpg);
    height: 43px;
    overflow: hidden;
}

.img_header img {
    width: 84%;
    margin-top: 8px;
}

.logoContainer {
    background: rgba(120, 19, 1, 1);
    background: -moz-linear-gradient(top, rgba(120, 19, 1, 1) 0, rgba(200, 1, 1, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(120, 19, 1, 1)), color-stop(100%, rgba(200, 1, 1, 1)));
    background: -webkit-linear-gradient(top, rgba(120, 19, 1, 1) 0, rgba(200, 1, 1, 1) 100%);
    background: -o-linear-gradient(top, rgba(120, 19, 1, 1) 0, rgba(200, 1, 1, 1) 100%);
    background: -ms-linear-gradient(top, rgba(120, 19, 1, 1) 0, rgba(200, 1, 1, 1) 100%);
    background: linear-gradient(to bottom, rgba(120, 19, 1, 1) 0, rgba(200, 1, 1, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#781301', endColorstr='#c80101', GradientType=0);
    height: 119px
}

.menu {
    list-style: none;
    margin-top: 1px;
}

.menu li {
    list-style: none;
    float: left;
    margin-right: 1px
}

.menu a {
    display: block;
    padding-left: 8px;
    padding-right: 8px;
    color: #fff;
    text-decoration: none;
    height: 41px;
    line-height: 37px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.menu li a:hover {
    color: #fff !important;
    background: linear-gradient(to bottom, rgba(253, 106, 1, 1) 0%, rgba(235, 107, 8, 1) 49%, rgba(249, 163, 24, 1) 53%, rgba(239, 106, 5, 1) 95%, rgba(187, 80, 3, 1) 100%);
}

.menu .active a,
.active a:hover,
.active a:focus {
    color: #fff !important;
    background: linear-gradient(to bottom, rgba(253, 106, 1, 1) 0%, rgba(235, 107, 8, 1) 49%, rgba(249, 163, 24, 1) 53%, rgba(239, 106, 5, 1) 95%, rgba(187, 80, 3, 1) 100%);
}

.active,
.active a,
.menu a:hover {
    color: #fff !important;
    outline: none;
}

.active,
.active a,
.menu a:active {
    color: #fff !important;
    outline: none;
}

.menu .dropdown>a::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px
}

.menu .dropdown:hover>a::after {
    content: '\f0d8'
}

.menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 1000
}

.menu .dropdown-menu li {
    float: none
}

.menu .dropdown-menu a {
    padding: 10px 20px;
    background: linear-gradient(0deg, #e5ca85ff 0%, #fdf9c9ff 45%, #fee179ff 100%);
    color: #1a191f;
    text-align: left
}

.menu .dropdown-menu a:hover {
    background: #1a191f;
    color: #FFF !important
}

.menu .dropdown:hover .dropdown-menu {
    display: block
}

.android {
    float: left;
    padding-right: 10px;
}

.ios {
    float: left;
    padding-left: 10px;
}

.ios img {
    margin-left: 0
}

.flog {
    margin-top: 0;
    padding: 20px;
    background: #f3da73;
    color: #90171c;
    border-radius: 10px;
    text-align: center;
    font-weight: 700
}

.phone_top {
    text-align: left;
    font-size: 20px;
    color: #fff;
    margin-top: -10px
}

.phone_top img {
    display: initial
}

.phone_top a {
    color: #004c8a;
    font-weight: 700
}

.flog1 {
    margin-top: 8px
}

.phone_top h3 {
    font-size: 20px
}

.newyork,
.newyork1 {
    color: #a21c1d;
    margin-left: 5px;
    float: left
}

.london,
.london1 {
    color: #a21c1d;
    margin-left: 5px;
    float: left
}

.india {
    color: #a21c1d;
    margin-left: 7px;
    float: left
}

.newyork img,
.newyork1 img {
    margin-top: 0;
    float: left;
    margin-left: 5px;
    margin-bottom: 10px
}

.london img,
.london1 img {
    margin-top: 0;
    float: left;
    margin-left: 5px;
    margin-bottom: 10px
}

.india img,
.india1 img {
    margin-top: 0;
    float: left;
    margin-left: 5px;
    margin-bottom: 10px
}

.india_time,
.london_time,
.newyork_time {
    margin-left: 5px;
    color: #fff;
    position: relative;
    top: 5px
}

.marquee_top {
    background: #2b0a01;
    /*height: 35px;*/
    margin-top: 12px;
    margin-bottom: 0;
}

.latestUpdatesContainer {
    background: url(../images/recentpost.png) no-repeat center left;
    padding-left: 24px;
    margin-left: 15px;
}

.latestUpdatesContainer p {
    margin-top: 5px;
    margin-bottom: 5px
}

.marquee {
    font-weight: 500;
    color: #fff;
    margin-top: 2px;
    font-size: 17px;
    margin-right: 60px;
}

.welcome-msg-container {
    min-width: 280px;
}

.mobile {
    margin-top: 13px;
    color: #fff;
    justify-content: flex-end
}

.app_head h4 {
    color: #014d8b;
    font-weight: 700
}

.mobile p {
    font-size: 12px;
    margin-left: 10px
}

.headertable1 {
    background: #5a0000;
    color: #fff;
    border-radius: 0
}

.headertable1 th {
    text-align: center;
    color: #fff;
    font-family: Playfair Display;
    border-right: 1px solid #666;
    border-bottom: 0 solid #666 !important
}

.headertable2 th {
    background: #5a0000;
    color: #fff;
    text-align: center;
    font-size: 17px;
}

.headertable2 th:first-child {
    border-top-left-radius: 5px;
    text-align: center
}

.headertable2 th:last-child {
    border-top-right-radius: 5px
}

/*.table_responstive1 tbody tr:nth-child(odd) {
    background-color: #cfeafa
}

.table2 {
    background: #f3da73
}

.table3 {
    background: #070707
}*/

.table4 {
    background: #070707
}

.table1 {
    background: #fff;
    border-bottom: 1px solid #004e80
}

.table1 td {
    font-size: 20px;
    background: #150102;
    border-top: 1px solid #666;
    text-align: center;
    color: #e2b329;
    font-family: Corbel;
    border-right: 1px solid #666;
    font-weight: bold
}

.table1 td:first-child {
    text-align: center;
    color: #e2b329
}

.commodity {
    box-shadow: #63636333 0 2px 8px 0
}

.table2 td {
    font-size: 19px;
    font-weight: 700;
    background: #150102;
    color: #e2b329;
    border-top: 1px solid #666 !important;
    border-right: 1px solid #666;
    text-align: center;
}

.table3 td {
    font-size: 19px;
    font-weight: 700;
    color: #fff
}

.table4 td {
    font-size: 19px;
    font-weight: 700;
    border-top: none !important;
    color: #521540;
    border-bottom: none;
    border-top: none !important
}

.table3 img {
    width: 35px
}

.ratevalue2 {
    text-align: center
}

.ratevalue3 {
    font-size: 22px !important
}

.ratevalue4 {
    font-size: 16px !important
}

.table {
    border: 1px solid #666
}

.table>thead>tr>th {
    border-bottom: 2px solid #ddd
}

.table-responsivetop2 {
    margin-top: 14px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    vertical-align: middle
}

.booking_contacttop {
    margin-top: 35px;
    margin-bottom: 35px
}

.booking_contact {
    background: #150102;
    border-radius: 0;
    box-shadow: none;
    margin-top: 25px;
    margin-bottom: 20px;
    padding: 25px 7px 15px;
    min-height: 180px;
    border: 1px solid #666
}

.booking_contact h4 {
    color: #e2b329;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
    margin-top: 5px
}

.booking_contact1 {
    border: none;
    text-align: center
}

.booking_contact1 a {
    color: #e4c98c;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px
}

.booking_contact1 a:hover {
    color: #510404
}

.icon_box {
    background: transparent;
    color: #e4c98c;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #e4c98c;
    font-size: 15px;
    flex-shrink: 0
}

.booking_center_link {
    display: inline-flex !important
}

.booking_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0
}

.booking_item {
    flex: 0 0 50%;
    padding: 5px 10px
}

.booking_item.full {
    flex: 0 0 100%;
    text-align: center
}

.booking_item.full a {
    justify-content: center
}

.news_msg {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4
}

.booking_contact p {
    font-size: 15px;
    position: relative;
    top: 8px;
    color: #fff;
    margin-bottom: 10px
}

.booking_contact img {
    display: inline
}

.graph_img img {
    width: 100%;
    margin-top: 13px
}

.booking_contact i {
    font-size: 14px
}

.news_event {
    text-align: center
}

.news_event marquee {
    height: 145px !important;
    margin-top: 37px
}

.news_event h4 {
    font-weight: 700
}

.news_event hr {
    width: 22%;
    margin-top: 0;
    margin-bottom: 10px;
    border-color: #fff
}

.disclaimer strong {
    color: #90674b;
    font-size: 16px
}

.disclaimer p {
    line-height: 2;
    color: #90674b;
    font-size: 13px
}

.footer_bottom {
    background: #fbb929;
    color: #ddc561
}

.copyright {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff
}

.terms {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
    text-align: center
}

.powerdby {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
    text-align: right
}

.disclaimer {
    font-family: Arial;
    color: #90674b;
    line-height: 2;
    margin-top: 20px;
    margin-bottom: 20px
}

.reachus {
    font-family: Arial;
    color: #90674b;
    line-height: 2
}

.reachus p {
    color: #fff;
    font-size: 13px
}

.footer {
    background: #e34554;
    color: #fff
}

.liverate_flag {
    width: 20%;
    margin-left: 19px
}

.liverate_flag1 {
    width: 10%;
    margin-left: 19px
}

.table-responsivetop1 {
    margin-top: 0px
}

.live-rates {
    margin-top: 20px;
}

.contact_liverate_top {
    color: #fff;
    background: #014d8b;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 10px
}

.contact_liverate1 {
    text-align: center
}

.contact_liverate1 h3 {
    line-height: 1.5
}

.address_home {
    color: #fff;
    background: #d8b573;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px
}

.address_live {
    text-align: center
}

.address_live h3 {
    line-height: 1.5
}

.banner img {
    width: 100%
}

.body_contant {
    padding-bottom: 10px;
    padding-top: 10px;
    background: #e4dee2
}

textarea,
textarea:hover,
textarea:active {
    border-radius: 0 5px 5px 0;
    border: 1px solid #eee;
    margin: 0;
    width: 80%;
    height: 130px;
    float: left;
    padding: 8px 15px;
    margin-bottom: 13px
}

.form-groupinput {
    border: 1px solid #ddd;
    color: #000
}

input {
    border-radius: 0 5px 5px 0;
    border: 1px solid #eee;
    margin-bottom: 15px;
    float: left;
    padding: 0 15px
}

input:hover,
input:active {
    border-radius: 0 5px 5px 0;
    border: 1px solid #eee
}

.captcha {
    width: 57% !important;
}

.icon-case {
    width: 10%;
    float: left;
    border-radius: 5px 0 0 5px;
    background: #5a0000;
    position: relative;
    text-align: center;
    line-height: 40px;
    color: #fff
}

.form-group {
    overflow: hidden;
    clear: both
}

.bouton-contact {
    background-color: #7b0300;
    color: #fff;
    text-align: center;
    width: 25%;
    border: 0;
    padding: 7px;
    cursor: pointer;
    font-size: 18px
}

form {
    border-radius: 5px;
    max-width: 700px;
    width: 100%;
    margin: 5% auto;
    overflow: hidden
}

.contact_us {
    margin-top: 0;
    margin-bottom: 10px
}

.getintouchTitle {
    font-size: 20px;
    text-align: center;
    background: #5a0000;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 29px
}

.contact1,
.email,
.location {
    font-weight: 700;
    border: #5a0000 1px solid;
    padding-top: 5px;
    padding-right: 10px;
    margin-bottom: 3px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8
}

.dropdown {
    position: relative;
    display: inline-block
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 #0003;
    padding: 12px 16px;
    z-index: 1
}

.dropdown:hover .dropdown-content {
    display: block
}

.right_side {
    margin-top: 5px
}

.gold_live {
    float: left
}

.gold_live1 {
    float: left
}

.table_title {
    margin-left: 10px;
    position: relative;
    top: 11px
}

.liverate_bottom {
    margin-top: 10px
}

.contact_liverate h2 {
    font-weight: 700;
    font-size: 25px;
    color: #fff
}

.contact_liverate h4 {
    font-size: 24px
}

.contact_liverate h4::after {
    content: "";
    position: absolute;
    left: 63px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 74px
}

.contact_liverate h4::before {
    content: "";
    position: absolute;
    right: 63px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 74px
}

.goldRate {
    background: #014d8b;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 5px;
    border-radius: 10px
}

.goldRateData {
    background: #014d8b;
    font-size: 25px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    border-radius: 10px
}

.text-large1 span {
    font-size: 24px
}

.text-large1 {
    font-size: 30px
}

.goldRateData th {
    text-align: center
}

.address_live h4::after {
    content: "";
    position: absolute;
    left: 50px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 42px
}

.address_live h4::before {
    content: "";
    position: absolute;
    right: 45px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 42px
}

.address_live1 h3 {
    font-size: 22px;
    text-align: center;
    line-height: 1.7
}

.disclaimer_top {
    background: #d8b573;
    padding: 15px;
    margin-top: 10px
}

.rate_fontsize {
    font-size: 40px;
    border-top: none !important
}

.flag1 {
    position: relative;
    top: 7px
}

.online {
    text-align: center
}

.booking_contact1 .lbma {
    width: 100%;
    line-height: 1.3
}

.lbma-rate {
    font-size: 20px
}

.lbma th {
    text-align: center;
    top: 6px;
    position: relative
}

.lbma tr span {
    font-size: 12px
}

.lbma1 {
    height: auto
}

.gallery {
    margin-top: 20px;
    margin-bottom: 20px
}

.footer_top {
    background-image: linear-gradient(to right, #b78732, #c29740, #cda74f, #d8b75e, #e3c76e, #e3c76e, #e3c86f, #e3c86f, #d9b95f, #cea950, #c49a42, #b98b33);
    color: #000
}

.widget {
    margin-bottom: 10px
}

.policies {
    color: #000
}

.contact_footer {
    color: #000
}

.terms_footer {
    margin-left: 85px
}

.contact_fot img {
    display: inline
}

.widget-address address {
    line-height: 2
}

.policies1 a {
    color: #000
}

.more1 {
    color: #1a191f !important;
    background: #fdf8c8;
    padding: 4px 20px;
    border-radius: 5px;
    float: right
}

.policies1 {
    list-style-type: none;
    margin-left: 100px !important;
    line-height: 3
}

.contact_footer1 {
    margin-left: 33px
}

ul li::marker {
    content: none
}

.table_5 {
    background: #094b7f
}

.table_5 td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 3;
    padding-left: 10px
}

.table_6 {
    background: #616264
}

.table_6 td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 3;
    padding-left: 10px
}

.bankdetail_body1 {
    margin-top: 30px;
    margin-bottom: 30px
}

.bank_logo {
    margin-top: 4%
}

.banner_info img {
    width: 100%
}

.bankdetail_body {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%
}

.top-div {
    width: 50%;
    margin-left: auto;
    margin-right: auto
}

.form-group {
    overflow: hidden;
    clear: both
}

.form-group {
    color: #000
}

.form-group {
    margin-bottom: 15px
}

.icon-case {
    width: 10%;
    float: left;
    border-radius: 5px 0 0 5px;
    background: #64081f;
    position: relative;
    text-align: center;
    line-height: 44px;
    color: #fff
}

.leftcontact i {
    color: #121111
}

.btn-online-trading-v2 {
    margin-left: 4px;
}

.bouton-contact {
    background: #64081f !important;
    color: #FFF;
    text-align: center;
    width: 25%;
    border: 0;
    padding: 7px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px
}

.contentform i {
    color: #fff
}

.getintouchTitle {
    height: 35px;
    background-color: #64081f;
    color: #fff;
    line-height: 35px;
    font-weight: 700;
    font-size: 16px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center
}

.getintouchTitle span {
    margin-left: 13px
}

.getintouchTitle1 {
    margin-top: -1px;
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #0b4d89;
    border-image: initial;
    border-radius: 3px
}

.getintouchTitle1 span {
    margin-left: 35px;
    line-height: 1.6
}

#captchaimg {
    padding-left: 10px;
    margin-top: -4px
}

.location,
.contact,
.email,
.contact1 {
    border: #521c1c 1px solid;
    padding-top: 5px;
    padding-right: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 15px;
    padding-left: 20px;
}

.location p,
.contact p,
.email p,
.contact1 p {
    margin-left: 10%;
    font-size: 14px;
    line-height: 1.9
}

.contactus {
    padding-top: 22%
}

.contact_us {
    margin-bottom: 10px
}

.aboutus_adv {
    margin-top: 20px;
    margin-bottom: 20px
}

.aboutus_adv img {
    width: 100%
}

.readhome {
    text-align: right
}

.readhome button {
    background: #0e0e0e;
    padding: 5px 24px;
    border-radius: 5px;
    border: 1px solid #0e0e0e;
    color: #fff;
    font-size: 16px
}

.readhome button:hover {
    background: #322727;
    border: 1px solid #0e0e0e
}

.booking_contact1 marquee {
    margin-top: 25px
}

.table_responstive1 {
    color: #fff
}

.contactus h3 {
    margin-bottom: 38px
}

.body_contant1 p {
    line-height: 2
}

.apply-box {
    max-width: 100%;
    padding: 20px;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 4px 3px 5px #0101011a
}

.title_small {
    font-size: 20px;
    color: #ff4500
}

.form_container {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px
}

.form_control {
    display: flex;
    flex-direction: column
}

.textarea_control {
    grid-column: 1 / span 2
}

.textarea_control textarea {
    width: 100%
}

.apply-box label {
    font-size: 15px;
    margin-bottom: 5px
}

.apply-box input,
.apply-box select,
.apply-box textarea {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    width: 95%;
    height: auto;
    margin-bottom: 0
}

.apply-box input:focus,
.apply-box textarea:focus,
.apply-box select:focus {
    outline-color: #ddd
}

.button_container {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.button_container button {
    background: #0e0e0e;
    border: transparent solid 2px;
    padding: 6px 50px;
    color: #fff;
    border-radius: 5px;
    transition: .3s ease-in;
    cursor: pointer
}

.apply-box h1 {
    margin-top: 0;
    text-align: center;
    font-size: 22px
}

.apply-box h1:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #211f20;
    margin: 15px auto 0;
    border-radius: 3px
}

.bank_logo img {
    width: 100%
}

@media screen and (max-width: 550px) {
    .textarea_control {
        grid-column: 1 / span 1
    }
}

section {
    display: flex;
    flex-direction: column;
    width: 100%
}

.disclosure {
    margin-bottom: 16px;
    background: #27272a;
    border-radius: 4px;
    box-shadow: #00000026 0 3px 3px 0;
    line-height: 2;
    letter-spacing: 1px
}

.disclosure-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #f4f4f5;
    padding: 5px 18px 4px
}

.disclosure-button:hover {
    color: #fafafa
}

.disclosure-icon {
    width: 16px;
    height: 16px;
    transition: transform .3s ease
}

.disclosure-panel {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    color: #a1a1aa;
    padding: 0 18px 4px;
    border-top: 4px solid #fce1b2
}

.disclosure.open .disclosure-panel {
    display: block
}

.disclosure.open .disclosure-icon {
    transform: rotate(180deg)
}

.account_head h1 {
    margin-top: 0;
    text-align: center;
    font-size: 24px;
    color: #683534;
    font-weight: 700
}

.account_head h1:after {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background: #211f20;
    margin: 15px auto 0;
    border-radius: 3px
}

.account_head h5 {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px
}

.account_head {
    margin-top: 40px
}

.registration-list {
    color: #fff;
    line-height: 2.5;
    font-size: 14px
}

.career {
    margin-top: 12%
}

.hover-effect::before {
    right: 0;
    opacity: .7;
    top: 0
}

.hover-effect::after {
    bottom: 0;
    opacity: .7;
    left: 0
}

.hover-effect::before,
.hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s !important;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s !important
}

.hover-effect:hover::after,
.hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%
}

.nameproduct {
    text-align: center;
    background: #0e0e0e;
    padding: 10px;
    color: #fff
}

.disclosure-panel p {
    color: #fff;
    font-size: 14px
}

.market_liverate1 p {
    font-size: 15px;
    position: relative;
    top: 10px;
    left: 0;
    color: #fff
}

.market_liverate1 {
    border-top: 0;
    margin-top: -10px;
    margin-bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 150px;
    background: #52153f
}

.liverate_product img {
    border-radius: 10px;
    width: 100%
}

.top-banner img {
    width: 100%;
    margin-bottom: 20px
}

.gallery img {
    border-radius: 10px
}

.policiesmbl {
    line-height: 2
}

.tablefirst {
    border-radius: 10px;
    margin-left: 2%;
    margin-top: 32px;
    margin-bottom: 30px;
    border: 1px solid #dbbd6e
}

.mainprotit1 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 2
}

.mainprogold1 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding-top: 10px;
    line-height: 1.7;
    padding-bottom: 10px
}

.mainprogold2 {
    font-size: 17px;
    font-weight: 700;
    color: #64081F;
    text-align: center;
    padding-top: 10px;
    line-height: 1.7;
    padding-bottom: 10px
}

.mainprogold1 td:nth-child(2) {
    border-right: 1px solid #dbbd6e
}

.mainprogold1 td {
    white-space: nowrap
}

.highlow {
    font-size: 16px
}

.rate {
    font-size: 34px;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    font-feature-settings: tnum;
    text-align: center
}

.tabw2 {
    width: 50%;
    vertical-align: middle
}

.mainprotit {
    background: #fff;
    font-size: 20px;
    margin: 15px 0 7px;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 550;
    color: #1d1d1b
}

.mainprogold {
    color: #1d1d1b;
    font-size: 24px;
    margin-bottom: 15px;
    padding: 6px 10px;
    text-transform: uppercase;
    border-radius: 20px;
    vertical-align: middle
}

.mainprotit1 td {
    background: #64081f;
    color: #364153;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.bank_gst_pan {
    padding: 11px;
    background: #153846;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 17px;
    float: right
}

.table5 {
    background: #64081f
}

.table5 td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 2.5;
    padding: 8px
}

.table6 {
    background: #e2e2ed
}

.table6 td {
    text-align: left;
    color: #0b1f51;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 2.5;
    padding: 8px
}

.gst {
    margin-top: 10px;
    margin-bottom: 20px
}

.bank_img {
    text-align: center
}

.bank_img img {
    width: 100%;
    margin-top: 20%
}

.bankdetail_body1 {
    margin-bottom: 30px
}

.aboutus {
    line-height: 2
}

.for_booking {
    margin-top: -10px
}

.livetitle {
    color: #1E2939;
    font-size: 21px;
    font-weight: 600
}

.news {
    background: #36c9d7e6;
    min-height: 220px
}

.news h4,
.abouthome h4 {
    color: #fff;
    margin-bottom: 15px
}

.abouthome {
    background: #e34554d4;
    text-align: center;
    min-height: 280px
}

.abouthome p {
    color: #fff
}

.readmorelive {
    background: #fff;
    padding: 12px 32px;
    color: #e6515f;
    font-size: .875em;
    transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
    text-transform: uppercase;
    position: relative;
    top: 26px;
    border-radius: 7px
}

.abouthome img {
    width: 17%
}

@media (min-width: 992px) {
    .flex-row-custom {
        display: flex;
        flex-wrap: wrap
    }

    .flex-col-custom {
        display: flex;
        margin-top: 40px
    }
}

.fields-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%
}

.fields-left h4 {
    font-size: 1.3em;
    font-weight: 400;
    color: #e34554;
    margin: 15px 0 0
}

.fields-left p {
    font-size: 1em;
    margin-top: 1.6%;
    line-height: 1.9em;
    color: #999;
    flex-grow: 1
}

.fields-left .btn-bottom-right {
    margin-top: auto;
    padding-top: 0;
    padding-bottom: 20px;
    text-align: right
}

.btn-bottom-right .btn-primary {
    text-shadow: none
}

.ratevalue_2 {}

.newsevents,
.newsevents p {
    color: #fff !important;
}

.animate {
    opacity: 0;
    visibility: hidden;
    animation-fill-mode: forwards
}

.animate.is-visible {
    visibility: visible
}

.animate.fade-up.is-visible {
    animation-name: genericFadeInUp;
    animation-duration: .8s;
    animation-timing-function: ease-out
}

.animate.fade-in.is-visible {
    animation-name: genericFadeIn;
    animation-duration: .8s;
    animation-timing-function: ease-out
}

.animate.slide-left.is-visible {
    animation-name: genericSlideInLeft;
    animation-duration: .6s;
    animation-timing-function: ease-out
}

.animate.slide-right.is-visible {
    animation-name: genericSlideInRight;
    animation-duration: .6s;
    animation-timing-function: ease-out
}

.animate.zoom-in.is-visible {
    animation-name: genericZoomIn;
    animation-duration: .6s;
    animation-timing-function: ease-out
}

.delay-1.is-visible {
    animation-delay: .1s
}

.delay-2.is-visible {
    animation-delay: .2s
}

.delay-3.is-visible {
    animation-delay: .3s
}

.delay-4.is-visible {
    animation-delay: .4s
}

.delay-5.is-visible {
    animation-delay: .5s
}

.delay-6.is-visible {
    animation-delay: .6s
}

@keyframes genericFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes genericFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes genericSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes genericSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes genericZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #1e293966
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 10px 10px #1e293900
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #1e293900
    }
}

.icon_box {
    animation: iconPulse 2s infinite;
    border-radius: 50%
}

.pre-footer {
    background: #f7f7f7;
    padding: 35px 0;
    border-bottom: 2px solid #e34554
}

.pre-footer-item h4 {
    color: #e34554;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 0
}

.pre-footer-item ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.pre-footer-item ul li {
    font-size: 15px;
    color: #4a4a4a;
    padding: 2px 0
}

.pre-footer-item ul li.time-ist {
    color: #8a7044;
    padding-left: 15px;
    font-size: 14px
}

.pre-footer-email {
    font-size: 15px;
    margin-bottom: 15px;
    color: #888
}

.pre-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background .3s ease
}

.pre-footer-socials a:hover {
    background: #e34554
}

.pre-footer-socials i {
    color: #fff
}

@media screen and (max-width: 767px) {
    .pre-footer-item {
        margin-bottom: 20px
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.05);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.05);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.trader_online_btn {
    display: inline-block;
    position: relative;
    animation: heartbeat 1.5s infinite;
    background: #e34554;
    color: #fff;
    padding: 8px 46px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trader_online_btn:hover {
    color: #fff
}

.trader_online_btn span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    animation: blinker 1s linear infinite;
}

.trader {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 30px;
}

.trader_online_btn :hover {
    color: #fff
}

.bannerhome {
    position: relative;
    z-index: 9999 !important;
}

.banner-sec {
    position: relative;
    margin-top: -7em;
}

.banner-text {
    text-align: center;
}

.banner-text_grid {
    background: rgba(32, 172, 185, 0.69);
    padding: 1.5em 2em;
}

.banner-text_grid img {
    margin: -4em auto 0;
    border-radius: 50%;
    border: 4px solid #fff;
    padding: 1em;
    position: relative;
    z-index: 10;
    background: transparent;
    width: 25%;
}

.banner-text_grid h4 {
    font-size: 1.4em;
    padding: 1em 0 0;
    color: #fff;
    font-weight: 600;
}

.banner-text_grid p {
    font-size: 1em;
    padding: .5em 0;
    color: #fff;
    line-height: 1.9em;
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0
}

.rslides li {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.banner-sec {
    position: relative;
    margin-top: -7em;
}

.banner-text {
    text-align: center;
}

.banner-text_grid {
    background: rgba(32, 172, 185, 0.69);
    padding: 1.5em 2em;
}

.banner-text_grid img {
    margin: 0px auto 0;
    border-radius: 50%;
    border: 4px solid #fff;
    padding: 1em;
    position: relative;
    z-index: 10;
    background: transparent;
}

.banner-text_grid h4 {
    font-size: 1.4em;
    padding: 1em 0 0;
    color: #fff;
    font-weight: 600;
}

.banner-text_grid p {
    font-size: 1em;
    padding: .5em 0;
    color: #fff;
    line-height: 1.9em;
}

.nature {
    background: url('http://www.ganeshbullion.com/assets/images/nature.jpg') no-repeat center center;
    min-height: 400px;
    background-size: cover;
}

.nature-top {
    width: 61%;
    float: right;
    background: rgba(227, 69, 84, 0.59);
    text-align: center;
    padding: 3% 21px;
    margin-top: 4%;
    /* Adjusted slightly from 13% for better layout flow */
}

.nature-top h3 {
    color: #fff;
    font-size: 2.1em;
    font-weight: 400;
    margin: 0;
}

.nature-top p {
    font-size: 15px;
    margin-top: 2.5%;
    line-height: 1.9em;
    color: #fff;
}

.about-content {
    color: #5a5a5a;
    line-height: 1.9;
    font-size: 15px;
}

.blog-head {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.removed {
    text-align: right;
}

.removed .btn {
    text-shadow: none;
}

.policy p {}

/* ADDED: New Design Overrides */
.main-header {
    background: #a90000;
    /*height: 120px;*/
}

.main-header .row {
    margin: 0;
}

.bis-logo-container {
    background-color: #f1cf75;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.bis-logo {
    max-height: 80px;
}

.custom-navbar {
    background: linear-gradient(to bottom, #ebd187 0%, #f7e09e 20%, #eab44b 100%);
    border-top: 2px solid #a30000;
    border-bottom: 2px solid #a30000;
    padding: 12px 0 15px 0;
}

.welcome-marquee {
    background-color: transparent !important;
    color: #8c0000;
    font-weight: 800;
    font-size: 18px;
    padding: 4px 10px;
    border-radius: 2px;
    line-height: 1.5;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    transition: all 0.2s;
    float: none;
    padding: 0;
}

.nav-links a.item-red {
    color: #a90000;
}

.nav-links a.item-black {
    color: #000;
}

.nav-links a:hover {
    color: #a30000;
}

.nav-links .btn-online-trading {
    background-color: #b00000;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 18px;
    margin-left: 10px;
    font-size: 14px;
}

.nav-links .btn-login {
    background-color: #ffeba5;
    border: 1px solid #c2952b;
    color: #000 !important;
    border-radius: 4px;
    padding: 7px 24px;
    font-size: 14px;
}

/* Board Panels and Tables Override */
.board-panel {
    background-color: #a30000;
    border: 3px solid #e0b44b;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.custom-table th,
.custom-table td {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    text-align: center;
    vertical-align: middle;
    padding: 16px;
}

.custom-table th {
    background-color: #920000 !important;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.custom-table tbody tr:nth-child(even) td {
    background-color: #d61111 !important;
    color: #ffd666;
    font-size: 29px;
    font-weight: 900;
}

.custom-table tbody tr:nth-child(odd) td {
    background-color: #bd0a0a !important;
    color: #ffd666;
    font-size: 29px;
    font-weight: 900;
}

.custom-table tbody tr td:first-child {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
}

.badge-high,
.custom-table span.high {
    background-color: #08a324;
    color: #ffffff !important;
    padding: 6px 16px;
    font-weight: 800;
    font-size: 22px;
    border-radius: 4px;
    display: inline-block;
    min-width: 90px;
}

.badge-low,
.custom-table span.low {
    background-color: #ffffff;
    color: #b10000 !important;
    padding: 6px 16px;
    font-weight: 800;
    font-size: 22px;
    border-radius: 4px;
    display: inline-block;
    min-width: 90px;
}

.info-wrapper {
    border: 3px solid #e0b44b;
    border-radius: 4px;
    overflow: hidden;
    background-color: #a30000;
    margin-bottom: 20px;
}

.red-info-box {
    background-color: #ca1010;
    padding: 25px 20px;
    color: #ffffff;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.info-title {
    font-size: 15px;
    color: #ffde8a;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-number {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 0px;
}

.app-icons a {
    color: #ffde8a;
    font-size: 32px;
    margin-right: 15px;
    transition: color 0.3s;
}

.gold-image-box {
    background-color: #000;
    height: 100%;
    min-height: 200px;
    padding: 0;
    margin: 0;
}

.gold-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- VIJAY BULLION FINAL DESIGN V2 (matching reference) --- */

/* Header */
.main-header {
    background: var(--mg-red) !important;
    padding: 0 !important;
    border-bottom: none !important;
}

.logo-main {
    /* max-height: 100px !important;
    width: auto !important;*/
    width: 82%;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

.bis-logo-box {
    /* padding: 10px !important;
    border-radius: 8px !important; */
    display: inline-block !important;
    border-left: 1px solid #ffbc44;
    padding-left: 10px;
}

.bis-logo-box img {
    max-height: 80px !important;
    width: auto !important;
}

/* Navbar / Marquee Bar */
.nav-marquee-bar {
    background: linear-gradient(to bottom, #ebd187 0%, #f7e09e 20%, #eab44b 100%) !important;
    /*   background: #FFA900;*/
    padding: 0px 0 0px 0 !important;
    margin: 0 !important;
}

.welcome-marquee-v2 {
    color: var(--mg-red) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    padding: 4px 10px !important;
}

.navbar-links-container {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
}

.nav-link-v2 {
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    padding: 0 !important;
}

.nav-link-v2:hover {
    color: var(--mg-red) !important;
}

.btn-online-trading-v2 {
    background-color: #b00000 !important;
    color: #fff !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.btn-login-v2 {
    background-color: #ffeba5 !important;
    border: 1px solid #c2952b !important;
    color: #000 !important;
    border-radius: 4px !important;
    padding: 7px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

/* Custom Desktop Navigation (ul.menu) */
/* ul.menu overrides removed — using production float-based layout from lines 483-516 */

/* Rate Cards / Board Panels */
.rate-card {
    /* background-color: var(--mg-board-red) !important; */
    border-radius: 4px !important;
    overflow: hidden !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Tables */
.table-v2,
.table-v3 {
    width: 100% !important;
    border-collapse: collapse !important;
}

.table-v2 th,
.table-v3 th {
    background-color: var(--mg-dark-red) !important;
    color: var(--mg-white) !important;
    text-align: center !important;
    padding: 8px !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    border: 1px solid rgb(255 255 255 / 24%) !important;
    vertical-align: middle !important;
}

.table-v2 td,
.table-v3 td {
    color: var(--mg-gold-text) !important;
    text-align: center !important;
    padding: 14px !important;
    font-weight: 900 !important;
    border: 1px solid rgb(255 255 255 / 24%) !important;
    vertical-align: middle !important;
}

.table-v2 tbody tr:nth-child(odd) td,
.table-v3 tbody tr:nth-child(odd) td {
    background-color: var(--mg-light-red) !important;
}

.table-v2 tbody tr:nth-child(even) td,
.table-v3 tbody tr:nth-child(even) td {
    background-color: var(--mg-lighter-red) !important;
}

.table-v2 td.com_name,
.table-v3 td.name-cell {
    color: var(--mg-white) !important;
    font-size: 17px !important;
    font-weight: bold !important;
    text-align: left !important;
    padding-left: 15px !important;
    text-transform: uppercase !important;
}

/* HIGH / LOW Badges */
.high-box {
    background-color: #08a324 !important;
    color: var(--mg-white) !important;
    padding: 6px 16px !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    min-width: 90px !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
    text-align: center !important;
}

.low-box {
    background-color: var(--mg-white) !important;
    color: #b10000 !important;
    padding: 6px 16px !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    min-width: 90px !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
    text-align: center !important;
}

/* Booking Info / Right Side Layout */
.booking-info-wrapper {
    display: flex !important;
    align-items: stretch !important;
    border-radius: 4px !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

.booking-info-box {
    background-color: #ca1010 !important;
    padding: 4px 20px 20px 20px !important;
    color: var(--mg-white) !important;
    border-right: 2px solid rgba(255, 255, 255, 0.3) !important;
    width: 60% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.gold-bars-img-container {
    width: 40% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.info-item h5 {
    font-size: 14px !important;
    color: var(--mg-gold-info) !important;
    margin-bottom: 5px !important;
}

.info-item p {
    font-size: 18px !important;
    color: var(--mg-white) !important;
    margin-bottom: 5px !important;
}

.gold-bars-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    min-height: 200px !important;
}

/* Mobile Sidebar Navigation */
.mobile-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -280px !important;
    width: 270px !important;
    height: 100% !important;
    background: #fff !important;
    z-index: 1042 !important;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15) !important;
    transition: left .38s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
}

.mobile-sidebar.active {
    left: 0 !important;
}

.mobile-sidebar-header {
    background: var(--mg-red) !important;
    padding: 18px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.sidebar-logo {
    height: 40px !important;
    width: auto !important;
}

.sidebar-close {
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 28px !important;
    cursor: pointer !important;
}

.mobile-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.55) !important;
    z-index: 1041 !important;
    opacity: 0 !important;
    transition: opacity .35s ease !important;
}

.mobile-overlay.active {
    display: block !important;
    opacity: 1 !important;
}

.mobile-nav-links {
    list-style: none !important;
    padding: 15px 0 !important;
    margin: 0 !important;
    flex: 1 !important;
}

.mobile-nav-links li a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 20px !important;
    color: #1E2939 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: background 0.2s, color .2s !important;
}

.mobile-nav-links li a:hover {
    background: #fdf5f5 !important;
    color: var(--mg-red) !important;
}

.mobile-nav-links li a i {
    width: 20px !important;
    text-align: center !important;
    color: var(--mg-red) !important;
    font-size: 18px !important;
}

/* Footer */
.pre-footer {
    background: var(--mg-red) !important;
    padding: 30px 0 !important;
    border-top: 3px solid var(--mg-gold) !important;
    color: var(--mg-white) !important;
}

.pre-footer h4 {
    color: var(--mg-gold-info) !important;
    font-weight: bold !important;
    font-size: 18px !important;
}

.footer {
    background: rgba(189, 0, 0, 1);
    background: -moz-linear-gradient(top, rgba(189, 0, 0, 1) 0, rgba(119, 1, 1, 1) 71%, rgba(56, 0, 0, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(189, 0, 0, 1)), color-stop(71%, rgba(119, 1, 1, 1)), color-stop(100%, rgba(56, 0, 0, 1)));
    background: -webkit-linear-gradient(top, rgba(189, 0, 0, 1) 0, rgba(119, 1, 1, 1) 71%, rgba(56, 0, 0, 1) 100%);
    background: -o-linear-gradient(top, rgba(189, 0, 0, 1) 0, rgba(119, 1, 1, 1) 71%, rgba(56, 0, 0, 1) 100%);
    background: -ms-linear-gradient(top, rgba(189, 0, 0, 1) 0, rgba(119, 1, 1, 1) 71%, rgba(56, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(189, 0, 0, 1) 0, rgba(119, 1, 1, 1) 71%, rgba(56, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bd0000', endColorstr='#380000', GradientType=0);
    color: #fff;
    font-family: Arial;
    font-size: 13px
}

.footer a {}

.info-item .fa {
    color: #fff
}

.leftcontact input {
    width: 80%;
    height: 45px;
}

.leftcontact input[type=text],
.leftcontact input[type=password],
.leftcontact input[type=number] {
    width: 80%;
    height: 45px;
}

.info-item .fa-phone,
.info-item .fa-truck {
    color: #ca1010;
    padding: 4px;
    background: #eec062;
    border-radius: 5px;
}

.info-item .fa-android,
.info-item .fa-apple {
    background: #920000;
    padding: 6px;
    border: 1px solid #ecbb59;
    border-radius: 5px;
}

.info-item1 {
    border-bottom: 1px solid #ddd;
}

.info-item a:hover {
    text-decoration: none;
}

.table-v4 td {
    padding: 17px !important
}

.divrate {
    padding-right: 0px
}

/* Appended live table classes to match text colors and borders perfectly */
.headertable1 {
    background: #5a0000;
    font-size: 19px
}

.headertable2 {
    background: #5a0000;
    font-size: 19px;
    color: #fff
}

.headertable3 {
    background: #5a0000;
    font-size: 19px
}

.headertable1 th {
    color: #fff;
    font-family: Playfair Display;
    border-right: 1px solid #666;
    border-bottom: 0 solid #666 !important
}

.headertable2 th {
    text-align: center;
    font-size: 18px;
    font-family: Playfair Display;
    border-right: 1px solid #666;
    border-bottom: 0 solid #666 !important
}

.headertable3 th {
    text-align: center;
    color: #fff;
    font-family: Playfair Display;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666 !important
}

.table4 {
    background: #fff
}

.table7 {
    background: #fff
}

.table4 td {
    background: #150102;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #e2b329;
    border-right: 1px solid #666;
    border-top: 1px solid #666 !important
}

.table7 td {
    background: #150102;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #e2b329;
    font-family: Corbel;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    border-top: 0 solid #666 !important
}

.ratevalue {
    width: 40%;
    text-align: center
}

.ratevalue1 {
    width: 30%;
    text-align: center
}

.ratevalue2 {
    text-align: center;
    color: #fff !important;
    font-family: Tahoma, Verdana, Segoe, sans-serif !important
}

.ratevalue3 {
    width: 40%
}

.ratevalue4 {
    width: 30%
}

.ratevalue6 {
    width: 40%
}

.ratevalue7 {
    width: 30%
}

.ratevalue8 {
    color: #fff !important;
    font-family: Tahoma, Verdana, Segoe, sans-serif !important;
    text-align: center !important
}

.ratevalue9 {
    font-weight: normal !important;
    font-size: 20px !important;
    font-family: Tahoma, Verdana, Segoe, sans-serif !important;
    text-align: center !important;
    color: #fff !important
}

.ratevalue5 {
    border-top: 0;
    text-align: center !important;
    color: #fff !important;
    font-family: Tahoma, Verdana, Segoe, sans-serif !important
}

.tamiltex {
    margin-top: 14px;
}

.tamiltex img {
    float: right;
    margin-top: 18px;
}

.footer a:hover,
.footer a:active {
    outline: none;
    color: #fff
}

.trade {
    margin-top: 5px;
    ;
}

.banknumber {
    text-align: center;
    margin: 100px 0px;
    font-size: 23px;
    font-weight: bold;
}