.service-intergration-section {
    position: relative;
    padding: 30px 20px;
    background-color: #fff;
}

.integration-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin: auto
}

.integration-left {
    flex: 1 1 50%;
}
.integration-left .desc p a {
    color:orangered !important;
}

.integration-left h2 {
    font-size: 36px;
    color: #5e3ca4;
    font-weight: 200;
    padding-bottom: 1% !important;
}

.integration-left .desc {
    color: #716c80;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-style: normal;
    font-weight: 400;
}

.btn.view-btn {
    background-color: #ff7e6b;
    color: #fff;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.view-btn:hover {
    background-color: #e76658;
}

.integration-right {
    flex: 1 1 30%;
    align-items:flex-start;
}

.integration-right video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.integration-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.integration-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.integration-box h4 {
    font-size: 16px;
    color: #5e3ca4;
    margin: 0;
    font-weight: 600;
}

.integration-box p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.integration-box:hover h4 {
    text-decoration: underline;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .integration-left h2 {
        font-size: 30px;
    }
    .integration-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .integration-wrapper {
        flex-direction: column;
        width:100% !important;
    }
    .integration-left,
    .integration-right {
        flex: 1 1 100%;
    }
    .integration-grid {
        grid-template-columns: 1fr;
    }
    .integration-left h2 {
        font-size: 26px;
        text-align: center;
    }
    .integration-left .desc,
    .btn.view-btn {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .integration-left a{
        display:flex;
        justify-content: center;
        align-items: center;
    }
}


/* service-list-section */

.service-list-section {
    position: relative;
    padding: 30px 20px;
    background-color: #fff;
}

.service-list-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-column {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 20%;
}

/* Left aligned service box */
.service-box.left {
    display: flex;
    align-items: flex-end;

    flex-direction: column;
    text-align: right;
}

/* Right aligned service box */
.service-box.right {
    display: flex;
    align-items: flex-start;

    flex-direction: inherit;
    text-align: left;
}

.service-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-box h4 {
    color: #58468c;
    font-size: 22px;
    line-height: 29px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.service-box p {
    color: #716c80;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-style: normal;
    font-weight: 400;
}

.service-center-image {
    flex: 0 0 auto;
    text-align: center;


}

.service-center-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .service-list-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .service-column {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .service-box.left,
    .service-box.right {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .service-list-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .service-column {
        flex: 1 1 100%;
        align-items: center;
        text-align: center;
    }
    .service-box {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .service-box {
        flex-direction: column;
        align-items: center;
    }
    .service-box img {
        margin-bottom: 10px;
    }
}

/* service faq section */

.service-faqs-section {
    padding: 80px 20px;
    background: #f7f9fc;
}

.service-faq-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    /* gap: 40px; */
    margin: auto;
}

.faq-left-block {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.faq-left-block h2 {
    color: #58468c;
    font-size: 35px;
    line-height: 55px;
    font-style: normal;
    font-weight: 300;
    text-transform: capitalize;
}


/* //technology service page  */
.service-technologies-section {
    background-color: #103358;
    padding: 30px 20px;
}

.service-technologies-section .tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    width: 90%;
    margin: auto;
}

.service-technologies-section .tech-card {
    background-color: #103358;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.service-technologies-section .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.service-technologies-section .tech-card .tech-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 2px solid #fcb034;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.tech-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.tech-card p {
    font-size: 14px;
    color: #d2e0f3;
    font-weight:100;
}

/* Responsive Grid */
@media (max-width: 1370px) {
    .service-technologies-section  .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-technologies-section .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-technologies-section .tech-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tech-card {
        padding: 30px 15px;
    }
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    .tech-icon img {
        width: 50px;
        height: 50px;
    }
    /* Moved lets-talk-btn visibility to header.css for modularity */
}

@media (max-width: 380px) {
    .tech-card h4 {
        font-size: 16px;
    }
    .tech-card p {
        font-size: 13px;
    }
}

/* service-features */

.service-features-section {
    background-color: #e9e9e9;
    padding: 30px 20px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.features-grid .feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon img {
    width: 70px;
    height: 70px;
}

.features-grid .feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.features-grid .feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-weight:100;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .features-grid .feature-card {
        flex: 1 1 calc(45% - 30px);
        max-width: calc(45% - 30px);
    }
}

@media (max-width: 768px) {
    .features-grid .feature-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* service why loku sction  */
.service-whyloku-section {
    padding: 30px 0;
    background-color: #123458;
    color: #ffffff;
}
.whyloku-header{
    padding: 10px 113px;
}

@media (max-width: 768px) {
    .whyloku-header{
        padding: 0px;
    }
}


.whyloku-header h5 {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.whyloku-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
}

.whyloku-header p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #ccc;
}

.whyloku-content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.whyloku-left {
    flex: 0 0 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.whyloku-right {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whyloku-card {
    background: #123458;
    padding: 20px;
    border: 1px solid #123458;
    border-radius: 2px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.whyloku-card .icon {
    margin-bottom: 15px;
}

.whyloku-card .icon img {
    width: 50px;
    height: auto;
}

.whyloku-card h4 {
    font-size: 22px;
    color: #fff;
    margin: 0px;
}

.whyloku-card .desc {
    font-size: 14px;
    color: #ccc;
    color: #ffffff;
    font-weight: 300;
}

.highlight-card {
    background: #123458;
    padding: 20px;
    border-left: 3px solid #ffc600;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.highlight-card h4 {
    color: #ffffff;
    font-size: 30px;
    margin: 0;
}

.highlight-card p {

    font-size: 14px;
    color: #ffffff;
    font-weight: 300;
}

/* Breakpoints */
@media screen and (max-width: 1370px) {
    .whyloku-left {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .whyloku-content-grid {
        flex-direction: column;
    }

    .whyloku-left,
    .whyloku-right {
        flex: 100%;
    }

    .whyloku-left {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .whyloku-left {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .whyloku-header h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 380px) {
    .whyloku-card,
    .highlight-card {
        padding: 15px;
    }
}
