   
        /* ===== MOBILE FIRST STYLES (iPhone Mini baseline: 375px) ===== */
        :root {
            --primary-600: #0284c7;
            --primary-700: #0369a1;
            --primary-800: #075985;
            --primary-100: #e0f2fe;
            --primary-50: #f0f9ff;
            --neutral-50: #f8fafc;
            --neutral-100: #f1f5f9;
            --neutral-200: #e2e8f0;
            --neutral-300: #cbd5e1;
            --neutral-500: #64748b;
            --neutral-600: #475569;
            --neutral-700: #334155;
            --neutral-800: #1e293b;
            --neutral-900: #0f172a;
            --accent-600: #7c3aed;
            --success-500: #10b981;
            --warning-500: #f59e0b;
            --error-500: #ef4444;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background: var(--neutral-50);
            color: var(--neutral-800);
            line-height: 1.5;
            padding: 0;
            margin: 0;
            font-size: 14px;
        }

        /* ===== TYPOGRAPHY ===== */
        h1 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--neutral-900);
        }

        h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--neutral-800);
        }

        h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--neutral-800);
        }

        p {
            margin-bottom: 1rem;
            color: var(--neutral-700);
        }

        /* ===== LAYOUT ===== */
        .container {
            width: 100%;
            padding: 0 1rem;
            margin: 0 auto;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--primary-700);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            box-shadow: var(--shadow-md);
            height: 60px;
        }

        .navbar a {
            color: #fff;
            text-decoration: none;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .navbar-items {
            display: none; /* Hidden on mobile by default */
        }

        .badge-pill {
            background: #fff;
            color: var(--primary-700);
            border-radius: 999px;
            padding: 0.25rem 0.6rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
        }

        .menu-toggle {
            display: inline-flex;
            background: none;
            border: 0;
            color: #fff;
            font-size: 1.25rem;
            cursor: pointer;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            height: calc(100vh - 60px);
            background-color: var(--primary-100);
            border-right: 1px solid var(--neutral-200);
            padding: 1.5rem 1rem;
            transform: translateX(-100%);
            transition: var(--transition);
            z-index: 900;
            overflow-y: auto;
        }

        .sidebar.open {
            transform: translateX(0);
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .sidebar-link {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            color: var(--neutral-700);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .sidebar-link:hover {
            background-color: var(--primary-50);
            color: var(--primary-600);
        }

        .sidebar-link i {
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }

        /* ===== MAIN CONTENT ===== */
        .content-offset {
            padding-top: 70px;
            padding-bottom: 20px;
        }

        .main-content {
            padding: 1.5rem 0;
            transition: var(--transition);
        }

        /* ===== CARDS ===== */
        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .card {
            background: white;
            border: 1px solid var(--neutral-200);
            border-radius: var(--border-radius);
            padding: 1.25rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary-300);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .card-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--primary-100);
            color: var(--primary-600);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            font-size: 1.1rem;
        }

        .card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .card p {
            color: var(--neutral-600);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* ===== STATS ===== */
        .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.25rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .stat-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-600);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            color: var(--neutral-600);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary-600);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-700);
            box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-600);
            border: 2px solid var(--primary-600);
        }

        .btn-outline:hover {
            background: var(--primary-600);
            color: white;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
            color: white;
            padding: 2rem 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            color: white;
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .btn-group {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== ACTIVITY FEED ===== */
        .activity-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--neutral-200);
        }

        .activity-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .activity-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary-200);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .activity-content {
            flex: 1;
        }

        .activity-content h4 {
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }

        .activity-content p {
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
            color: var(--neutral-600);
        }

        .activity-time {
            font-size: 0.75rem;
            color: var(--neutral-500);
        }

        /* ===== MEDIA QUERIES ===== */
        
        /* Small devices (larger phones, 400px and up) */
        @media (min-width: 400px) {
            body {
                font-size: 15px;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 1.9rem;
            }
        }

        /* Medium devices (tablets, 640px and up) */
        @media (min-width: 640px) {
            .container {
                max-width: 640px;
                padding: 0 1.5rem;
            }
            
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .hero {
                padding: 2.5rem 2rem;
            }
            
            .hero h1 {
                font-size: 2.1rem;
            }
        }

        /* Large devices (small laptops, 768px and up) */
        @media (min-width: 768px) {
            .container {
                max-width: 768px;
            }
            
            .navbar {
                padding: 0.75rem 1.5rem;
            }
            
            .menu-toggle {
                display: none;
            }
            
            .navbar-items {
                display: flex;
                align-items: center;
                gap: 1.25rem;
            }
            
            .sidebar {
                width: 240px;
                transform: translateX(0);
            }
            
            .main-content {
                margin-left: 240px;
                padding: 2rem 1.5rem;
            }
            
            .content-offset {
                padding-top: 70px;
            }
            
            .hero {
                text-align: left;
            }
            
            .btn-group {
                justify-content: flex-start;
            }
        }

        /* Extra large devices (laptops/desktops, 1024px and up) */
        @media (min-width: 1024px) {
            .container {
                max-width: 1024px;
            }
            
            .card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero {
                padding: 3rem 2.5rem;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
        }

        /* Extra extra large devices (large desktops, 1280px and up) */
        @media (min-width: 1280px) {
            .container {
                max-width: 1280px;
            }
            
            .card-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .hero h1 {
                font-size: 2.6rem;
            }
        }
  /* Ulandy Footer (Frame 2 style) */
.ulandy-footer {
  background: #0c1424;               /* deep navy */
  color: #c9d3e1;
  padding-top: 48px;
  border-top: 4px solid #2b57ff;     /* thin blue bar like in screenshot */
}
.ulandy-footer a { color: #c9d3e1; text-decoration: none; }
.ulandy-footer a:hover { color: #ffffff; }

.ulandy-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
}

.ulandy-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.ulandy-footer__about .ulandy-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}
.ulandy-footer__about-text {
  line-height: 1.6;
  max-width: 420px;
  margin: 8px 0 16px;
  color: #9fb0c6;
}

.ulandy-footer__social { display: flex; gap: 12px; }
.ulandy-footer__social-link {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  transition: transform .15s ease, background .15s ease;
}
.ulandy-footer__social-link:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.ulandy-footer__heading {
  font-weight: 600; color: #ffffff; font-size: 16px; margin: 4px 0 14px;
}
.ulandy-footer__links { display: grid; gap: 10px; }
.ulandy-footer__link { opacity: .85; }
.ulandy-footer__link:hover { opacity: 1; }

.ulandy-footer__bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ulandy-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.ulandy-footer__legal-link { opacity: .85; }
.ulandy-footer__legal-link:hover { opacity: 1; }
.ulandy-footer__copy { color: #8ea2bd; }

/* Responsive */
@media (max-width: 992px) {
  .ulandy-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .ulandy-footer__grid { grid-template-columns: 1fr; }
  .ulandy-footer__container { padding: 0 16px 20px; }
}
.hero-section {
    background: linear-gradient(135deg, #0b3a56, #062438);
    color: white;
    padding: 60px 30px;
    text-align: center;
    border-radius: 8px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 20px auto;
    color: #d1e7ff;
}

.hero-benefits {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.hero-benefits li {
    font-size: 16px;
    margin: 8px 0;
    text-align: left;
}

.hero-benefits li strong {
    color: #4A90E2;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-btn {
    padding: 14px 30px;
    margin: 10px;
    background-color: #4A90E2;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #357ABD;
}

.cta-btn.demo {
    background-color: #8e44ad;
}

.cta-btn.demo:hover {
    background-color: #7b3e8b;
}
/* General input field styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"] {
    width: 100%;
    padding: 14px 18px; /* Increased padding for better comfort */
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #ddd; /* Subtle border color */
    background-color: #f9f9f9;
    transition: all 0.3s ease; /* Smooth transition for focus and hover */
}

/* Hover effect */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover {
    border-color: #4A90E2; /* Slight color change on hover */
}

/* Focus effect */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #4A90E2; /* Highlight with a stronger color when focused */
    background-color: #ffffff; /* Slight background change on focus */
}

/* Placeholder text styling */
input::placeholder {
    color: #888; /* Subtle color for placeholder */
    font-style: italic;
}

/* Button styles (for form submission) */
button[type="submit"] {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(90deg, #4A90E2, #8e44ad); /* Gradient background */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #357ABD; /* Darker blue when hovered */
}
/* Navbar styles */
.navbar {
    background: linear-gradient(90deg, #0b3a56, #062438);
    padding: 15px 30px;
}

.navbar-brand {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.navbar-items {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-link {
    color: white; /* Ensure text color is white */
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #4A90E2; /* Hover color for better contrast */
}

/* Fix the button to make it stand out */
.navbar-items .btn {
    background: linear-gradient(90deg, #c0c3c7, #8e44ad);
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.navbar-items .btn:hover {
    background-color: #357ABD;
}
/* Sidebar Styling */
.inner-sidebar {
    background: #062438;
    color: #fff;
    width: 250px;
    height: 100vh;
    padding: 30px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-logo {
    margin-bottom: 30px;
}

.sidebar-logo .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo .logo i {
    font-size: 28px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-nav a {
    color: #d1e7ff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #4A90E2;
}
