html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  border: 0;
  outline: 0;
}

.header {
    height: auto;
    position: relative;
    padding: 20px 0px 21px 0px;
    background: #0B2984;
        border-bottom: 1px solid #fff;
    max-width: 100%;
}

.header-search img.img-fluid {
    padding: 0 15px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header-inner img.img-fluid {
    max-width: 200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: DMSans-9ptRegular;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
  min-height: 100vh;
  color: #333;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;

}

/* Sidebar */
.sidebar {
  width: 60px;
  background: #fff;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}

.sidebar-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #2699FB;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #2699FB;
}

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.2);
  color: #2699FB;
}

.sidebar-item svg {
  width: 20px;
  height: 20px;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #0B2984;
  display: flex;
}

.cards-row {
  display: flex;
  gap: 10px;
  align-items: flex-start !important;
  margin-bottom: 20px;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.card.large .card-header {
    padding: 17px 17px 0 !important;
}

.card.large {
 width: 300px;
    height: auto;
    margin: 0;
    padding: 0;
          border: 0;
}

.upper-tabs .card-header {
    padding-left: 0 !important;
    padding-bottom: 7px !important;
}
.card-header {
display: flex
;
    padding: 0.5rem 10px 4px !important;
    margin-bottom: 0;
    border: 0 !important;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: #fff !important;
}

.card-header h3 {
 font-size: 19px;
    font-weight: 600;
    color: #2699FB;
    margin-bottom: 4px;
    font-family: 'DMSans18pt-Medium';
}

.card-subtitle {
  font-size: 12px;
  color: #2699FB;
    font-family: 'DMSans18pt-Bold';
}

.card-actions {
  display: flex;
  gap: 8px;
position: relative;
}

.icon-settings {
  width: 20px;
  height: 20px;
  color: #2699FB;
  cursor: pointer;
  transition: color 0.2s ease;
}

.card-actions img {
    height: 18px;
}

.value-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 39px;
    top: 10px;
}

.card-value {
font-size: 28px;
    font-weight: 700;
    color: #2699FB;
    margin-bottom: 0px;
    font-family: 'DMSans18pt-Black';
}

.card-value.green {
  color: #05e540;
}

.cards-row-earn .card .card-value.green {
    padding-left: 10px;
}

.card-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  margin-bottom: 0px;
}

.card-change.positive {
    color: #05E540;
    font-family: 'DMSans18pt-Bold';
}

.card-change.negative {
      color: #f0142f;
    font-family: 'DMSans18pt-Bold';
}

.card-change svg {
    display: none;
}

.change-text {
      color: #7e84a3;
    margin-left: 4px;
    font-size: 12px;
    width: 38%;
    font-family: 'DMSans18pt-Regular';
}

.mini-chart img.img-fluid {
    height: 50px;
}

/* Mini Charts */
.mini-chart {
    height: 50px;
}

.upper-tabs .card {
    padding: 10px;
    width: 301px;
    border-radius: 8px;
}
.upper-tabs {
    display: flex;
    gap: 10px;
}

.cards-row-earn .card {
    margin-bottom: 20px;
    padding: 0;
    height: 244px;
    margin-top: 0;
    position: relative;
    overflow: visible;
}

.mini-chart.green {
  color: #10b981;
}

.mini-chart.yellow {
  color: #f59e0b;
}

.mini-chart.blue {
  color: #3b82f6;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

/* Bar Chart */
.bar-chart {
margin-bottom: 40px;
    padding: 35px 20px 0;
}

.bar-chart-container img {
width: 290px;
    padding: 15px 5px;
}

.bar-chart-container {
  display: flex;
  align-items: end;
  align-items: center;
    justify-content: center;
  margin-bottom: 10px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, #3b82f6, #60a5fa);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}


.chart-stats {
    display: flex;
    gap: 70px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.stat-value {
font-size: 15px;
    font-weight: 700;
    color: #05e540;
    font-family: 'DMSans18pt-Medium';
    line-height: 2.5;
}

.stat-label {
font-size: 13px;
    color: #2699FB;
    font-family: 'DMSans18pt-Regular';
}

/* Pie Chart */
.pie-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 35px;
}

.pie-chart svg {
  width: 100%;
  height: 100%;
}

.pie-chart-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pie-label {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
}

.legend {
 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 42px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2699FB;
    font-family: 'DMSans18pt-SemiBold';
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* Area Chart */
.area-chart {
  height: 120px;
  margin-bottom: 10px;
}

.area-chart svg {
  width: 100%;
  height: 100%;
}

/* Help Popup */
.help-popup {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  padding: 16px;
  width: 200px;
  font-size: 12px;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.popup-content p {
  margin-bottom: 4px;
}

.popup-value {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 12px;
}

/* Chart Footer */
.chart-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cards-row .card.large:nth-of-type(2) {
    height: 510px;
}

.chart-nav svg {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.nav-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  cursor: pointer;
}

.dot.active {
  background: #3b82f6;
}

/* Form Styles */
.form-card {
  min-height: 400px;
}

.data-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-input,
.form-select {
      padding: 12px;
    border: 1px solid #5BB1F8;
    font-size: 15px;
    transition: border-color 0.2s 
ease;
    height: 45px;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-input.error {
  border-color: #ef4444;
}

.error-message {
font-size: 13px;
    color: #F0232F;
    font-family: 'DMSans18pt-Bold';
}

.form-actions {
  display: flex;
  gap: 12px;
}

.btn-secondary {
  flex: 1;
  padding: 12px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.form-status {
  display: flex;
  gap: 20px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.status-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 2px;
}

.status-icon.blue {
  background: #3b82f6;
  color: white;
}

.status-icon.green {
  background: #10b981;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-container {
    max-width: 100%;
  }
  
  .cards-row {
    grid-template-columns: unset !important;
  }
  
  .card.large {
    grid-column: span 1;
  }
  
  .main-content {
    padding: 15px;
  }
  
  .sidebar {
    width: 50px;
  }
  
  .sidebar-item {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 16px;
  }
  
  .card-value {
    font-size: 24px;
  }
  
  .chart-stats {
    gap: 20px;
  }
  
  .legend {
    grid-template-columns: 1fr;
    gap: 22px !important;
  }
}

.area-chart {
  position: relative;
    border-radius: 10px;
}

.area-chart .chart-image {
     position: absolute;
    top: 77px;
    left: 0;
    width: 100%;
    min-height: 160px;
    object-fit: revert;
    z-index: 1;
    opacity: 0.9;
}

.cards-row-earn .chart-labels {
    padding: 0 10px;
}

.chart-labels {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  color: #2699fb;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}

.card-popup img {
    position: relative;
    z-index: 99999;
    width: 88%;
    height: auto;
}


.cards-row-earn {
    width: 305px;
}

.card-popup {
      left: -67px;
    position: absolute;
    top: -122px;
    right: 0;
    z-index: 10;
    width: 172px;
    border-radius: 8px;
}

.card.large .bar-chart .chart-labels {
position: relative;
    display: flex;
    gap: 0px;
    left: 3px;
    top: 1px;
    font-family: 'DMSans18pt-Light';
    font-size: 10px;
}


.chart-footer {
    top: 1px;
    background: #2699FB;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 301px;
    position: relative;
    left: -1px;
}

.footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-icon:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer-icon.active {
  color: #fff;
}


.pie-chart img {
    width: 252px;
}


.checkbox-container {
  display: flex;
  gap: 53px;
    align-items: center;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Common label styling */
.checkbox-square, .checkbox-round {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #2196f3;
  user-select: none;
}

.checkbox-square input,
.checkbox-round input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Label text */
.label-text {
  margin-left: 8px;
}

/* === Square Checkbox === */
.checkbox-square .checkmark {
  height: 24px;
  width: 24px;
  border: 2px solid #a8d2ff;
  background-color: white;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.checkbox-square input:checked ~ .checkmark {
  background-color: #2196f3;
  border-color: #2196f3;
}

.checkbox-square .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-square input:checked ~ .checkmark::after {
  display: block;
}

/* === Round Checkbox === */
.checkbox-round .checkmark {
  height: 24px;
  width: 24px;
  border: 2px solid #a8d2ff;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.checkbox-round input:checked ~ .checkmark {
  background-color: #00e676;
  border-color: #00e676;
}

.checkbox-round .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.checkbox-round input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-container label.checkbox-round {
    display: flex;
    gap: 10px;
}

.sidebar-item a {
    color: #05e540;
}

.card.form-card {
    padding: 0;
    min-height: auto !important;
}

.card.form-card .card-header {
    padding: 20px 10px 11px !important;
}

.card.form-card .form-group {
    padding: 10px 10px 0;
}

.card.form-card .form-group select.form-select {
    border: 1px solid #5BB1F8 !important;
    color: #5bb1f8;
}

.form-group.custom-selects {
    padding-bottom: 58px !important;
}

.form-group.checkboxes {
    padding-top: 20px !important;
}



/*///mobile///*/

/* Add these responsive styles at the end of your existing CSS */

/* Mobile Responsive Styles (320px - 768px) */
@media (max-width: 768px) {
  /* Header adjustments */
  .header {
    padding: 15px 0;
  }
  
  .header-inner {
    flex-wrap: wrap;
    gap: 1px;
  }
  
  .header-inner img.img-fluid {
    max-width: 150px;
  }
  
  .header-search {
    display: flex;
            gap: 10px;
        padding-top: 11px;
  }
  
  .header-search img.img-fluid {
    padding: 0 8px;
    height: 20px;
  }
  
  /* Main layout adjustments */
  .dashboard-container {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
    overflow-x: auto;
    gap: 10px;
  }
  
  .sidebar-item {
    min-width: 40px;
    flex-shrink: 0;
  }
  
  .main-content {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }
  
  /* Cards layout adjustments */
  .cards-row {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .upper-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .upper-tabs .card,
  .card.large,
  .cards-row-earn .card {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .cards-row-earn {
    width: 100%;
  }
  
  /* Card content adjustments */
  .card-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  
  .card-actions {
    align-self: flex-end;
  }
  
  .card-value {
    font-size: 28px;
  }
  
  /* Chart adjustments */
  .bar-chart-container img,
  .pie-chart img {
    max-width: 100%;
    height: auto;
  }
  
  .bar-chart-container img {
    width: 60%;
  }
  

  @media (max-width: 425px) {
  .card-popup {
    left: -47px;
    position: absolute;
    top: -86px;
    right: 0;
    z-index: 10;
    width: 119px;
    border-radius: 8px;
  }
}
  .pie-chart img {
    width: 80%;
  }
  
  .chart-labels {
    font-size: 11px;
    flex-wrap: wrap;
    gap: 5px;
  }

  .upper-tabs .card .card-header {
    padding-left: 0 !important;
}
  
  .chart-stats {
           flex-direction: row;
        gap: 15px;
        text-align: center;
        align-items: center;
        justify-content: center;
  }
  
  .legend {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  
  /* Chart footer adjustments */
  .chart-footer {
    width: 100%;
    left: 0;
  }
  
  .footer-nav {
    justify-content: space-between;
    padding: 0 10px;
  }
  
  /* Form adjustments */
  .col-3,
  .col-9 {
    width: 100% !important;
  }
  
  .form-card {
    width: 100%;
  }
  
  .checkbox-container,
  .checkbox-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .data-form {
    gap: 15px;
  }
  
  .form-group {
    padding: 8px 10px;
  }
  
  /* Mini chart adjustments */
  .mini-chart img.img-fluid {
        height: 62px;
        width: 440px;
        position: relative;
        top: -12px;
  }
  
  .card-change {
    flex-wrap: nowrap;
    gap: 5px;
  }
  
  .change-text {
    width: 100%;
    margin-left: 0;
  }
}

/* Small mobile devices (320px - 480px) */
@media (max-width: 480px) {
  .header-inner {
    justify-content: center;
    text-align: center;
  }
  
  .logo {
    width: 100%;
    text-align: center;
  }
  
  .main-nav {
    display: none; /* Hide navigation on very small screens */
  }
  
  .header-search {
    justify-content: center;
    width: 100%;
  }
  
  .sidebar {
    padding: 8px 5px;
    gap: 8px;
  }
  
  .sidebar-item {
    width: 35px;
    height: 35px;
  }
  
  .sidebar-item svg {
    width: 18px;
    height: 18px;
  }
  
  .card {
    padding: 15px;
  }
  
  .card.large {
    padding: 0;
  }
  
  .card-header h3 {
    font-size: 14px;
  }
  
  .card-value {
    font-size: 24px;
  }
  
  .bar-chart,
  .pie-chart {
    padding: 10px;
  }
  
  .chart-footer {
    padding: 8px 0;
    width: 101%;
   left: -1px;
        top: 1px !important;
  }
  
  .footer-icon {
    width: 20px;
    height: 20px;
  }
  
  .area-chart .chart-image {
   height: 140px;
        top: 79px;
  }
  
  .chart-labels {
    font-size: 10px !important;
  }
  
  .form-input,
  .form-select {
    padding: 10px;
    height: 40px;
    font-size: 14px;
  }
}

/* Tablet adjustments (768px and below but above 480px) */
@media (min-width: 481px) and (max-width: 768px) {
  .cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .upper-tabs {
    grid-template-columns: 1fr;
  }
  
  .upper-tabs .card {
    width: 100%;
  }
  
  .card.large {
    grid-column: span 2;
  }
  
  .cards-row-earn {
    grid-template-columns: 1fr 1fr;
  }
  
  .legend {
    grid-template-columns: 1fr 1fr;
    padding: 25px;
  }
  
  .checkbox-container,
  .checkbox-row {
    flex-direction: row;
    gap: 30px;
  }
}

/* Ensure images remain responsive */
img.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scrolling */


/* Maintain aspect ratios for charts */
.bar-chart-container,
.pie-chart,
.area-chart {
  position: unset;
  overflow: hidden;
}

/* Ensure form elements remain usable on mobile */
.form-input:focus,
.form-select:focus {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Improve touch targets for mobile */
.sidebar-item,
.footer-icon,
.card-actions img,
.icon-settings {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Maintain readability on small screens */

.card-header h3 {
  line-height: 1.2;
}

/* Ensure no content is cut off */
.card {
  overflow: visible;
}

.dashboard-container {
  min-width: 320px;
}

@media (max-width: 480px) {
    .pie-chart img {
        width: 56%;
    }
}


@media (max-width: 425px) {
    .pie-chart img
 {
        width: 44% !important;
    }
}

@media (min-width: 320px) and (max-width: 320px) {
    .cards-row .card.large:nth-of-type(2) .chart-footer {
padding: 8px 0;
        width: 101%;
        left: -1px;
        top: 65px !important;
    }
}

@media (min-width: 768px) and (max-width: 768px) {
  .mini-chart img.img-fluid {
            height: 90px;
        width: 450px;
        position: relative;
        top: -35px;
  }
  }

@media (min-width: 768px) and (max-width: 768px) {
    .cards-row-earn {
        display: flex;
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 768px) {
.cards-row-earn img.chart-image {
    top: 83px;
}
}

@media (min-width: 768px) and (max-width: 768px) {
    .pie-chart img {
        width: 29%;
        padding-bottom: 5%;
    }
}


@media (min-width: 768px) and (max-width: 768px) {
.checkbox-container label.checkbox-round {
    position: relative;
    left: 14px;
}
}

.navbar-light .navbar-toggler {
    display: none;
}


/*page 2*/
/*navbar*/
.navbar {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Connecting line between steps */
.nav-links::before {
      content: "";
    position: absolute;
    top: -5px;
    left: 42px;
    right: 0;
    height: 1px;
    background-color: #ffffff;
    z-index: 0;
    width: 87%;
}

.nav-item {
    position: relative;
    text-align: center;
}

/* The dot above each text */
.nav-link::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color:#2B91FF; /* Blue for inactive */
    z-index: 1;
}

/* Active step — green */
.nav-link.active::before {
    background-color: #00ff66;
}

/* Link text */
.nav-link {
    text-decoration: none;
    color: #2B91FF !important;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Active link text */
.nav-link.active {
    color: #00ff66 !important;
}

/* Icons (optional) */
.nav-icon {
    display: none; /* Hidden in your screenshot */
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links::before {
        display: none;
    }
    .nav-link::before {
        top: -20px;
    }
}

.card.clearfix {

    font-family: Arial, sans-serif;
    flex-direction: row;
    justify-content: space-between;
    width: 800px;
    background-color: white;
    border-radius: 12px;
    margin: 0px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video-section {
    width: 75%;
    float: left;
    position: relative;
    border: 1px solid #2B91FF;
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.video-section img {
    width: 90%;
}

    .help-section {
     width: 26%;
    float: left;
    padding: 20px;
    background-color: white;
    color: #2B91FF;
    }

    .help-header {

      margin-bottom: 10px;
          font-size: 18px;
    text-align: left;
    color: #2c99fb;
    font-family: 'DMSans18pt-Bold';
    }

    .help-header img {
      width: 18px;
      vertical-align: middle;
      margin-right: 5px;
    }

    .help-section ul {
      list-style: none;
      padding: 0;
      margin: 10px 0;
    }

    .help-section li {
          margin-bottom: 6px;
    color: #2B91FF;
    font-size: 14px;
    font-family: 'DMSans18pt-Black';
    font-weight: 600;
    }

    .help-section li.green {
    color: #39E540;
    font-weight: bold;
    font-family: 'DMSans18pt-Black';
    }


    .clearfix::after {
      content: "";
      display: table;
      clear: both;
    }

  .card.clearfix  .card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      float: left;
    }

 .card.clearfix .card-content {
      margin-left: 130px; /* space for image */
      padding: 10px;
    }

    .card-icons {
      margin-bottom: 10px;
    }

    .card-icons img {
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }

    .card-content ul {
      padding-left: 20px;
      margin: 0 0 10px 0;
    }

    .card-content li {
      margin-bottom: 5px;
    }

    .view-all {
      color: #2B91FF;
      font-weight: bold;
      text-decoration: none;
    }

    .view-all img {
      width: 16px;
      height: 16px;
      vertical-align: middle;
      margin-right: 5px;
    }

    /* Clear floats */
    .clearfix::after {
      content: "";
      display: table;
      clear: both;
    }
  .error-icon {
          position: absolute;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    color: #e74c3c;
    width: 16px;
    height: 16px;
        }

      .form-input {
            width: 100%;
                     border-radius: 4px;
            font-size: 14px;
            background-color: #fff;
        }
          .form-input {
            width: 100%;
            border-radius: 4px;
            font-size: 14px;
            background-color: #fff;
            color: #0b2984;
        }
        


/*lagr*/

/* Each heading section */
.card.large-Sales .heading-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
/* Heading title */
.card.large-Sales .heading-title {
    font-weight: bold;
    color: #2b91ff;
    font-size: 18px;
}

/* Sub-menu items */
.card.large-Sales .heading-section .sub-menu {
    list-style: none;
    padding: 0 5px;
    margin: 5px 0px 0 5px;
    border-left: 2px solid #2b91ff;
}
.card.large-Sales .sub-menu li {
font-size: 14px;
    color: #2b91ff;
    font-family: 'DMSans18pt-Medium';
}


/* Chart labels */
.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
}


.card.large-Sales {
    width: 400px;
    padding: 0;

}

.card.large-Sales .card-header {
    padding: 15px 10px !important;
}

.card.large-Sales .bar-chart-content {
    padding: 0px 13px 0;
}

.card.large-Sales .bar-chart {
    padding: 0px 10px;
 margin-bottom: 0px;
}

.card.large-Sales .bar-chart img {
    width: 100%;
    margin-bottom: 10px;
}

.card.large-Sales .bar-chart .chart-labels {
bottom: 84px;
    justify-content: space-around;
    padding: 10px 11px 0px;
    color: #2B91FF;
    font-family: 'DMSans18pt-Light'
}

.card-revenew {
    padding: 0 20px 20px;
}

.marketing-strategy-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 0 15px;
}

.marketing-strategy-year-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.marketing-strategy-main-heading {
  font-weight: bold;
  color: #2B91FF;
}

.marketing-strategy-year-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid #2b91ff;
}

.marketing-strategy-year-list ul li {
  font-size: 14px;
  color: #2b91ff;
    font-weight: 500;
        padding: 0px 10px;
}

.marketing-strategy-create-report {
    font-size: 14px;
    color: #3dd598;
    cursor: pointer;
    font-weight: 500;
    font-family: 'DMSans24pt-Bold';
}

.marketing-strategy-card {
    padding: 0 15px;
margin-bottom: 35px;
}

.marketing-strategy-card-value {
  font-size: 28px;
    font-weight: bold;
    font-style: normal;
    text-align: left;
    color: #0091ff;
    font-family: 'DMSans18pt-Medium';
}

.marketing-strategy-card-top-text {
     padding-bottom: 10px;
    font-size: 13px;
    font-style: normal;
    text-align: left;
    color: #2699fb;
    font-family: 'DMSans18pt-Bold';
}

/* Card Main Layout */
.marketing-strategy-card-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-top: 5px;
}


.marketing-strategy-card-graph {
  display: flex;
  flex-direction: column; /* image on top, percentage below */
  align-items: center;
  gap: 5px;
}


.marketing-strategy-card-change.positive .marketing-strategy-change-text {
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    font-style: normal;
    text-align: left;
    color: #7e84a3;
    padding-left: 10px;
}


.marketing-strategy-card-change.negative span.marketing-strategy-change-text {
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    font-style: normal;
    text-align: left;
    color: #7e84a3;
    padding-left: 10px;
}

.marketing-strategy-card-change.negative span {
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    text-align: left;
    color: #F0142F;
}

.marketing-strategy-card-change.positive span {
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    text-align: left;
    color: #05e540;
}

.marketing-strategy-card-change {
  font-size: 12px;
}

.marketing-strategy-card-change.positive {
 color: #05E540;
}

.marketing-strategy-card-change.negative {
  color: red;
}

.marketing-strategy-change-text {
  color: #555;
}


.sales-marketing-header {
  display: flex;
  align-items: center; /* vertically centers the text with the image */
  gap: 8px; /* adds a little space between the image and text */
}

.sales-marketing-header img {
  width: 20px; /* adjust size as needed */
  height: 20px;
}
.main-content .col-4 .card.large-Sales {
    margin-left: 20px;
}



@media only screen and (max-width: 320px) {
  .varient-2 .card.clearfix {
    display: block;
            width: 300px !important;
  }
}


.navbar { width: 100%; padding: 28px 0; display: flex; justify-content: center; align-items: center; background-color: transparent; }
.nav-item { position: relative; text-align: center; width: auto; }
.nav-icon { display: none; }
.card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.12); margin: 16px auto; width: min(1000px, 100%); }
.card.clearfix { display: flex; gap: 18px; flex-direction: row; align-items: stretch; padding: 12px; }
.video-section { flex: 3; min-width: 0; text-align: center; padding: 20px; display: flex; justify-content: center; align-items: center; background: #fff; border-radius: 8px; }
.video-section img { width: 100%; max-width: 560px; height: auto; object-fit: cover; }
.help-section { flex: 1; padding: 18px; background: #fff; border-radius: 8px; min-width: 180px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.help-header { font-weight: bold; color: var(--blue); display: flex; align-items: center; gap: 8px; }
.help-header img { width: 18px; vertical-align: middle; }
.help-section ul { list-style: none; padding: 0; margin: 0; width: 100%; }
.small-card { display: flex; gap: 12px; padding: 12px; align-items: flex-start; width: 100%; }
.small-card img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.small-card .card-content { padding: 0; flex: 1; }
.card-icons { margin-bottom: 10px; display: flex; gap: 6px; align-items: center; }
.card-icons img { width: 20px; height: 20px; }
.view-all { color: var(--blue); font-weight: bold; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.view-all img { width: 16px; height: 16px; }
.card.large-Sales { width: 400px; padding: 0; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.08); margin: 12px; overflow: hidden; }
.card.large-Sales .card-header { padding: 15px 10px; }
.card.large-Sales .bar-chart-content { padding: 0 13px; }
.card.large-Sales .bar-chart img { width: 100%; height: auto; display: block; }
.bar-chart-headings { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 12px; }
.card.large-Sales .heading-section { display: flex; flex-direction: column; }
.card.large-Sales .sub-menu { list-style: none; padding: 0 5px; margin: 5px 0 0 5px; border-left: 2px solid var(--blue); }
.chart-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 14px;}
.marketing-strategy-card { padding: 12px 15px; margin-bottom: 18px; background: var(--card-bg); border-radius: 10px; }
.marketing-strategy-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 10px; }
.marketing-strategy-year-list li { font-size: 14px; color: var(--blue); font-weight: 500; padding: 0 10px; }
.marketing-strategy-card-main { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.marketing-strategy-card-graph { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.marketing-strategy-img-fluid { width: 185px; max-width: 100%; height: auto; }
.marketing-strategy-card-change { font-size: 12px; display: flex; align-items: center; gap: 8px; }
.marketing-strategy-change-text { color: var(--muted); padding-left: 8px; }
.varient-2 .main-content { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.main-content .col-8 { flex: 1 1 620px; min-width: 300px; }
.main-content .col-4 { flex: 0 0 420px; }
@media (max-width: 992px) { .navbar { padding: 18px 0; } .nav-link { font-size: 13px; } .card.clearfix { gap: 12px; padding: 10px; } .main-content .col-4 { flex-basis: 360px; } .card.large-Sales { width: 360px; } .marketing-strategy-img-fluid { width: 160px; } }
@media (max-width: 768px) { .nav-links { flex-direction: row; align-items: flex-start; gap: 14px; padding-left: 12px; } .nav-links::before { display: none; } .nav-item { width: 100%; } .nav-link { padding: 0 !important; width: 130px; position: relative; left: -38px; } .nav-links::after { content: ""; position: absolute; left: 16px; top: 8px; bottom: 0; width: 2px; background: var(--accent-blue); z-index: 0; border-radius: 2px; } .nav-link::before { display: none; } .card.clearfix { flex-direction: column; padding: 10px; } .video-section { width: 100%; order: 1; padding: 14px; } .help-section { width: 100%; order: 2; padding: 12px; } .small-card img { width: 100px; height: 100px; } .main-content { flex-direction: column; gap: 14px; align-items: stretch; } .main-content .col-8, .main-content .col-4 { flex: 1 1 100%; } .card.large-Sales { width: 100%; margin-left: 0; } .marketing-strategy-img-fluid { width: 140px; } }
@media (max-width: 480px) { body { padding: 0px; } .nav-link { font-size: 13px; } .nav-links::after { left: 12px; } .nav-link::before { width: 10px; height: 10px; top: 4px; } .video-section { padding: 10px; } .help-section { padding: 10px; font-size: 14px; } .marketing-strategy-img-fluid { width: 110px; } .card.clearfix { gap: 8px; } .nav-links { gap: 10px; } .nav-link { padding-left: 24px; } }
@media only screen and (max-width: 320px) { 

.main-content .col-4 .card.large-Sales {
    margin-left: 0px; 
width: 300px !important;
}
}



@media (max-width: 768px) {
  .main-content .col-4 .card.large-Sales {
    margin-left: 0px;
    width: 491px;
  }
}

/* For slightly larger devices (up to 375px) */
@media only screen and (max-width: 375px) and (min-width: 321px) {
  .main-content .col-4 .card.large-Sales {
    margin-left: 0;
    width: 350px !important;
  }
}

/* For medium-small devices (up to 425px) */
@media only screen and (max-width: 425px) and (min-width: 376px) {
  .main-content .col-4 .card.large-Sales {
    margin-left: 0;
    width: 405px !important;
  }
}

/* For screens up to 375px only */
@media only screen and (max-width: 375px) {
  .varient-2 .upper-tabs {
    width: 350px;
  }
}

/* For screens between 376px and 425px only */
@media only screen and (min-width: 376px) and (max-width: 425px) {
  .varient-2 .upper-tabs {
    width: 405px;
  }
}



@media only screen and (max-width: 375px) and (min-width: 321px) {
  .varient-2 .card.large-Sales {
    width: 350px;
  }
}

/* For screens between 376px and 425px */
@media only screen and (min-width: 376px) and (max-width: 425px) {
  .varient-2 .card.large-Sales {
    width: 405px;
  }
}





@media (max-width: 2560px) and (min-width: 1440px) {
  .upper-tabs {
    justify-content: space-between;
    width: 100%;
  }

  .cards-row {
    justify-content: space-around;
  }
}

