.statistics-section {
    display: flex;
    flex-direction: column;
}

.automationSegemnt h4 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 25px 0px;
}

/*  links container */
.arrow-links-container {
    padding: 10px;
    border-radius: 8px;
    width: fit-content;
}


.arrow-links-container ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.arrow-links-container ul li {
    display: inline-block;
}


.arrow-link {
    text-decoration: none;
    font-size: 18px;
    color: #2B5499;
    position: relative;
    display: inline-block;

}

/* drop down arrow (Unicode U+02935) */
.arrow-link::before {
    content: "\2935";
    /* ⤵ */
    font-size: 25px;
    /* margin-right: 0px; */
    display: inline-block;
}


.arrow-link:hover {
    color: #5198FF;
}

/*end links Container*/


.segmentText,
.productText {
    margin-bottom: 20px;
}

.segmentText ul,
.productText ul {
    padding-left: 20px;
    list-style-type: none;
    margin-bottom: 10px;
}

.segmentText ul li,
.productText ul li {
    font-size: 16px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 5px;
}

.segmentText p,
.productText p {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 20px;
    margin-bottom: 15px;
}

.charts-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    gap: 20px;
}

.stat1,
.stat2 {
    /* background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 100%;  */
}

.stat1 h4,
.stat2 h4 {
    font-size: 25px;
    margin: 10px 0px;
    text-align: center;
    font-weight: bold;
}

.charts-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.chart,
.segmentChart,
.segmentProductChart,
.productCurrentChart,
.productProjectedChart {
    width: 250px;
    text-align: center;
    margin: 5px 0px;
}

.chart img,
.segmentChart img,
.segmentProductChart img,
.productCurrentChart img,
.productProjectedChart img {
    width: 250px;
    height: auto;
    border-radius: 8px;
}

.segmentChart p,
.segmentProductChart p,
.productCurrentChart p,
.productProjectedChart p {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    text-align: center;
    margin: 10px 5px;
}

.table-figure {
    text-align: center;
    margin-top: 30px;
}

.segmentTable p,
.productTable p {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    text-align: center;
}

.table-figure img {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart img,
.segmentChart img,
.segmentProductChart img,
.productCurrentChart img,
.productProjectedChart img {
    width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.segmentChart p,
.segmentProductChart p,
.productCurrentChart p,
.productProjectedChart p {
    font-size: 16px;
    font-weight: bold;
    color: #003366;
    text-align: center;
    margin-top: 10px;
}

.chart:hover img,
.segmentChart:hover img,
.segmentProductChart:hover img,
.productCurrentChart:hover img,
.productProjectedChart:hover img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}