/* =====================================
   Brivy iChat – Simple Theme Customization
   ===================================== */

/* Primary Brand Color */
:root {
    --primary-color: #5b8def; /* You can replace this with your brand tone */
}

/* Navbar Styling */
.ud-header {
    background: linear-gradient(90deg, var(--primary-color), #96a2ff) !important;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.ud-header a {
    color: #fff !important;
    font-weight: 500;
}
.ud-header a:hover {
    opacity: 0.85;
}

/* Hero or Feature Section */
.ud-about-wrapper {
    background: linear-gradient(180deg, #eef5ff 0%, #d9e6ff 100%) !important;
    border-radius: 20px;
    padding: 60px 0;
    color: #1a2238;
}
.ud-about-wrapper h2, .ud-about-wrapper h3 {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color) !important;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #4a79d6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(91,141,239,0.3);
}

/* Cards and Sections */
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Footer */
.footer {
    background: #0e1525;
    color: #dbe4ff;
    padding: 50px 0;
    text-align: center;
}
.footer a {
    color: #96a2ff;
}
.footer a:hover {
    color: #fff;
}

/* Smooth animation for hover effects */
* {
    transition: all 0.25s ease-in-out;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .ud-about-wrapper { padding: 40px 20px; }
  .btn-primary { padding: 10px 20px; }
}