/* Service Page Styles */
.service-page {
    background-color: #fff;
}

.service-page .main_menu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Breadcrumb Section */
.breadcrumb_bg {
    position: relative;
    background-image: url("../img/about-page-cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-top: 0;
}

.breadcrumb_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 221, 109, 0.6); /* semi-transparent green */
    backdrop-filter: blur(4px);
    z-index: 1;
}

.breadcrumb_iner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.breadcrumb_iner_item h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb_iner_item p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
    opacity: 0.9;
}

.breadcrumb_img {
    text-align: right;
}

.breadcrumb_img img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #40B977;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.services-header h2 {
    display: inline-block;
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e8f5ef;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #40B977;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #40B977;
    color: #fff;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(64, 185, 119, 0.1);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(64, 185, 119, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #40B977;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.step-card:hover .step-icon {
    transform: rotateY(180deg);
    background: #333;
}

.step-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    color: #40B977;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: #2D8B57;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f8f9fa;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn_1,
.cta-buttons .btn_2 {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn_1 {
    background: #40B977;
    color: #fff;
}

.cta-buttons .btn_2 {
    background: transparent;
    border: 2px solid #40B977;
    color: #40B977;
}

.cta-buttons .btn_1:hover {
    background: #2D8B57;
    transform: translateY(-3px);
}

.cta-buttons .btn_2:hover {
    background: #40B977;
    color: #fff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-header h2 {
        font-size: 32px;
        padding: 10px 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
        margin: 30px auto 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .step-card {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .services-overview {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 28px;
        padding: 8px 25px;
    }

    .services-header p {
        font-size: 16px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .step-number {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 28px;
    }

    .step-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step-card p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .services-overview {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-header h2 {
        font-size: 24px;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .services-header p {
        font-size: 15px;
        padding: 0 15px;
    }

    .how-it-works {
        padding: 50px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 30px auto 0;
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 15px;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .step-icon i {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .services-overview {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 22px;
        padding: 8px 15px;
    }

    .services-header p {
        font-size: 14px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .how-it-works {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .steps-grid {
        max-width: 100%;
        padding: 0 15px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-number {
        font-size: 36px;
        top: 10px;
        left: 10px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 20px;
    }

    .step-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Why Choose Our Services Section */
.why-choose-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 185, 119, 0.1) 0%, rgba(45, 139, 87, 0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #40B977, #2D8B57);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-container {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-main {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #40B977, #2D8B57);
    opacity: 0.1;
    z-index: 0;
}

.feature-main .feature-content {
    position: relative;
    z-index: 1;
}

.feature-main h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-main p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-main .feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #40B977, #2D8B57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.feature-main .feature-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.feature-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #40B977, #2D8B57);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(64, 185, 119, 0.1);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #40B977, #2D8B57);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #2D8B57, #40B977);
}

.feature-item .feature-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.feature-item .feature-content {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item:hover h3 {
    color: #40B977;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features-container {
        flex-direction: column;
    }

    .feature-main {
        padding: 30px;
    }

    .feature-main h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-item {
        padding: 25px;
    }

    .feature-item .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-item .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Mission Vision Values Section */
.mission-vision-values {
    padding: 60px 0;
    background-color: #eef6f1; /* Light green background */
}

.mission-vision-values .mvv-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-left: 5px solid #40B977; /* Green accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-values .mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mission-vision-values .mvv-card h3 {
    font-size: 24px;
    color: #2D8B57; /* Darker green for heading */
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-vision-values .mvv-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.mission-vision-values .mvv-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.mission-vision-values .mvv-card ul li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.mission-vision-values .mvv-card ul li::before {
    content: "\2022"; /* Bullet point */
    color: #40B977; /* Green bullet */
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1.2em;
    position: absolute;
    left: 10px;
}

/* Responsive adjustments for MVV section */
@media (max-width: 991px) {
    .mission-vision-values .col-lg-4:last-child .mvv-card {
        margin-top: 0; /* Reset margin for tablet view if needed */
    }
}

@media (max-width: 767px) {
    .mission-vision-values {
        padding: 40px 0;
    }
    .mission-vision-values .mvv-card {
        margin-bottom: 20px;
    }
    .mission-vision-values .col-lg-4 {
        margin-bottom: 0; /* Remove default bottom margin on small screens */
    }
} 