/* Styles extracted from windows-vps-hosting.php */

/* Features Section */
.feature-card {
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 28px 24px;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.12);
    border-color: #28a745;
}
.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f0faf2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    font-size: 22px;
    color: #28a745;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-box {
    background: #28a745;
    color: #ffffff;
}
.feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.features-section-divider {
    width: 60px;
    height: 3px;
    background-color: #28a745;
    border-radius: 10px;
    margin: 0 auto 40px auto;
}

/* Stance Section */
.stance-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0faf4 100%);
    border-top: 1px solid #e2f0e8;
    border-bottom: 1px solid #e2f0e8;
}
.stance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ec;
    color: #28a745;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.stance-heading {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 20px;
}
.stance-text {
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}
.stance-highlight-bar {
    border-left: 4px solid #28a745;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.7;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.06);
}
.stance-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.stance-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Us Section */
.why-section {
    background: #ffffff;
}
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ec;
    color: #28a745;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.why-heading {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 18px;
}
.why-text {
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}
.why-text-highlight {
    font-weight: 600;
    color: #28a745;
    margin-top: 20px;
}
.why-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.6;
}
.why-checklist li .chk-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f5ec;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}
.why-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.why-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.why-divider {
    width: 60px;
    height: 3px;
    background-color: #28a745;
    border-radius: 10px;
    margin-bottom: 24px;
}

/* Owl Carousel Nav Buttons */
.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 15px;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #28a745 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background-color: #218838 !important;
    transform: translateY(-2px);
}
