:root {
    /* FinTech Design System */
    --fintech-blue: #2563eb;
    --fintech-purple: #9333ea;
    --fintech-light-bg: #f3f6fc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(90deg, #2563eb, #9333ea);
    --gradient-hero: linear-gradient(135deg, #2563eb, #9333ea);
    --shadow-elegant: 0 1px 6px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(37, 99, 235, 0.1);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-color: #e2e8f0;
    --bg-secondary: #f8fafc;
    --blue: #2563eb;
    --purple: #9333ea;
    --light-bg: #f3f6fc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gradient: linear-gradient(90deg, #2563eb, #9333ea);
}

/* Button */
.Lets-connect-btn {
  font-family: 'Poppins', system-ui, sans-serif;
  display: inline-block;
  padding: 6px 14px;
  background: #1939d7;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

/* Overlay */
.Lets-connect-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal-box {
  background: linear-gradient(87deg, rgb(211 208 235), rgb(168 209 228 / 93%));
  width: 600px;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
  position: relative;
}

/* Close Icon */
.close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
}

/* Input fields */
.Lets-connect-input {
  font-family: 'Poppins', system-ui, sans-serif;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 15px;
}

.Lets-connect-submit-btn {
  font-family: 'Poppins', system-ui, sans-serif;
  width: auto;              /* shrink to text size */
  padding: 6px 14px;        /* small optional padding */
  background: #164ec4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  display: block;           /* allows centering */
  margin: 0 auto;           /* centers horizontally */
}

.Lets-connect-tittle {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;

}
.Lets-connect-description{
   font-family: 'Poppins', system-ui, sans-serif;
   font-size: 0.8rem;
  font-weight: 500;
}

.Lets-connect-textarea {
  font-family: 'Poppins', system-ui, sans-serif;
  width: 100%;
  height: 120px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  resize: vertical; /* allow user to expand if needed */
  margin-bottom: 18px;
}

.Lets-connect-success {
  font-family: 'Poppins', system-ui, sans-serif;
  margin-top: 15px;
  padding: 12px;
  background: #e6ffe6;
  color: #1a7f1a;
  border: 1px solid #48c048;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 40px;
    background: white;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10000;
}


.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 38px; /* adjust as needed */
  width: auto;
  border-radius: 0.5rem; /* optional for rounded edges */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-icon {
    background: var(--blue);
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 8px 12px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
}

/* Make dropdown behave like other nav links */
.nav-item-with-dropdown {
  position: relative;
  /* display: flex;            
  align-items: center; */
  display: block;
}

.nav-item-with-dropdown > a {
  padding: 6px 12px;
  border-radius: 8px;
  transition: 0.2s;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}

/* Apply active state to the main link */
.nav-item-with-dropdown > a.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

/* Dropdown itself */
.nav-item-with-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 0;
  width: max-content;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-item-with-dropdown .dropdown-menu a {
  display: block;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
}

.nav-item-with-dropdown .dropdown-menu a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}


/* Open ONLY the direct dropdown of the hovered item */
.nav-item-with-dropdown:hover > .dropdown-menu {
  display: block;
  padding:5px;
}


/* Nested ECO Analytics dropdown */
.nested-dropdown {
  position: relative;
  display: block;
}

.nested-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px;
  border: 0;
  border-radius: 25px;
  background: transparent;
  color: #333;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}

.nested-dropdown-trigger i {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.nested-dropdown-trigger:hover,
.nested-dropdown-trigger:focus-visible,
.nested-dropdown-trigger.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  outline: none;
}

.nav-item-with-dropdown .nested-dropdown > .nested-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  margin: 0;
  padding: 5px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 1001;
}

.nav-item-with-dropdown .nested-dropdown > .dynamic-agent-menu {
  min-width: 0;
  width: max-content;
}

.dynamic-agent-menu a {
  padding: 6px 10px;
}

.nested-dropdown:hover > .nested-dropdown-menu,
.nested-dropdown:focus-within > .nested-dropdown-menu {
  display: block;
}

.nested-dropdown:hover > .nested-dropdown-trigger i,
.nested-dropdown:focus-within > .nested-dropdown-trigger i {
  transform: translateX(2px);
}
.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 auto;           /* 🔥 centers them perfectly */
    position: relative;
    left: 0px;               /* optional: micro centering tweak */
}


.nav-links a {
    font-size: 1rem;
    /* text-transform: uppercase; */
    padding: 6px 12px;
    border-radius: 8px;
    transition: 0.2s;
    font-weight: 600;
    font-family: 'Poppins', system-ui, sans-serif;

}

.nav-links a.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    width: 200px;
}

.nav-profile {
    display: flex;
    flex-direction: column; /* keep column to have org/department below */
    align-items: center;   /* center horizontally */
    font-size: 1rem;
    color: #333;
    position: relative;    /* for dropdown positioning */
    gap: 2px;              /* space between username and org/department */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.hidden-btn {
    display: none !important;
}


.user-main {
    display: flex;          /* icon + username in one line */
    align-items: center;
    gap: 5px;               /* spacing between icon and username */
}

.user-name {
    color: #070707;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    font-size: 15px;    
    font-weight:500;        
    font-family: 'Poppins', system-ui, sans-serif;
}

.user-type {
    color: #070707;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    font-size: 15px; 
    text-transform: capitalize;   
    font-weight:500;        
    font-family: 'Poppins', system-ui, sans-serif;
}

.user-org-dept {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0a0a0a;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.nav-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

/* === Dropdown Styling === */
.user-dropdown {
  display: none;
  position: absolute;
  top: 25px; /* adjust based on your navbar height */
  right: 0px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1000;
  flex-direction: column;

}

/* Links inside dropdown */
.user-dropdown a {
  padding: 8px 10px;
  text-decoration: none;
  color: #0a0a0a;
  font-weight: 550;
  font-size: 1rem;
  transition: background 0.50s;
  display: absolute;
  font-family: 'Poppins', system-ui, sans-serif;
  border-radius: 25px;
}

.user-dropdown a:hover {
  background-color: #f3f5f7;
}

/* Show dropdown on hover */
.nav-profile:hover .user-dropdown {
  display: flex;
}

/* Optional hover effect for icon */
.nav-icons-row:hover .nav-icon {
  color: var(--dark-blue);
  transform: scale(1.1);
  transition: all 0.2s ease;
}


/* Section wrapper */
.image-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  overflow: hidden;
  gap: 2rem;
}

/* Left Text Section */
.text-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers vertically */
  align-items: flex-start; /* aligns items to the left */
  text-align: left; /* ensures text aligns left */
}

.text-content p {
  font-size: 1rem;
  color: #0a0a0a;
  max-width: 100%;
  line-height: 1.5;
}

/* Right Image Section */
.image-container {
  flex: 0.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: auto;
  height: 250px;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 1s ease-in-out;
}

.footer {
    background-color: #0E1629;
    color: white;
    padding: 30px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 14px;
  position: relative;
  z-index: 2000; /* ensure footer sits above sidebar scrollbars */
}

.footer-container {
    font-family: 'Poppins', system-ui, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-column.wide {
    flex: 2 1 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-box {
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.footer h2 {
    margin: 0;
    font-size: 20px;
}

.tagline {
    margin: 0;
    font-size: 13px;
    color: #b0b8d1;
}

.description-message {
    margin: 12px 0 20px;
    color: #ccc;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #bbb;
    line-height: 1.8;
}

.footer-column h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 550;
    color: white;
    font-family: 'Poppins', system-ui, sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.subscribe-section {
    font-family: 'Poppins', system-ui, sans-serif;
    max-width: 1200px;
    margin: 40px auto 0;
    border-top: 1px solid #2c3a59;
    padding-top: 30px;
    text-align: left;
}

.subscribe-section h3 {
    font-family: 'Poppins', system-ui, sans-serif;
    margin-bottom: 8px;
    font-size: 16px;
    color: white;
}

.subscribe-section p {
    font-family: 'Poppins', system-ui, sans-serif;
    margin-bottom: 16px;
    color: #bbb;
}

.subscribe-form {
    font-family: 'Poppins', system-ui, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 500px;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    background-color: #1f2a40;
    color: white;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: #2563eb;
    color: #333;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.subscribe-form button:hover {
    background-color: #1e4dc3;
}
.user-type,
.user-organization{
  text-transform: capitalize;
  text-transform: capitalize;
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.toggle-btn {
    position: relative;
}

.disabled-btn {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tooltip */
.disabled-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100000;
}

/* Show tooltip on hover */
.disabled-btn:hover::after {
    opacity: 1;
}


.notification-wrapper{
    position:relative;
    margin-right:20px;
}

.notification-btn{
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    cursor:pointer;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.25s;
}

.notification-btn:hover{
    background:#f2f5fb;
}

.notification-btn i{
    color:#243b63;
    font-size:20px;
}

.notification-count{
    position:absolute;
    top:2px;
    right:2px;
    min-width:18px;
    height:18px;
    background:#e53935;
    color:#fff;
    border-radius:50%;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 4px;
    font-weight:600;
}

.notification-dropdown{
    position:absolute;
    top:48px;
    right:0;
    width:360px;
    max-height:calc(100vh - 72px);
    background:#fff;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
    display:none;
    flex-direction:column;
    overflow:hidden;
    z-index:9999;
}

.notification-dropdown.show{
    display:flex;
}

#notificationList{
    min-height:0;
    overflow-y:auto;
}

.notification-header{
    padding:14px 18px;
    font-weight:600;
    border-bottom:1px solid #ececec;
}

.notification-empty{
    padding:40px 20px;
    text-align:center;
    color:#888;
}


.notification-item{
    padding:14px 18px;
    border-bottom:1px solid #eee;
    cursor:pointer;
    transition:.25s;
}

.notification-item:hover{
    background:#f8fbff;
}

.notification-title{
    font-weight:600;
    color:#243b63;
    margin-bottom:6px;
}

.notification-message{
    font-size:13px;
    color:#555;
    line-height:1.4;
}

.notification-time{
    margin-top:8px;
    font-size:11px;
    color:#999;
}

.notification-item.unread{
    background:#eef6ff;
}

.notification-footer{
    text-align:center;
    padding:14px;
    font-weight:600;
    color:#0d6efd;
    cursor:pointer;
    border-top:1px solid #eee;
}

.notification-footer:hover{
    background:#f5f7fb;
}

/* ===============================
   View All Notifications Button
=============================== */

.notification-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #2563eb;
    color: #ffffff;

    padding: 9px 18px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: background 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;

    cursor: pointer;
}

.notification-footer a:hover {
    background: #1d4ed8;
    color: #ffffff;

    transform: translateY(-1px);

    box-shadow: 0 5px 12px rgba(37, 99, 235, 0.25);
}

.notification-footer a:active {
    transform: translateY(0);
}
