
* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}

.homeinfo {
    width: 100%;
    min-height: 100vh;
    background-image: url('../../assets/image/infoback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infoInnerElement a {
    color: var(--light-color);
    text-decoration: none;
}

.homeInfoInner {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.homeInfoInnerLeft {
    width: 69%;
    height: 100%;
    background-color: var(--overlay-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.homeInfoInnerRight {
    width: 27%;
    height: 100%;
}

.homeInfoInnerLeftInner {
    width: 90%;
    height: 90%;
}

.homeInfoInnerLeftInner h2 {
    margin-bottom: 20px;
    color: var(--light-color);
    font-size: 2.5rem;
}

.homeInfoInnerLeftInner p {
    margin-top: 50px;
    line-height: 25px;
    color: var(--light-color);
    font-size: 1rem;
}

.infoInnerElement {
    margin-top: 50px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innerElementItemOfInfo {
    width: 80%;
}

.innerElementParalal {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    height: auto;
    min-height: 60px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.innerElementParalal img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.innerElementParalal h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem); /* Dynamic font size */
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.innerElementItemOfInfo a {
    padding: 10px 20px;
    background-color: var(--dark-color);
    border: 1px solid var(--dark-color);
    color: var(--light-color);
    display: inline-block;
}

.innerElementItemOfInfo a:hover {
    background-color: var(--light-color);
    border: 1px solid var(--dark-color);
    color: var(--text-dark);
    transition: 1s;
}

.homeInfoInnerRight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.infoInnerElementOuter {
    margin-bottom: 80px;
}

.aboutUs555 {
    margin-top: 50px;
}

@media only screen and (max-width: 800px) {
    .homeInfoInnerRight {
        display: none;
    }
    .homeInfoInnerLeft {
        width: 100%;
    }
    .innerElementParalal {
        padding: 10px;
    }
    .innerElementParalal img {
        width: 25px;
        height: 25px;
    }
    .innerElementParalal h2 {
        font-size: clamp(1rem, 2.2vw, 1.4rem); /* Smaller dynamic font */
        white-space: normal; /* Allow wrapping for better readability */
    }
}

@media only screen and (max-width: 500px) {
    .innerElementParalal img {
        width: 20px;
        height: 20px;
    }
    .innerElementParalal h2 {
        font-size: clamp(0.9rem, 2vw, 1.2rem); /* Further reduced */
    }
}

@media only screen and (max-width: 315px) {
    .innerElementParalal {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }
    .innerElementParalal img {
        width: 18px;
        height: 18px;
        margin-bottom: 10px;
        margin-right: 0;
    }
    .innerElementParalal h2 {
        font-size: clamp(0.8rem, 1.8vw, 1rem); /* Smallest dynamic font */
        white-space: normal;
        text-overflow: clip;
    }
}