:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0ea5e9;
    --accent: #f43f5e;
    --dark: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    /* Removed by Priyanshu */
    /* border-bottom: 1px solid var(--gray-200); */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-link {
   /* color: var(--gray-600) !important; */
   /* Added by Priyanshu */
   color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
  /*  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
  /* Added by Priyanshu */
  background: radial-gradient(circle at center, #064d2a 0%, #012313 50%, #000d06 100%);
    overflow: hidden;
    /* Added by Priyanshu */
    border: 1px solid;
border-left: none;
border-right: none;
    border-image: linear-gradient(102.05deg, #836dd6 40.6%, #367522 91.37%) 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Commented by Priyanshu */
 .btn-hero-primary {
    background: #fff;
    color: var(--primary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

/* Added by Priyanshu - Smooth Professional Version */

.hover1 {
display: inline-block;
position: relative;
overflow: hidden;
cursor: pointer;
font-weight: 600;
color: #ffffff;
padding: 17px 50px;
border-radius: 50px;
text-align: center;
text-decoration: none;

border: 1px solid transparent; /* Hidden initially */
z-index: 1;

transition: color 0.4s ease, border-color 0.4s ease;
}

/* Background Layer */
.hover1::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, #1d5e2f, #79d100);
border-radius: 50px;
z-index: -1;

transform: scaleX(1);
transform-origin: left;
transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

/* Hover - Smooth Wipe */
.hover1:hover::before {
transform: scaleX(0);
}

/* Show Border Only On Hover */
.hover1:hover {
color: #ffffff;
border-color: #711fe3;
}


/* Added by Priyanshu - Smooth Professional Version */

.hover2 {
display: inline-block;
position: relative;
overflow: hidden;
cursor: pointer;
font-weight: 600;
color: #ffffff;
padding: 17px 50px;
border-radius: 40px;
text-align: center;
text-decoration: none;
border: 1px solid #711fe3; 
background: transparent;
z-index: 1;
transition: color 0.4s ease, border-color 0.4s ease;
}

/* Background Layer */
.hover2::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(100.57deg, #3006a4 12.93%, #367522 121.02%);
border-radius: 40px;
z-index: -1;

transform: scaleX(0);
transform-origin: right;
transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

/* Hover - Fill Right to Left */
.hover2:hover::before {
transform: scaleX(1);
}

/* Hide Border on Hover */
.hover2:hover {
border-color: transparent;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.floating-card .card-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.floating-card .card-stat:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon.purple { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
.stat-icon.blue { background: rgba(14, 165, 233, 0.1); color: var(--secondary); }
.stat-icon.pink { background: rgba(244, 63, 94, 0.1); color: var(--accent); }
.stat-icon.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

.stat-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.stat-info p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.875rem;
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.brands-section p {
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(244, 63, 94, 0.1));
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
   /* color: var(--gray-900); */
   /* Added by Priyanshu */
   color: #ffffff;
    margin-bottom: 1rem;
}

.section-title-user {
    font-size: 2.5rem;
    font-weight: 800;
   /* color: var(--gray-900); */
   /* Added by Priyanshu */
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
 /*   color: var(--gray-500); */
 /* Added by Priyanshu */
 color: #ffffff;
}

/* Features Section */
.features-section {
  /*  background: #fff;  */
  /* Added by Priyanshu */
background: #0c0d0e;
  /* Added by Priyanshu */
  border: 1px solid;
border-left: none;
border-right: none;
    border-image: linear-gradient(102.05deg, #836dd6 40.6%, #367522 91.37%) 1;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.gradient-1 { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; }
.feature-icon.gradient-2 { background: linear-gradient(135deg, #0ea5e9, #06b6d4); color: #fff; }
.feature-icon.gradient-3 { background: linear-gradient(135deg, #f43f5e, #fb7185); color: #fff; }
.feature-icon.gradient-4 { background: linear-gradient(135deg, #22c55e, #4ade80); color: #fff; }
.feature-icon.gradient-5 { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #fff; }
.feature-icon.gradient-6 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: #fff; }

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-500);
    margin: 0;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark), var(--gray-800));
    padding: 80px 0;
      /* Added by Priyanshu */
      border: 1px solid;
border-left: none;
border-right: none;
    border-image: linear-gradient(102.05deg, #836dd6 40.6%, #367522 91.37%) 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  /*  background: var(--gray-50); */
  /* Added by Priyanshu */
  background: #00270c;
    /* Added by Priyanshu */
    border: 1px solid;
border-left: none;
border-right: none;
    border-image: linear-gradient(102.05deg, #836dd6 40.6%, #367522 91.37%) 1;
}

.pricing-card {
   /* background: #fff; */
   /* Added by Priyanshu */
   background: transparent;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
  /*  border: 2px solid var(--gray-200); */
  /* Added by Priyanshu */
  border: 2px solid #6366f1;          ;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
   /*  background: linear-gradient(180deg, rgba(99, 102, 241, 0.03), #fff); */
   /* Added by Priyanshu */
   background: transparent;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
  /*  color: var(--gray-700);  */
  /* Added by Priyanshu */
  color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
  /*  color: var(--gray-600); */
  /* Added by Priyanshu */
  color: #0ea5e9;
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 800;
   /* color: var(--gray-900); */
   /* Added by Priyanshu */
   color: #ffffff;
    line-height: 1;
}

.pricing-period {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
   /* color: var(--gray-600); */
   /* Added by Priyanshu */
   color: #859fc3;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 1rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pricing-outline {
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
}

.btn-pricing-outline:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    color: #fff;
}

/* CTA Section */
.cta-section {
   /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);  */
   /* Added by Priyanshu */
   background: #0b1918;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Added by Priyanshu */
    border: 1px solid;
border-left: none;
border-right: none;
    border-image: linear-gradient(102.05deg, #836dd6 40.6%, #367522 91.37%) 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
  /*  background: var(--dark); */
  /* Added by Priyanshu */
  background: radial-gradient(circle at center, #074b29 0%, #022e19 50%, #012e15 100%);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--primary);
}

.footer-desc {
    color: var(--gray-400);
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
  /*  border-top: 1px solid var(--gray-800); */
  /* Added by Priyanshu */
  border-top: 1px solid #526c98;
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title-user {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-illustration {
        margin-top: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-value {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/*help center*/
.support-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 560px;
    margin: 0 auto;
    color: var(--gray-800);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.support-card p {
    margin-bottom: 0.75rem;
}

.support-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/*User Documentation*/
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  /*  text-align: center; */
    margin:20px;
   /* align-items: center; */
    /* justify-content: center; */
    display: flex;
    flex-direction: column;
    flex-direction: column;
}

.hero-help-center {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex-direction: column;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
   /* max-width: 900px; 
    margin: 0 auto; */
    color: var(--gray-800);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: left;
}


.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
  /*  background: var(--dark); */
  /* Added by Priyanshu */
  background: radial-gradient(circle at center, #074b29 0%, #022e19 50%, #012e15 100%);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--primary);
}

.footer-desc {
    color: var(--gray-400);
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
  /*  border-top: 1px solid var(--gray-800); */
  /* Added by Priyanshu */
  border-top: 1px solid #526c98;
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.logoadmin {
height: 50px !important;
}