
        /* ✅ Container */
        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            padding: 30px;
        }


        .service-box {
            width: 150px;
            height: 152px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 10px 10px;
            /* reduce padding */
            display: flex;
            /* use flexbox */
            flex-direction: column;
            /* stack icon and h3 vertically */
            align-items: center;
            /* center horizontally */
            justify-content: flex-start;
            /* push content to top */
            transition: all 0.3s ease;
        }


        /* ✅ Icon */
        .service-box i {
            font-size: 40px;
            color: #050b41;
            margin-bottom: 8px;
            /* smaller gap to h3 */
            transition: color 0.3s ease, transform 0.3s ease;
        }


        /* ✅ Title (2 lines max) */
        .service-box h3 {
            font-size: 16px;
            color: #333;
            font-weight: 600;
            transition: color 0.3s ease;
            white-space: normal;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            /* limit to 2 lines */
            -webkit-box-orient: vertical;
        }

        /* ✅ Hover — only icon turns yellow */
        .service-box:hover i {
            color: #67990b;
            transform: scale(1.1);
        }
        /* Refund section styling */
.refund-section {
    background: #f9fafb;
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-primary-dark {
    color: #050B41;
}

.refund-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Button group */
.refund-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Refund Policy button */
.btn-green {
    background-color: #7FB800;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: #6da000;
    transform: translateY(-2px);
}

/* Talk To A Specialist button */
.btn-outline-specialist {
    border: 2px solid #050B41;
    color: #050B41;
    border-radius: 4px;
    font-weight: 600;
    padding: 10px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-specialist:hover {
    background-color: #050B41;
    color: #fff;
    transform: translateY(-2px);
}
html {
  scroll-behavior: smooth;
}
..features-box {
    background: #ffffff; /* white background */
    transition: all 0.3s ease-in-out;
    border-radius: 12px; /* optional: make corners rounded */
    padding: 20px; /* optional: spacing inside box */
}

.features-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bg-gradient-icon {
    background: linear-gradient(135deg, #7FB800, #4CAF50);
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto; /* spacing below icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.features-box-content h5 {
    color: #050B41; /* dark title */
    font-weight: 600;
}

.features-box-content p {
    font-size: 0.95rem;
    color: #fffefe; /* gray text for description */
}
