.text-outline {
    font-size: clamp(50px, 15vw, 200px);
    /* Base scaling with limits */
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px white;
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 100%;
    max-width: calc(100% - 40px);
    text-align: center;
    line-height: normal;
}


.braning__container {
    height: 100%;
    padding: 0 20px;
    max-width: 1720px;
    margin: 0 auto;
}






.service_content_text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    height: 500px;
    overflow-y: auto;
}

.service_content_text::-webkit-scrollbar {
    width: 12px;
}

.service_content_text::-webkit-scrollbar-track {
    background: #d2fb3d;
    border-radius: 10px;

}


.service_content_text::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 10px;
}

.smmContent {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 30px;
}

.general_section {
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    position: relative;
}

._title {
    font-size: 60px !important;
}

.smmContentImg {
    width: 500px;
    height: 500px
}

.smmContentImg>img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

h3 {
    font-size: 28px;
}

p,
ul {
    font-size: 18px;
}

.toggle-icon {
    display: inline-block;
    /* Ensures width can be applied */
    width: 20px;
    /* Fixed width, adjust as needed */
    text-align: center;
    /* Centers the + or - within the fixed width */
}

@media screen and (min-width: 1720px) {
    .text-outline {
        font-size: 200px;
        /* Fixed size for large screens */
        max-width: 1680px;
        /* Matches container max-width minus padding */
    }
}

/* Tablet screens (768px - 1260px) */
@media screen and (max-width: 1260px) {
    .general_section {
        height: 50vh;
    }

    .text-outline {
        font-size: clamp(40px, 12vw, 120px);
        /* Smaller range for tablets */
        max-width: calc(100% - 40px);
        /* Keep within padded container */
        text-align: center;
    }
}

/* Mobile screens (below 768px) */
@media screen and (max-width: 767px) {
    .general_section {
        height: 40vh;
        /* Reduce height further for mobile */
    }

    .text-outline {
        font-size: clamp(30px, 10vw, 80px);
        /* Even smaller for mobile */
        max-width: calc(100% - 40px);
        /* Respect padding */
        -webkit-text-stroke: 1px white;
        /* Thinner stroke for readability */
        text-align: center;
    }

    .braning__container {
        padding: 0 10px;
        /* Reduce padding on mobile if desired */
    }
}



/* 
@media screen and (max-width: 1260px) {
    .text-outline {
        font-size: 18vw !important;
        text-align: center;
    }

    .general_section {
        height: 50vh;
    }
} */

@media screen and (max-width: 1200px) {
    .smmContent {
        flex-direction: column;
    }

    .service_content_text {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .smmContentImg {
        width: 300px;
        height: 300px;
    }
}