
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --brand-red: #D32F2F;
        --brand-gold: #FFAB00;
        --text-dark: #1A1A1B;
        --text-gray: #555555;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    body {
        font-family: 'Outfit', sans-serif;
        background: #f9f9f9;
    }

    /* Header Main */
    .premium-header {
        background: var(--white);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: var(--shadow);
        transition: all 0.4s ease;
        padding: 10px 0;
    }

    .header-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-logo img {
        height: 80px;
        transition: transform 0.3s;
    }

    .header-logo img:hover {
        transform: scale(1.05);
    }

    /* Navigation */
    .nav-list {
        display: flex;
        list-style: none;
        /* gap: 15px; */
    }

    .nav-link {
        color: var(--text-gray);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 10px 15px;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--brand-red);
        background: rgba(211, 47, 47, 0.05);
    }

    /* Dropdown Premium Look */
    .nav-item-dropdown {
        position: relative;
    }

    .mega-dropdown {
        position: absolute;
        top: 150%;
        left: 0;
        width: 250px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        list-style: none;
        padding: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-top: 4px solid var(--brand-red);
    }

    .nav-item-dropdown:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-dropdown li a {
        display: block;
        padding: 10px 15px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        border-radius: 8px;
        transition: 0.3s;
    }

    .mega-dropdown li a:hover {
        background: #fdf2f2;
        color: var(--brand-red);
        padding-left: 20px;
    }

    /* --- PREMIUM BUTTONS  --- */

    .header-btns {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .btn-premium-outline {
        position: relative;
        padding: 6px 14px;
        font-size: 14px;
        font-weight: 700;
        color: #D32F2F;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 2px solid #D32F2F;
        border-radius: 12px;
        background: transparent;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        overflow: hidden;
        z-index: 1;
    }

    .btn-premium-outline:hover {
        color: #ffffff;
        border-color: #D32F2F;
        box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
        transform: translateY(-2px);
    }

    .btn-premium-outline::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #D32F2F;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: -1;
    }

    .btn-premium-outline:hover::before {
        left: 0;
    }

    .btn-premium-gradient {
        position: relative;
        padding: 7px 16px;
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        background: linear-gradient(135deg, #FF4500 0%, #D32F2F 100%);
        border-radius: 12px;
        border: none;
        box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3),
            inset 0 -4px 0 rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        top: 0;
        left: 0;
        filter: blur(15px);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
        border-radius: 12px;
    }

    .btn-premium-gradient:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }

    .btn-premium-gradient:hover .btn-glow {
        opacity: 0.6;
    }

    @keyframes pulse-red {
        0% {
            box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
        }
    }

    .btn-premium-gradient {
        animation: pulse-red 2s infinite;
    }

    .btn-premium-gradient:active,
    .btn-premium-outline:active {
        transform: translateY(1px);
    }

    @media (max-width: 1000px) {
        .header-inner {
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

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

        .header-btns {
            display: flex;
            align-items: center;
            gap: 8px;
        }


        .btn-premium-gradient {
            padding: 8px 12px !important;
            font-size: 11px !important;
            letter-spacing: 0.5px !important;
            box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2) !important;
        }

        .mobile-toggle {
            display: flex !important;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1002;
        }

        .mobile-toggle span {
            width: 22px;
            height: 2px;
            background: var(--brand-red);
            transition: 0.3s;
        }

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            /* Increased width */
            height: 100vh;
            background: var(--white);
            padding: 80px 20px;
            display: block !important;
            transition: 0.4s ease-in-out;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            box-sizing: border-box;
            overflow-y: auto;
        }

        .header-nav.active {
            right: 0;
        }

        /* Make nav-list vertical on mobile */
        .nav-list {
            flex-direction: column;
            gap: 10px;
            padding: 0;
            margin: 0;
        }

        /* Dropdown menu mobile fix */
        .nav-item-dropdown .mega-dropdown {
            position: static;
            display: none;
            box-shadow: none;
            border-top: none;
            padding-left: 10px;
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .nav-item-dropdown.open .mega-dropdown {
            display: block;
        }

        /* Adjust nav-link padding and font size on mobile */
        .nav-link {
            padding: 8px 12px;
            font-size: 16px;
        }
    }


    /* ================= UPDATES section================ */
    .updates-premium-section {
        padding: 80px 0;
        margin-top: 100px;
        background: #ddd8d8;
        font-family: 'Outfit', sans-serif;
    }

    .container-updates {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .u-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .u-title span {
        color: #D32F2F;
    }

    .u-line {
        width: 50px;
        height: 4px;
        background: #FFAB00;
        margin: 15px auto 0;
    }

    .updates-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .update-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: 0.3s;
    }

    .update-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .update-thumb {
        position: relative;
        height: 220px;
    }

    .update-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .date-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #D32F2F;
        color: #fff;
        padding: 10px;
        border-radius: 8px;
        text-align: center;
        font-weight: 700;
        line-height: 1;
    }

    .update-body {
        padding: 25px;
    }

    .btn-read-more {
        background: none;
        border: none;
        color: #D32F2F;
        font-weight: 700;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
    }

    /* MODAL STYLING (CENTERED) */
    .u-modal-overlay {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
        justify-content: center;
        align-items: center;
    }

    .u-modal-content {
        background: #fff;
        width: 90%;
        max-width: 700px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        animation: zoomIn 0.3s ease;
    }

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

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

    .u-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 35px;
        color: #fff;
        cursor: pointer;
        z-index: 10;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    #modal-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .u-modal-text {
        padding: 30px;
    }

    #modal-title {
        font-size: 24px;
        font-weight: 800;
        margin: 15px 0;
        color: #111;
    }

    .u-modal-scroll {
        max-height: 200px;
        overflow-y: auto;
        color: #555;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .u-modal-content {
            width: 95%;
        }

        #modal-img {
            height: 200px;
        }
    }

    /* ====================footer================== */

    .premium-footer {
        background-color: #0a0a0a;
        color: #ffffff;
        padding: 80px 20px 20px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        /* Border color changed to Tomato */
        border-top: 3px solid tomato;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }

    .footer-column h4 {
        /* Text color changed to Tomato */
        color: tomato;
        font-size: 1.2rem;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 2px;
        /* Underline color changed to Tomato */
        background: tomato;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .footer-logo span {
        /* Logo accent color changed to Tomato */
        color: tomato;
    }

    .about-text {
        color: #94a3b8;
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 12px;
    }

    .footer-column ul li a {
        color: #cbd5e1;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.95rem;
    }

    .footer-column ul li a:hover {
        /* Hover link color changed to Tomato */
        color: tomato;
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        color: #cbd5e1;
        font-size: 0.95rem;
    }

    .contact-item i {
        /* Icon color changed to Tomato */
        color: tomato;
        margin-top: 4px;
    }

    .contact-item a {
        color: #cbd5e1;
        text-decoration: none;
        transition: 0.3s;
    }

    .contact-item a:hover {
        color: #ffffff;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        /* Social icon color changed to Tomato */
        color: tomato;
        text-decoration: none;
        transition: 0.3s;
    }

    .social-links a:hover {
        /* Hover background changed to Tomato */
        background: tomato;
        color: #000;
        transform: translateY(-3px);
    }

    .footer-bottom {
        margin-top: 60px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        color: #64748b;
        font-size: 0.85rem;
    }

    /* Responsive Grid */
    @media (max-width: 992px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                /* text-align: center; */
            }}

