/* ========================================
   SERVICE INTRODUCTION
   ======================================== */
.service-intro {
    padding: 100px 0 20px;
    background: white;
}
.single-services .title {
    font-size: 40px;
}

.intro-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    line-height: 1.3;
}

.intro-content p {
    line-height: 1.8;
    color: #595B62;
    margin-bottom: 20px;
}

/* ========================================
   SERVICE SECTIONS
   ======================================== */
.service-sec {
    padding: 80px 0;
    border-bottom: 1px solid #E8E8E8;
}

.service-sec:nth-child(even) {
    background: #f8f5f2;
}

.service-sec:nth-child(odd) {
    background: white;
}

.service-sec:last-child {
    border-bottom: none;
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.section-left {
    position: sticky;
    top: 30px;
}

.section-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A4137 0%, #2D6A5C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: #283c8b2c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.section-icon i {
    font-size: 44px;
    color: #0573BB;
}


.section-right {
    padding-top: 10px;
}

.section-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #595B62;
    margin-bottom: 30px;
}

.scope-title {
    font-weight: 600;
    color: #0A1F1B;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scope-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}

.scope-list li {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    line-height: 1.6;
    color: #595B62;
}

.scope-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #0573BB;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2f3e83 0%, #1e2c6d 60%, #0c1633 100%);
    color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-section h2, .why-choose-section p {
    color: #FFF;
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 22px;
    color: white;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #FFF;
}

.benefit-content p {
    font-size: 15px;
    opacity: 0.85;
    margin: 0;
    color: #FFF;
}

.why-choose-right {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    color: #1A4137;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.image-badge p {
    font-size: 14px;
    color: #595B62;
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: #F8F9FA;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0A1F1B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: #595B62;
    margin-bottom: 40px;
}

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



/* ========================================
   SPECIAL SECTIONS (for ISO page)
   ======================================== */
.iso-standards {
    padding: 80px 0;
    background: white;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.standard-item {
    background: #F8F9FA;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.standard-item:hover {
    background: white;
    border-color: #0573BB;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 65, 55, 0.1);
}

.standard-item i {
    font-size: 40px;
    color: #0573BB;
    margin-bottom: 15px;
}

.standard-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0573BB;
    margin-bottom: 8px;
}

.standard-item p {
    font-size: 14px;
    color: #595B62;
    line-height: 1.5;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0A1F1B;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 17px;
    color: #595B62;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .page-banner {
        padding: 100px 0 70px;
    }

    .page-banner h1 {
        font-size: 38px;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-left {
        position: static;
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .section-left .divider {
        display: none;
    }

    .section-icon {
        margin-bottom: 20px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-right {
        order: -1;
    }

    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.service-sec h2 {
		font-size:36px;
	}
}

@media (max-width: 767px) {
    .page-banner {
        padding: 80px 0 60px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .intro-content h2 {
        font-size: 32px;
    }

    .intro-content p {
        font-size: 16px;
    }

    .service-intro,
    .service-sec,
    .why-choose-section,
    .cta-section,
    .iso-standards {
        padding: 60px 0;
    }

    .section-left {
        flex-direction: column;
        align-items: start;
    }
	.service-sec h2 {
		font-size:30px;
	}

    .section-left h3 {
        font-size: 24px;
    }

    .section-right p {
        font-size: 16px;
    }

    .scope-list li {
        font-size: 15px;
    }

    .why-choose-left h2 {
        font-size: 32px;
    }

    .why-choose-left p {
        font-size: 16px;
    }

    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 25px;
    }

    .image-badge h3 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
	.section-container {
    gap: 10px;
}
}

@media (max-width: 575px) {
    .page-banner h1 {
        font-size: 28px;
    }

    .intro-content h2 {
        font-size: 28px;
    }

    .section-left h3 {
        font-size: 22px;
    }

    .why-choose-left h2,
    .cta-content h2,
    .section-title h2, .section-title h2 {
        font-size: 28px;
    }
}
