.section-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            max-width: 100%;
            margin: auto;
            flex-wrap: wrap;
        }
        .image-container {
            flex: 1;
            min-width: 400px;
            text-align: center;
        }
        .image-container img {
            width: 100%;
            max-width: 500px;
        }
        .text-container {
            flex: 1;
            min-width: 300px;
            padding-right: 70px;
        }
        .text-container h1 {
            color: #00bfa5;
            font-size: 39px;
            font-weight: 900;
            margin-bottom: 20px;
        }
        .text-container p {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        padding: 30px 10px;
    }
    .image-container {
        min-width: 100%;
        padding-bottom: 20px;
    }
    .text-container {
        min-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .text-container h1 {
        font-size: 28px;
    }
    .text-container p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .section-container {
        padding: 20px 5px;
    }
    .image-container {
        padding-bottom: 15px;
    }
    .text-container h1 {
        font-size: 22px;
    }
    .text-container p {
        font-size: 14px;
    }
}


        /* <======================================process===============================================> */
        /* .container-1 {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .container-1 h1 {
            font-size:45px;
            margin-bottom: 10px;
            padding-top: 50px;
        }
        .container-1 h2 {
            font-size: 40px;
            color: #1a73e8;
            margin-bottom: 30px;
        }
        .process {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        .process-list {
            flex: 1 1 500px;
        }
        .photo {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .photo img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .step-number {
            background-color: #1a73e8;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-right: 30px;
            margin-top: 30px;
            flex-shrink: 0;
            border: 1px solid;
        }
        .step-content h3 {
            margin-top: 30px;
            font-size: 23px;
            font-weight: bold;
        }
        .step-content p {
            margin: 5px 0 0 0;
            font-size: 17px;
            line-height: 1.6;
            padding-right: 120px;
            color: #555;
        }

        @media (max-width: 768px) {
            .process {
                flex-direction: column;
            }
            .photo {
                margin-top: 20px;
            }
        } */
         /* <=============================procss==========================> */

.container-1 {
    max-width: 100%;
    margin: auto;
    padding: 20px;
}

.text {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}


.text h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: 60px;
}

.text p { 
    font-size: 20px; 
    max-width: 800px; 
    margin-bottom: 40px; 
    padding-top: 90px;
    padding-left: 250px; 
}

.timeline {
    width: 1350px;
    margin: auto;
}

.timeline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .container-1 {
        padding: 15px;
    }
    .text {
        flex-direction: column;
        align-items: center;
    }
    .text h1 {
        font-size: 32px;
        padding-top: 30px;
        text-align: center;
    }
    .text p {
        font-size: 16px;
        max-width: 100%;
        padding-top: 20px;
        padding-left: 0;
        text-align: center;
    }
    .timeline {
        width: 100%;
        padding: 0 10px;
    }
    .timeline img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .container-1 {
        padding: 10px;
    }
    .text h1 {
        font-size: 24px;
        padding-top: 20px;
    }
    .text p {
        font-size: 14px;
        padding-top: 15px;
    }
    .timeline {
        padding: 0 5px;
    }
}


/* <==========================icon==================> */
.ecommerce-platforms {
    text-align: center;
    background-color: #1a1a1a;
    color: white;
    padding: 50px 20px;
}

.ecommerce-platforms h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.ecommerce-platforms h2 span {
    color: #00aaff;
}

.ecommerce-platforms p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    grid-template-rows: repeat(2, 1fr);   
    gap: 30px;
    max-width: 1200px; 
    margin: auto;
}

.platform {
    background-color: black;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.platform:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 170, 255, 0.5);
}

.platform img {
    max-width: 80px;
    margin-bottom: 15px;
}

.platform p {
    font-size: 20px;
    margin: 0;
    text-align: center;
}
@media (max-width: 768px) {
    .ecommerce-platforms {
        padding: 30px 10px;
    }
    .ecommerce-platforms h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .ecommerce-platforms h2 span {
        color: #00aaff;
    }
    .ecommerce-platforms p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
    }
    .platform {
        padding: 20px;
        height: auto;
    }
    .platform img {
        max-width: 60px;
        margin-bottom: 10px;
    }
    .platform p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .ecommerce-platforms {
        padding: 20px 8px;
    }
    .ecommerce-platforms h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .ecommerce-platforms p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 5px;
    }
    .platform {
        padding: 15px;
    }
    .platform img {
        max-width: 50px;
        margin-bottom: 8px;
    }
    .platform p {
        font-size: 14px;
    }
}


/* <=======================technology==================> */




.technology-stack {
    max-width: 100%;
    height: 120vh;
    margin: auto;
    text-align: center;
    background-color: rgb(221, 218, 218);
}

.technology-stack h2 {
    font-size: 40px;
    margin-bottom: 10px;
    padding-top: 50px;
    color: #00aaff;
}

.technology-stack h2 span {
    color: black;
}

.technology-stack p {
    color: #555;
    font-size: 20px;
    margin-bottom: 30px;
}

.section {
    display: flex;
    width: 100%;
    height: 100vh;
}

.buttons {
    background-color: #084766;
    width: 50%; 
    height: 90vh;
    padding: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.tab-btn {
    width: 90%;
    height: 60px;
    border: none;
    background-color: #084766;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    transition: background-color 0.3s;
    border: #00aaff solid 1px;
}

.tab-btn.active {
    background-color: #00aaff;
    color: white;
}

.half {
    background-color: white;
    width: 50%; 
    height: 90vh;
    padding: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 20px;
}
.tab-content {
    display: none;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-content.active {
    display: flex;
}

.content-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33% - 20px); 
    min-width: 150px; 
    max-width: 200px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}
.content-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.content-item h3 {
    margin: 10px 0 5px;
}

.content-item p {
    color: #666;
    font-size: 14px;
}
@media (max-width: 768px) {
    .technology-stack {
        height: auto;
        padding-bottom: 20px;
    }
    .technology-stack h2 {
        font-size: 28px;
        padding-top: 30px;
        margin-bottom: 5px;
    }
    .technology-stack p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .section {
        flex-direction: column;
        height: auto;
    }
    .buttons {
        width: 100%;
        height: auto;
        border-radius: 20px 20px 0 0;
        padding: 15px;
    }
    .tab-btn {
        width: 100%;
        height: 50px;
        font-size: 14px;
    }
    .half {
        width: 100%;
        height: auto;
        border-radius: 0 0 20px 20px;
        padding: 15px;
    }
    .tab-content {
        gap: 15px;
    }
    .content-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 120px;
        max-width: 150px;
        padding: 15px;
    }
    .content-item img {
        width: 50px;
        height: 50px;
    }
    .content-item h3 {
        font-size: 14px;
    }
    .content-item p {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .technology-stack {
        padding-bottom: 15px;
    }
    .technology-stack h2 {
        font-size: 22px;
        padding-top: 20px;
        margin-bottom: 5px;
    }
    .technology-stack p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .section {
        flex-direction: column;
    }
    .buttons {
        border-radius: 15px 15px 0 0;
        padding: 10px;
    }
    .tab-btn {
        width: 100%;
        height: 45px;
        font-size: 13px;
    }
    .half {
        border-radius: 0 0 15px 15px;
        padding: 10px;
    }
    .tab-content {
        gap: 10px;
    }
    .content-item {
        flex: 1 1 calc(100% - 20px);
        min-width: 100px;
        max-width: 120px;
        padding: 10px;
    }
    .content-item img {
        width: 40px;
        height: 40px;
    }
    .content-item h3 {
        font-size: 12px;
    }
    .content-item p {
        font-size: 10px;
    }
}


