/*hero section*/

.about-section {
    display: flex;
    align-items: center;
    height: auto;
    padding: 50px;
    background-color: rgb(10, 29, 51);
    margin:0 ;
    margin-bottom: 30px;
    color: #fff;
}

.about-content {
    max-width: fit-content;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
}

.stp {
    font-size: 14px;
    color: #ffffff;
    background-color: #dddddd41;
    box-sizing: border-box;
    width: fit-content;
    font-family: "Montserrat", sans-serif;
    padding: 5px;
    border-radius: 5px;
    margin: 0 auto;
}

.abh1 {
    font-size: 66px;  
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 10px;
}

.description {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .abh1 {
        font-size: 40px; 
    }

    .description {
        font-size: 18px;
        padding: 0px 20px;
    }

    .about-section{
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .abh1 {
        font-size: 32px;
    }
}

/*description*/

.des{
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Inter',sans-serif;
}

@media (max-width: 768px) {
    .des {
        font-size: 16px; 
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .des {
        font-size: 15px;
        padding: 0 5px;
    }
}


/*100% speed*/

.ab-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.image-section {
    flex: 1;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
}
.text-section {
    flex: 1;
    padding-left: 20px;
}
.text-section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}
.text-section p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .ab-container {
        flex-direction: column;
        width: 95%;
    }
    .image-section, .text-section {
        padding: 10px;
    }
    .text-section h1 {
        font-size: 2em;
    }
}


/*powerful security*/

.ab2-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.text-section {
    flex: 1;
    padding-right: 20px; 
}

.image-section {
    flex: 1;
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

.text-section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.text-section p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .ab2-container {
        flex-direction: column-reverse;
        width: 95%;
    }

    .image-section,
    .text-section {
        padding: 10px;
    }

    .text-section h1 {
        font-size: 2em;
    }
}