    body{
        font-family:'Zain', sans-serif !important;
    }
    
    .navbar-nav{
        flex-direction: row;
        white-space: nowrap;
        z-index: 999999;
        gap: 26px;
    }
    
    .hamburger {
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .m-nav{
        width: 100%;
        height: 115px; 
        background: #212121;
        position: absolute;
        top: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
    }

    .settings {
        flex: 0 0 auto;
        min-width: 220px;
    }
    
    .loyalty {flex: 0 0 auto;}

    .links {
        flex: 1;
        display: flex;
        justify-content: center;
    }    

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
    }

    .logo img{height: 88px;}
  
    .more-btn-nav{
        margin-top: 0;
        width: 186px;
        white-space: nowrap;
        height: 55px;
        border-radius: 28px;
        display: flex;
        text-decoration-line: none;
        border: 2px #cf9233 solid;
        justify-content: center;
        align-items: center;
        position: relative;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .more-btn-nav::before {
        content: "";
        position: absolute;
        width: 96%;
        height: 87%;
        border: 2px #cf9233 solid;
        border-radius: 28px;
    }
 
    .iconc{
        width: 100%;
        height: 58%;
        display: flex;
        justify-content: center;
    }
 
    .iconp{
        width: 100%;
        height: 58%;
        display: flex;
        justify-content: center;
    }
 
    .text{
        text-align: center;
        color: #cf9233;
        margin-top: 12px;
    }
  
    .icon-circle {
        background: #ffffff00;
        width: 48px;
        height: 48px;
        border: 1px solid #CF9233;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 6px auto;
        font-size: 23px; 
        color: #CF9233;
        transition: all 0.3s ease;
        cursor:pointer
    }

    .icon-text {
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      color: #CF9233;
    }
  
    .icon-circle:hover  {
        animation: flashBlur 1s infinite;
    }
 
    @keyframes flashBlur {
        0% {
            box-shadow: 0 0 0px #c18831;
        }
        50% {
            box-shadow: 0 0 10px 3px #c18831;
        }
        100% {
            box-shadow: 0 0 0px #c18831;
        }
    }
  
    a {
        text-decoration-line: none;
    }
 
    .mob-btn{
        height: 45px;
    }
   
    .mob-nav{
        text-align: right;
        background: #212121;
        min-height: 45px;
        display: flex;
        direction: rtl;
    }
 
    .offcanvas{
        color:#979797;
        width: 65% !important;
    }

    .language-selector {position: relative;}

    .dropbtn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 25px;
        font-size: 13px;
        font-weight: 700;
        color: #212121;
        background: white;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 75px;
    }

    .dropbtn::after {
        content: '▼';
        margin-left: 10px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .dropbtn:hover {box-shadow: 0 12px 35px white;}

    .dropdown-content {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        background: #302a29;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        min-width: 200px;
        overflow: hidden;
        z-index: 100;
        animation: dropdownShow 0.4s ease forwards;
    }

    .dropdown-content a {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .dropdown-content img {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .m-nav[class*="theme-"] {
        position: absolute;
        overflow: visible;
    }
    .nav-theme-layer {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
    }
    .nav-theme-content {
        position: relative;
        z-index: 2;
    }
    .nav-theme-item {
        position: absolute;
    }
    .nav-theme-lantern {
        left: 18px;
        top: -22px;
        width: 78px;
        animation: lanternSwing 5s ease-in-out infinite;
        transform-origin: top center;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
    }
    .nav-theme-lantern::before {
        content: "";
        position: absolute;
        top: -26px;
        left: 50%;
        width: 2px;
        height: 26px;
        background: linear-gradient(180deg, #caa35a, #7a5a1c);
    }
    .nav-theme-lantern svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .nav-theme-lantern-small {
        left: auto;
        right: 26px;
        width: 62px;
    }
    .nav-theme-crescent {
        right: 120px;
        top: -10px;
        width: 72px;
        opacity: 0.95;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
    }
    .nav-theme-crescent svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .nav-theme-garland {
        left: 140px;
        right: 160px;
        top: -6px;
        height: 38px;
    }
    .nav-theme-garland::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 14px;
        height: 22px;
        border-top: 2px solid rgba(255, 214, 120, 0.6);
        border-radius: 50% 50% 0 0;
    }
    .nav-theme-garland::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 16px;
        height: 16px;
        background-image: radial-gradient(circle, #ffd36b 0 4px, transparent 5px);
        background-size: 30px 16px;
        opacity: 0.9;
        animation: garlandGlow 3s ease-in-out infinite;
    }
    .nav-theme-firework {
        right: 26px;
        top: -18px;
        width: 90px;
        animation: fireworkPulse 3.5s ease-in-out infinite;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
    }
    .nav-theme-firework svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .nav-theme-stars {
        right: 120px;
        top: -6px;
        width: 130px;
        opacity: 0.95;
        animation: starsFloat 6s ease-in-out infinite;
    }
    .nav-theme-stars svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .nav-theme-flag {
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
        transform-origin: left center;
    }
    .nav-theme-flag-main {
        right: 18px;
        top: -18px;
        width: 170px;
        animation: flagWaveStrong 3.8s ease-in-out infinite;
    }
    .nav-theme-flag-side {
        left: 18px;
        top: -14px;
        width: 125px;
        opacity: 0.9;
        transform: scaleX(-1);
        animation: flagWaveAlt 4.6s ease-in-out infinite;
    }
    .nav-theme-flag svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .nav-theme-emblem {
        right: 190px;
        top: -6px;
        width: 48px;
        opacity: 0.85;
        filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
        animation: emblemPulse 3.2s ease-in-out infinite;
    }
    .nav-theme-emblem svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .nav-theme-sparkles {
        left: 220px;
        right: 220px;
        top: -4px;
        height: 52px;
        background-image:
            radial-gradient(circle, rgba(214, 255, 231, 0.9) 0 3px, transparent 4px),
            radial-gradient(circle, rgba(175, 235, 205, 0.9) 0 2px, transparent 3px),
            radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px);
        background-size: 40px 20px, 60px 26px, 70px 30px;
        background-position: 0 0, 20px 6px, 40px 10px;
        opacity: 0.85;
        animation: sparklesTwinkle 3.8s ease-in-out infinite;
    }
    .nav-theme-ribbon {
        left: 180px;
        right: 200px;
        top: 8px;
        height: 10px;
        background: linear-gradient(90deg, rgba(15, 109, 79, 0) 0%, rgba(67, 196, 146, 0.75) 50%, rgba(15, 109, 79, 0) 100%);
        border-radius: 999px;
        opacity: 0.8;
    }
    .theme-saudi_national_day::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% -40%, rgba(68, 200, 150, 0.35), transparent 60%),
                    radial-gradient(circle at 10% -30%, rgba(20, 150, 110, 0.35), transparent 55%);
        pointer-events: none;
        z-index: 0;
    }
    @keyframes lanternSwing {
        0% { transform: rotate(-3deg); }
        50% { transform: rotate(3deg); }
        100% { transform: rotate(-3deg); }
    }
    @keyframes garlandGlow {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }
    @keyframes fireworkPulse {
        0%, 100% { transform: scale(0.95); opacity: 0.85; }
        50% { transform: scale(1.05); opacity: 1; }
    }
    @keyframes starsFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(6px); }
    }
    @keyframes flagWave {
        0%, 100% { transform: rotate(0deg); }
        50% { transform: rotate(3deg); }
    }
    @keyframes flagWaveStrong {
        0%, 100% { transform: rotate(-1deg); }
        50% { transform: rotate(4deg); }
    }
    @keyframes flagWaveAlt {
        0%, 100% { transform: scaleX(-1) rotate(1deg); }
        50% { transform: scaleX(-1) rotate(-4deg); }
    }
    @keyframes sparklesTwinkle {
        0%, 100% { opacity: 0.6; filter: blur(0px); }
        50% { opacity: 1; filter: blur(0.3px); }
    }
    @keyframes emblemPulse {
        0%, 100% { transform: scale(0.96); opacity: 0.75; }
        50% { transform: scale(1.05); opacity: 0.95; }
    }
    @media (max-width: 991.98px) {
        .nav-theme-layer {
            display: none;
        }
    }

    .dropdown-content a:hover {
        background: #c28932;
        color: white;
    }

    .language-selector:hover .dropdown-content {
        display: block;
    }

    @keyframes dropdownShow {
        0% { opacity: 0; transform: translateY(-15px); }
        100% { opacity: 1; transform: translateY(0); }
    }
  
    .nav-item{
        font-weight: 300;
    }
  
    @media (max-width: 1200px) {
        .links ul {
            gap: 18px !important;
        }

        .nav-item {
            font-size: 15px;
        }

        .more-btn-nav {
            width: 180px;
            height: 48px;
        }
    }
        
    @media (max-width: 992px) {
        .m-nav {
            display: none !important;
        }
    
        .mob-nav {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
        }
    
        .loyalty {
            width: auto !important;
            margin: 0;
        }
    
        .more-btn-nav {
            width: 150px;
            height: 45px;
            font-size: 14px;
        }
    }
    @media (max-width: 480px) {
        .more-btn-nav {
            width: 155px;
            height: 40px;
        }
    
        .more-btn-nav p {
            font-size: 13px;
        }
    
        .mob-nav .more-btn-nav img {
            width: 22px !important;
        }
    
        .hamburger {
            width: 35px;
            height: 39px;
        }
    }
    
    @media (max-width: 768px) {
        .offcanvas {
            width: 80% !important;
        }
    
        .offcanvas .nav-link {
            font-size: 16px;
            padding: 10px 0;
        }
    }

    
    .top-bar {
        font-family: 'Almarai', sans-serif;
        font-size: 14px;
        color: #fff;
    }
    
    .top-bar a {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-icon span {
        display: inline-flex;
    }
    .h5, h5 {
        font-size: 16px !important;
    }
