.landing-page-container {
    font-family: Arial, sans-serif;
}

.header-section, .chart-section, .info-section {
    padding: 20px;
    color: white;
}
 .triangle-logo {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 100px solid #fe2535;
}

.header-section {
    background-color: #27074c;
}

.chart-section {
    display: flex;
    background-color: #fe2535;
    text-align: center;
}
.icon-container {
    position: absolute;
    top: 10px;
    left: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    z-index: 1;
}
.graph-container {
    background-color: white;
    padding: 16px; 
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.info-section {
    display: flex;
    background-color: #27074c;
    text-align: left;
    padding: 30px;
}

.header-section .md-6, 
.chart-section .md-6 {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.info-section .md-2 {
    flex: 1;
    max-width: 16.66%;
    text-align: left;
}

.info-section .md-10 {
    flex: 1;
    max-width: 83.33%;
    text-align: left;
}

.big-text {
    font-size: 78px;
    color: #fff;
}
.big-text-dashboard {
  font-size: 78px;
  font-weight: 900;
  letter-spacing: 20px;
  color: #27074c;
}
.large-text1{
    font-size: 40px;
    font-weight: 900;
    color: #a9044c;
}
.large-text1-dash{
  font-size: 80px;
  font-weight: 900;
  color: #a9044c;
}
.pie-text-dash{
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #04000a;
}
.para-text-dash{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #04000a;
}
.large-text2{
    font-size: 45px;
    font-weight: 900;
    color: #97d3c0;
}
.section-text{
    font-size: 26px;
    color: #fff;
}
.graph-heading {
    position: relative;
    font-weight: bold;
    text-align: center;
    padding-bottom: 6px;
    padding-left: 40px;
  }
  
  .graph-heading.open::before {
    transform: translateY(-60%) rotate(0deg);
  }
  
  .graph-description {
    position: relative;
    text-align: center;
    color: black;
  }
  .graph-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-90deg);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid red;
  }

  .swipe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  
  .swipe-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* Twice the width to accommodate both sets */
  }
  
  .swipe-content .content {
    width: 50%; /* Equal width for each set */
    flex-shrink: 0;
    padding: 20px;
  }
  
  .swipe-left {
    transform: translateX(-50%); /* Move to the second set */
  }
  
  .swipe-right {
    transform: translateX(0); /* Move back to the first set */
  }

  .toggle-button-new {
    position: absolute;
    z-index: 1;
    top: 320px;
  }
  
  .toggle-button {
   
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .toggle-button:hover {
    background: #0056b3;
  }
  .text-outline {
    text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
  }