
        * {
            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;
        }


        .nav-list {
            display: flex;
            list-style: none;

        }

        .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: 15px;
        }

        .btn-premium-outline {
            position: relative;
            padding: 7px 16px;
            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: 1px solid #FF4500;
            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: 6px 8px !important;
                font-size: 10px !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;
            }

        }

        /* Overlay Background */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
        }

        /* Active State */
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }




        /* ================= KALI SENA DIRECTORY ================ --- */


        .ks-premium-directory {
            background: #f5f7fa;
            /* Light Grey BG for Visibility */
            min-height: 70vh;
            padding: 120px 0;
            font-family: 'Inter', sans-serif;
        }

        .ks-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styling */
        .ks-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .ks-badge-pill {
            display: inline-block;
            background: #fff;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 800;
            color: #888;
            border: 1px solid #eee;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .ks-main-title {
            font-size: 38px;
            font-weight: 900;
            margin: 0;
            color: #111;
        }

        .ks-main-title span {
            color: #D32F2F;
        }

        /* Search Bar - Desktop & Tablet */
        .ks-search-card {
            background: #fff;
            border-radius: 100px;
            padding: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
            border: 1px solid #f0f0f0;
        }

        .ks-search-flex {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 10px;
        }

        .ks-input-group {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 15px;
        }

        .ks-input-group i {
            color: #D32F2F;
            font-size: 14px;
        }

        .ks-input-group select,
        .ks-input-group input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 14px;
            font-weight: 600;
            background: transparent;
        }

        .ks-divider {
            width: 1px;
            height: 30px;
            background: #eee;
        }

        .ks-find-btn {
            background: #111;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 100px;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
        }

        .ks-find-btn:hover {
            background: #D32F2F;
        }

        /* Cards Grid */
        .ks-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        /* Member Card */
        .ks-member-card {
            background: #fff;
            border-radius: 25px;
            padding: 30px;
            border: 1px solid #f0f0f0;
            position: relative;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }

        .ks-member-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
            border-color: #D32F2F;
        }

        .ks-top-tag {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 10px;
            font-weight: 900;
            color: #D32F2F;
            background: rgba(211, 47, 47, 0.05);
            padding: 4px 12px;
            border-radius: 50px;
        }

        .ks-user-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .ks-img-circle {
            width: 60px;
            height: 60px;
            background: #D32F2F;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 20px;
        }

        .ks-user-details h3 {
            font-size: 19px;
            font-weight: 800;
            margin: 0;
            color: #111;
        }

        .ks-user-details p {
            font-size: 13px;
            color: #D32F2F;
            font-weight: 600;
            margin: 2px 0 0;
        }

        .ks-location-box {
            background: #f9f9f9;
            padding: 12px 15px;
            border-radius: 15px;
            font-size: 13px;
            color: #555;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 25px;
        }

        .ks-location-box i {
            color: #D32F2F;
        }

        /* Action Buttons */
        .ks-action-btns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .ks-action-btns a {
            text-decoration: none;
            text-align: center;
            padding: 12px;
            border-radius: 14px;
            font-size: 13px;
            font-weight: 800;
            transition: 0.3s;
        }

        .btn-wa {
            background: rgba(37, 211, 102, 0.1);
            color: #25D366;
        }

        .btn-cl {
            background: #111;
            color: #fff;
        }

        .btn-wa:hover {
            background: #25D366;
            color: #fff;
        }

        .btn-cl:hover {
            background: #D32F2F;
        }

        /* --- RESPONSIVE FIXES --- */

        /* Tablet (Cards Fix) */
        @media (min-width: 768px) and (max-width: 1024px) {
            .ks-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Mobile (Search Bar & Buttons Fix) */
        @media (max-width: 767px) {
            .ks-search-card {
                border-radius: 20px;
                padding: 15px;
                margin-bottom: 30px;
            }

            .ks-search-flex {
                flex-direction: column;
                gap: 0;
            }

            .ks-input-group {
                width: 100%;
                border-bottom: 1px solid #eee;
                padding: 12px 0;
            }

            .ks-divider {
                display: none;
            }

            .ks-find-btn {
                width: 100%;
                margin-top: 15px;
                border-radius: 12px;
                padding: 15px;
            }

            .ks-main-title {
                font-size: 30px;
            }

            .ks-cards-grid {
                grid-template-columns: 1fr;
            }

            .ks-action-btns {
                grid-template-columns: 1fr;
            }


        }

        /* =============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; */
            }}


