/* Services Banner Section - Using same structure as hero */
.services-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0px;
}

.services-banner-content {
    text-align: left;
    color: var(--text-white);
}

.services-banner-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(21, 105, 253, 0.2);
    border-left: 3px solid var(--primary-color);
    color: var(--text-white);
    font-size: var(--font-size-16);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.services-banner-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-54);
    font-weight: var(--heading-xl-weight);
    line-height: 62px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    letter-spacing: -0.5px;
}

.services-banner-title .highlight {
    color: var(--primary-color);
}

.services-banner-description {
    font-family: var(--mulish);
    font-size: var(--text-lg);
    line-height: 28px;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.services-banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Services Showcase Section */
.services-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-item:nth-child(6) {
    animation-delay: 0.6s;
}

.service-item:nth-child(7) {
    animation-delay: 0.7s;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse>* {
    direction: ltr;
}

.service-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

/* Glossy overlay effect */
.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(21, 105, 253, 0.7) 0%,
            rgba(11, 60, 93, 0.8) 50%,
            rgba(21, 105, 253, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 12px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centered circular icon */
.service-icon {
    width: 90px;
    height: 90px;
    background: var(--text-white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transform: scale(0) rotate(-180deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-item:hover .service-image-overlay {
    opacity: 1;
}

.service-item:hover .service-icon {
    transform: scale(1) rotate(0deg);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}




.service-description {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 10px 0;
}

.service-features-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    font-family: var(--font-primary);
    font-size: var(--text-md);
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Details Button */
.service-details-btn {
    font-family: var(--mulish);
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-size: var(--font-size-16);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 10px;
}

.service-details-btn i {
    font-size: var(--font-size-14);
    transition: transform 0.3s ease;
}

.service-details-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 60, 93, 0.3);
}

.service-details-btn:hover i {
    transform: translateX(5px);
}

/* Divider between services */
.service-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            var(--primary-color) 20%,
            var(--secondary-color) 50%,
            var(--primary-color) 80%,
            transparent);
    margin: 30px 0;
    position: relative;
}



/* Responsive adjustments */
@media (max-width: 991px) {
    .service-content {
        padding: 0px 20px;
    }

    .services-banner {
        min-height: 50vh;
    }

    .services-banner-title {
        font-size: var(--font-size-44);
        line-height: 52px;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-image {
        padding: 20px;
    }

    .service-image-wrapper {
        max-width: 100%;
    }

    .service-image img {
        height: 300px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services-banner {
        padding: 5rem 0px;
    }

    .services-banner-title {
        font-size: var(--font-size-36);
        line-height: 44px;
    }

    .services-banner-description {
        font-size: var(--font-size-16);
    }

    .services-banner-buttons {
        gap: 1rem;
    }

    .service-item {
        margin-bottom: 60px;
    }

    .service-description {
        font-size: var(--text-md);
    }

    .service-image img {
        height: 280px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .services-banner-title {
        font-size: var(--font-size-30);
        line-height: 38px;
    }

    .services-banner-tag {
        font-size: var(--font-size-14);
        padding: 0.4rem 1.2rem;
    }

    .service-image {
        padding: 15px;
    }

    .service-image img {
        height: 250px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .service-details-btn {
        padding: 0.6rem 1.2rem;
        font-size: var(--font-size-14);
    }
}

/* Simple White Background Section */
.why-choose-section {
    background: #FFFFFF;
    position: relative;
}

/* Full Width Card with Left Border Design */
.why-choose-card {
    background: #FAFBFC;
    border-radius: 0;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    border-left: 4px solid #E0E0E0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: height 0.4s ease;
}

.why-choose-card:hover {
    background: #FFFFFF;
    box-shadow: 0 3px 15px rgba(21, 105, 253, 0.1);
    transform: translateX(5px);
}

.why-choose-card:hover::before {
    height: 100%;
}

/* Number Circle */
.card-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-number {
    transform: scale(1.1);
}

/* Icon */
.why-choose-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--text-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E8EAED;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    border-color: var(--primary-color);
    background: rgba(21, 105, 253, 0.05);
}

.why-choose-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Content Area */
.card-content {
    flex: 1;
}

/* Title */
.why-choose-title {
    font-size: var(--font-size-17);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.375rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
    color: var(--primary-color);
}

/* Description */
.why-choose-description {
    font-size: var(--font-size-14);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Arrow Icon */
.card-arrow {
    color: var(--primary-color);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
        margin-bottom: 0.875rem;
    }

    .card-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 16px;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .why-choose-icon i {
        font-size: 22px;
    }

    .why-choose-title {
        font-size: var(--font-size-15);
    }

    .why-choose-description {
        font-size: var(--font-size-13);
    }

    .card-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .card-number {
        display: none;
    }

    .why-choose-card {
        gap: 0.875rem;
    }
}

/* ============================================
   CTA SECTION STYLES
============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2d47 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: var(--font-size-16);
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(21, 105, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 105, 253, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(21, 105, 253, 0.3);
}

.cta-feature-icon i {
    font-size: var(--font-size-24);
    color: var(--text-white);
}

.cta-feature-text h4 {
    font-size: var(--font-size-18);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.cta-feature-text p {
    font-size: var(--font-size-14);
    color: var(--text-light);
    margin: 0;
}

.section-title span {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVE STYLES FOR CTA SECTION
============================================ */

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 40px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-features {
        gap: 20px;
    }

    .cta-feature-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cta-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-feature-icon {
        width: 50px;
        height: 50px;
    }

    .cta-feature-icon i {
        font-size: var(--font-size-20);
    }
}