:root {
    --navy: #0A2540;
    --cyan: #00B8D9;
    --emerald: #00C48C;
    --cyan-dim: rgba(0,184,217,0.15);
    --emerald-dim: rgba(0,196,140,0.12);
  }

  * { box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #1a1a2e;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, .syne { font-family: 'Roboto', sans-serif; }

  /* ── NAVBAR ── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: all 0.4s ease;
  }
  #navbar{
    
    /* background:#1a1a2e; */
  }

  #navbar:not(.scrolled) #mobile-menu.open{
       /* background:#1a1a2e; */
       background: #1a1a2e;
    margin-left: -15px;
    box-shadow: #000000 0px 14px 60px;
    margin-right: -15px;
    padding: 0 20px 19px;
    border-radius: 10px;
    border: 1px solid #464646;
  }
  #navbar:not(.scrolled) #mobile-menu a{
    color:#fff;
    
  }

  #navbar.scrolled .menuitems a{
    color:#1a1a2e !important;
  }
  #navbar.scrolled .menuitems button{
    color:#1a1a2e !important;
  }
  
  #navbar.scrolled {
    /* background: rgba(10,37,64,0.97); */
    background: #fff;
    backdrop-filter: blur(16px);
    /* box-shadow: 0 1px 0 rgba(0,184,217,0.2); */
    box-shadow: 0 4px 5px rgb(0 0 0 / 20%);
  }

   #navbar.scrolled .logo_text{
    color:#1a1a2e;
   }
       #navbar.scrolled #mobile-menu a{
    color:#1a1a2e;
    
  }
         #navbar.scrolled #mobile-menu button{
    color:#1a1a2e;
    
  }
  
  .mp-hero{
    padding-top: 100px;
    margin-top: 60px;    
    
  }

  @media (max-width: 768px){
      .mp-hero{
    padding-top: 0px;
    margin-top: 0px;    
    
  }


  }

  /* ── HERO ── */
  .hero-bg {
    /* background: linear-gradient(135deg, #050f1c 0%, #0A2540 40%, #0d3660 70%, #092035 100%); */
        background-image: linear-gradient(55deg, #0250c5 0%, #a73fd4 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    /* background-image:
      linear-gradient(rgba(0,184,217,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,184,217,0.07) 1px, transparent 1px); */
    /* background-size: 60px 60px; */
    position: absolute; inset: 0;
    background-image: url('./assets/bg.png');
        /* position: relative; */
    overflow: hidden;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .hero-grid::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: linear-gradient(55deg, #0250c5 0%, #a73fd4 100%);
    opacity: 0.9;
}
  .hero-glow-1 {
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,184,217,0.2) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
  }
  .hero-glow-2 {
    position: absolute; bottom: -80px; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,196,140,0.15) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite reverse;
  }
  @keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
  }

  /* ── DASHBOARD MOCKUP ── */
  .dash-card {
    background: rgb(0 0 0 / 8%);
    /* border: 1px solid rgba(0,184,217,0.25); */
    border-radius: 12px;
    backdrop-filter: blur(12px);
    padding: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  .dash-card:hover { transform: translateY(-4px); border-color: rgba(0,184,217,0.6); }

  .float-1 { animation: float 5s ease-in-out infinite; }
  .float-2 { animation: float 6.5s ease-in-out infinite reverse; }
  .float-3 { animation: float 4.5s ease-in-out infinite 1s; }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .bar { border-radius: 4px; transition: height 0.5s ease; }

  /* ── MODULE CARDS ── */
  .module-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
  }
  .module-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(10,37,64,0.12), 0 0 0 1px rgba(0,184,217,0.2);
    border-color: transparent;
  }
  .module-card:hover::before { transform: scaleX(1); }

  .icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
  }

  /* ── PROCESS STEPS ── */
  .step-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
  }
  .step-card:hover {
    box-shadow: 0 20px 50px rgba(10,37,64,0.1);
    transform: translateY(-4px);
  }
  .step-num {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
  }
  .connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    margin-top: -20px;
    position: relative;
    top: 55px;
  }

  /* ── WHY CARDS ── */
  .why-card {
    background: linear-gradient(160deg, #0f2d50, #0A2540);
    border: 1px solid rgba(0,184,217,0.2);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .why-card::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(0,184,217,0.12), transparent 70%);
  }
  .why-card:hover {
    border-color: rgba(0,196,140,0.4);
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    transform: translateY(-4px);
  }

  /* ── CTA ── */
  .cta-bg {
    background: linear-gradient(135deg, #0A2540 0%, #073660 50%, #0a1f38 100%);
    position: relative; overflow: hidden;
  }
  .cta-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(0,184,217,0.04) 0px, rgba(0,184,217,0.04) 1px, transparent 1px, transparent 40px),
      repeating-linear-gradient(-45deg, rgba(0,196,140,0.04) 0px, rgba(0,196,140,0.04) 1px, transparent 1px, transparent 40px);
  }
  @keyframes cta-shift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 80px 80px, 80px 80px; }
  }
  .cta-pattern { animation: cta-shift 8s linear infinite; }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--cyan), #0090b8);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    border: none; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,184,217,0.45);
    background: linear-gradient(135deg, #00cef5, var(--cyan));
  }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
  }

  .btn-emerald {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--emerald), #009e72);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    border: none; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
  }
  .btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,196,140,0.45);
  }

  /* ── BADGE ── */
  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    /* background: rgba(0,184,217,0.12);
    color: var(--cyan); */
        background: rgb(255 255 255 / 12%);
    color: #ffffff;
    /* border: 1px solid rgba(0,184,217,0.3); */
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 16px;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blink 1.5s infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ── STAT PILL ── */
  .stat-pill {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 18px;
    backdrop-filter: blur(8px);
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── MOBILE NAV ── */
  #mobile-menu { 
    display: none; 
    /* background: #616161; */
  }
  #mobile-menu.open { display: block; }
  .scrolled #hamburger{
    color: #000;
  }
  #mobile-menu a{
    color: #000;
  }

  /* ── SECTION LABEL ── */
  .section-label {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    border-radius: 2px;
  }

  /* ── TICKER LINE ── */
  .ticker-wrap { overflow: hidden; }
  .ticker-track {
    display: flex; gap: 60px; width: max-content;
    animation: ticker 22s linear infinite;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── PROGRESS BARS ── */
  .prog-fill {
    height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    animation: prog-grow 2s ease forwards;
    transform-origin: left;
    transform: scaleX(0);
  }
  @keyframes prog-grow {
    to { transform: scaleX(1); }
  }



  
  /* ── CONTACT INFO CARD ── */
  .info-card {
    background: white;
    /* border: 1px solid rgba(0,184,217,0.2); */
    border-radius: 20px;
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .info-card::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg,#0250c5,#a73fd4);
  }
  .contact-item {
    display:flex; align-items:flex-start; gap:16px;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    transition: all .3s ease;
  }
  .contact-item:last-child { border-bottom:none; padding-bottom:0; }
  .contact-item:hover .ci-icon { transform:scale(1.1); }
  .ci-icon {
    width:44px; height:44px; border-radius:12px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-size:17px; transition:transform .3s ease;
  }

  /* ── FORM CARD ── */
  .form-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 24px 60px rgba(10,37,64,0.1);
    position: relative;
    overflow: hidden;
  }
  .form-card::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg,#0250c5,#a73fd4);
  }

  /* ── FORM INPUTS ── */
  .form-group { margin-bottom:22px; }
  .form-label {
    display:block; font-family:'Syne',sans-serif; font-weight:600;
    font-size:13px; color:#374151; margin-bottom:7px;
    letter-spacing:.02em;
  }
  .form-label span { color:#e53e3e; margin-left:2px; }
  .form-input {
    width:100%; padding:13px 16px;
    border:1.5px solid #e2e8f0; border-radius:10px;
    font-family:'DM Sans',sans-serif; font-size:15px; color:#1a1a2e;
    background:#f9fafb;
    transition:all .3s ease; outline:none;
  }
  .form-input:focus {
    border-color:var(--cyan);
    background:#fff;
    box-shadow:0 0 0 3px rgba(0,184,217,.12);
  }
  .form-input.error {
    border-color:#e53e3e;
    background:#fff5f5;
    box-shadow:0 0 0 3px rgba(229,62,62,.1);
  }
  .form-input.success {
    border-color:var(--emerald);
    background:#f0fdf9;
  }
  textarea.form-input { resize:vertical; min-height:130px; line-height:1.6; }
  .field-error {
    display:none; align-items:center; gap:5px;
    color:#e53e3e; font-size:12px; margin-top:5px;
    font-weight:500;
  }
  .field-error.show { display:flex; }

  /* ── SUBMIT BUTTON ── */
  .btn-submit {
    width:100%; padding:15px 24px; border:none; border-radius:10px; cursor:pointer;
    background:linear-gradient(55deg,#0250c5,#a73fd4);
    color:#fff; font-family:'Syne',sans-serif; font-weight:700;
    font-size:16px; letter-spacing:.02em;
    transition:all .3s ease; position:relative; overflow:hidden;
    display:flex; align-items:center; justify-content:center; gap:10px;
  }
  .btn-submit:hover:not(:disabled) {
    transform:translateY(-2px);
    box-shadow:0 16px 40px rgba(2,80,197,.4);
  }
  .btn-submit:disabled { opacity:.7; cursor:not-allowed; transform:none; }
  .btn-submit .spinner {
    display:none; width:18px; height:18px; border:2px solid rgba(255,255,255,.3);
    border-top-color:#fff; border-radius:50%;
    animation:spin .7s linear infinite;
  }
  .btn-submit.loading .spinner { display:block; }
  .btn-submit.loading .btn-text { opacity:.7; }
  @keyframes spin { to { transform:rotate(360deg); } }

  /* ── TOAST ── */
  #toast-container {
    position:fixed; top:24px; right:24px; z-index:9999;
    display:flex; flex-direction:column; gap:12px;
    pointer-events:none;
  }
  .toast {
    display:flex; align-items:flex-start; gap:12px;
    padding:16px 20px; border-radius:14px; min-width:320px; max-width:420px;
    pointer-events:all;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
    animation:toast-in .4s cubic-bezier(.34,1.56,.64,1) forwards;
    position:relative; overflow:hidden;
  }
  .toast.removing { animation:toast-out .35s ease forwards; }
  .toast-success {
    background:#fff; border:1.5px solid #00C48C;
    border-left:4px solid #00C48C;
  }
  .toast-error {
    background:#fff; border:1.5px solid #e53e3e;
    border-left:4px solid #e53e3e;
  }
  .toast-icon {
    width:36px; height:36px; border-radius:10px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-size:16px;
  }
  .toast-success .toast-icon { background:rgba(0,196,140,.12); color:#00C48C; }
  .toast-error   .toast-icon { background:rgba(229,62,62,.12);  color:#e53e3e; }
  .toast-title {
    font-family:'Syne',sans-serif; font-weight:700; font-size:14px; color:#1a1a2e;
  }
  .toast-msg { font-size:13px; color:#6b7280; margin-top:2px; line-height:1.5; }
  .toast-close {
    position:absolute; top:10px; right:12px;
    background:none; border:none; cursor:pointer; color:#9ca3af;
    font-size:14px; transition:color .2s;
  }
  .toast-close:hover { color:#1a1a2e; }
  .toast-progress {
    position:absolute; bottom:0; left:0; height:3px;
    animation:progress-bar 5s linear forwards;
  }
  .toast-success .toast-progress { background:var(--emerald); }
  .toast-error   .toast-progress { background:#e53e3e; }
  @keyframes toast-in {
    from { opacity:0; transform:translateX(40px) scale(.95); }
    to   { opacity:1; transform:translateX(0)   scale(1); }
  }
  @keyframes toast-out {
    to { opacity:0; transform:translateX(40px) scale(.9); }
  }
  @keyframes progress-bar {
    from { width:100%; } to { width:0%; }
  }

  /* ── MAP SECTION ── */
  .map-bg {
    background:#f0f4f8;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    min-height:340px;
    display:flex; align-items:center; justify-content:center;
    border:1px solid #e2e8f0;
  }
  .map-grid {
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(10,37,64,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,37,64,.06) 1px, transparent 1px);
    background-size:40px 40px;
  }
  .map-pin {
    position:absolute; display:flex; flex-direction:column; align-items:center;
    cursor:pointer;
  }
  .pin-dot {
    width:16px; height:16px; border-radius:50%;
    background:linear-gradient(135deg,#0250c5,#a73fd4);
    box-shadow:0 0 0 6px rgba(2,80,197,.2);
    animation:pin-pulse 2s ease-in-out infinite;
  }
  .pin-label {
    margin-top:8px; background:#0A2540; color:#fff;
    font-family:'Syne',sans-serif; font-size:11px; font-weight:600;
    padding:4px 10px; border-radius:6px; white-space:nowrap;
  }
  @keyframes pin-pulse {
    0%,100%{ box-shadow:0 0 0 6px rgba(2,80,197,.2); }
    50%    { box-shadow:0 0 0 14px rgba(2,80,197,.05); }
  }
  .map-india-text {
    font-family:'Syne',sans-serif; font-size:60px; font-weight:800;
    color:rgba(10,37,64,.05); user-select:none; position:absolute;
    top:50%; left:50%; transform:translate(-50%,-50%);
    white-space:nowrap;
  }

  /* ── CTA ── */
  .cta-bg {
    background:linear-gradient(135deg,#0A2540 0%,#073660 50%,#0a1f38 100%);
    position:relative; overflow:hidden;
  }
  #contact{
        background: #f7f9fc;
  }

  @keyframes cta-shift {
    0%  { background-position:0 0,0 0; }
    100%{ background-position:80px 80px,80px 80px; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity:0; transform:translateY(28px); transition:all .7s cubic-bezier(.16,1,.3,1); }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .reveal-delay-1 { transition-delay:.1s; }
  .reveal-delay-2 { transition-delay:.2s; }
  .reveal-delay-3 { transition-delay:.3s; }

  /* ── MISC ── */
  @media(max-width:640px) {
    .form-card { padding:28px 20px; }
    .info-card  { padding:28px 22px; }
    .toast { min-width:280px; }
  }

  /* footer */

  .footerDesign{
    position: relative;
        background-image: linear-gradient(55deg, #0250c5 0%, #a73fd4 100%);
  }

  
  .footerDesign .cta-pattern{
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgb(255 255 255 / 8%) 0, rgba(0, 184, 217, .04) 1px, #ffffff00 1px, #ffffff03 40px), repeating-linear-gradient(-45deg, rgb(255 255 255 / 7%) 0, rgb(0 196 140 / 0%) 1px, transparent 1px, transparent 40px);
    animation: cta-shift 8s linear infinite;
  }

  .shadow-card{
        margin-bottom: 30px;
    background: #fff;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px 0px 30px 0px;
  }
  .footerBg{
        
    position: absolute;
    inset: 0;
    background-image: url(./assets/bg.png);

    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .footerBg::before {
    /* position:absolute; 
    content: "";
    inset:0;
    background-image:
      repeating-linear-gradient(45deg,rgba(0,184,217,.04) 0,rgba(0,184,217,.04) 1px,transparent 1px,transparent 40px),
      repeating-linear-gradient(-45deg,rgba(0,196,140,.04) 0,rgba(0,196,140,.04) 1px,transparent 1px,transparent 40px);
    animation:cta-shift 8s linear infinite; */

        position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: linear-gradient(55deg, #0250c5 0%, #a73fd4 100%);
    opacity: 0.9;
  }

  .pos-re{
        position: relative;
    z-index: 1;
  }

  /* Loader */

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #e5e5e5;
    border-top: 5px solid #2563eb; /* loader color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


.module-chart .dash-card{
  padding: 12px 20px !important;  
}
.bl-pad-5{
  padding: 0 0 5px 5px;
}
.footer-logo{      
    background: white;
    padding: 3px 1px 3px 1px;
    width: 40px;
    border-radius: 7px;
}

/* #d43f8d */
/* #a73fd4 */


#mobile-submenu{
  a{
    display: inline-block;
    width: 100%;
        padding: 8px 5px;
  }
}

 .logo-img{
    width: 50px;
    background: white;
    padding: 3px 0px 3px 1px;
        border-radius: 7px !important;
    
 }