/* ================= our services start  ================== */
.our-services {
    padding: 50px 0;
    background-color: var(--bg-white); 
}
.services-img {
    height: 400px;  
    overflow: hidden; 
    position: relative; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.sumary-of-services h2 {
    color: var(--light-blue);
}
.sumary-of-services p {
    color: var(--body-text); 
}

.sumary-of-services .heading-text{
    color: var(--light-gray);
}

@media (max-width: 768px) {
    .our-services {
        padding: 25px 0;
    }
    .services-img {
        height: 280px;
        margin-top: 20px;
    }
}

@media (max-width: 430px) {
    .services-img {
        height: 220px;
    }
}
/* =================  our services end  ================== */

/* ================= our expertise / service cards start  ================== */
.expertise-box {
    margin: 20px 0; 
    min-height: 300px;
    position: relative;  
    background-color: var(--bg-white);
    padding: 30px 20px; 
    border: 2px solid var(--primary-color);
    border-radius: 20px 0px 20px 0px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.expertise-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-linear-gradient); 
    z-index: -1;
    transition: top 0.5s ease;  
}

.expertise-box:hover::before {
    top: 0; 
}

.expertise-box .service-icon {
    font-size: 40px;
    color: var(--light-blue);
    margin-bottom: 15px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.expertise-box:hover .service-icon {
    color: var(--white);
    transform: scale(1.1);
}

.expertise-box h4 {
    color: var(--light-blue);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.expertise-box:hover h4 {
    color: var(--white);  
}

.expertise-box ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 0;
}

.expertise-box ul li {
    font-size: 14px;
    color: var(--body-text);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    transition: color 0.4s ease;
}

.expertise-box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-size: 11px;
    top: 3px;
    transition: color 0.4s ease;
}

.expertise-box:hover ul li {
    color: var(--white);
}

.expertise-box:hover ul li::before {
    color: var(--white);
}

.expertise-box:hover {
    border-radius: 0px 20px 0px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 576px) {
    .expertise-box {
        min-height: fit-content;
        padding: 25px 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .expertise-box {
        min-height: 290px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .expertise-box {
        min-height: 310px;
    }
}
/* ================= our expertise end  ================== */

/* ================= why us start ================== */
.why-us-section {
    padding: 60px 0;
    background-color: var(--white);
}

.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--light-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 24px;
    color: var(--light-blue);
    margin-right: 15px;
    margin-top: 3px;
}

.why-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.why-content p {
    color: var(--body-text);
    margin-bottom: 0;
    font-size: 14px;
}
/* ================= why us end ================== */

/* ================= industries we serve start ================== */
.industries-section {
    padding: 50px 0;
    background-color: var(--bg-white);
}

.industry-pill {
    background-color: var(--white);
    border: 1px solid var(--card-border);
    padding: 12px 20px;
    margin: 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.industry-pill i {
    margin-right: 10px;
    color: var(--light-blue);
    font-size: 18px;
    transition: color 0.3s ease;
}

.industry-pill:hover {
    background: var(--blue-linear-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-pill:hover i {
    color: var(--white);
}
/* ================= industries we serve end ================== */

/* ================= tools we use start  ================== */
.icons-container {
    display: flex;
    flex-wrap: wrap;  
    justify-content: center;
}

.technologies-icon {
    flex: 1 1 100px; 
    max-width: 150px;
    text-align: center;
    padding: 15px 10px;
    margin: 10px;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technologies-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.technologies-icon img, .technologies-icon i {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.technologies-icon i {
    font-size: 40px;
    line-height: 50px;
    display: block;
    margin: 0 auto 10px auto;
}

.technologies-icon p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.category-filters {
    margin-bottom: 30px;
}

.filter-btn {
    border: 0;
    font-size: 18px;
    background-color: transparent;
    font-weight: 600;
    padding: 10px 20px;
    margin: 5px;
    color: var(--body-text);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    font-weight: 700;
    color: var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
}

@media (max-width: 768px) {
    .filter-btn {
        font-size: 15px;
        padding: 5px 10px;
        margin: 2px;
    }
}
/* ================= tools we use end  ================== */

/* ================= call to action start ================== */
.cta-section {
    padding: 70px 0;
    background: var(--blue-linear-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-btn-primary:hover {
    background-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-btn i {
    margin-right: 8px;
}
/* ================= call to action end ================== */
