.services-section {
    background: #f5f6f8;
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD STYLE */
.service-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ICON */
.service-card .icon {
    font-size: 40px;
    color: #ff2e93;
    margin-bottom: 20px;
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

/* TEXT */
.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.testimonial-section {
    position: relative;

    /* 🔥 IMAGE + DARK OVERLAY TOGETHER */
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('assets/images/image7.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 20px;
    text-align: center;
    color: #ffffff;
}

/* CONTAINER */
.testimonial-section .container {
    max-width: 900px;
    margin: auto;
}

/* SINGLE TESTIMONIAL */
.testimonial-single {
    max-width: 800px;
    margin: auto;
}

/* QUOTE ICON */
.quote-icon {
    font-size: 70px;
    color: #ff4da6; /* PINK */
    margin-bottom: 25px;
    font-weight: bold;
}

/* TEXT */
.testimonial-single p {
    font-size: 22px;
    line-height: 1.9;
    color: #ffffff; /* FULL WHITE */
    font-weight: 500;
    margin-bottom: 40px;
}

/* AUTHOR */
.author {
    margin-top: 20px;
}

.author h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.author span {
    font-size: 16px;
    color: #cccccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 20px;
    }

    .testimonial-single p {
        font-size: 18px;
    }

    .quote-icon {
        font-size: 50px;
    }
}
/* BASE */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background: linear-gradient(to bottom, #f5f5f7, #eaeaf0);
}

/* SECTION */
.pricing-section {
    padding: 100px 20px;
    text-align: center;
}

.subtitle {
    color: #86868b;
    font-size: 14px;
}

.title {
    font-size: 42px;
    font-weight: 600;
    margin: 10px 0 70px;
    color: #1d1d1f;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.card {
    position: relative;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 460px;
    text-align: left;

    transition: all 0.35s ease;

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* HOVER */
.card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0071e3, #42a1ff);
    box-shadow: 0 30px 80px rgba(0,113,227,0.25);
}

/* TITLE */
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1d1d1f;
}

/* LABEL */
.plan-label,
.price-sub {
    font-size: 13px;
    color: #86868b;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 20px 0;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features li {
    font-size: 14px;
    padding: 10px 0;
    color: #515154;
    display: flex;
    align-items: center;
}

/* CHECK ICON */
.features li::before {
    content: "✓";
    margin-right: 10px;
    color: #0071e3;
    font-size: 12px;
}

/* HIGHLIGHT */
.features li.highlight {
    font-weight: 600;
    color: #0071e3;
}

/* MUTED */
.features li.muted {
    color: #999;
    font-size: 13px;
}

/* BUTTON */
.card button {
    margin-top: auto;
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #005bb5;
}

/* BADGE */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    color: #ff3b30;
    font-weight: 600;
}

/* HOVER TEXT FIX */
.card:hover h3,
.card:hover .price,
.card:hover .features li,
.card:hover .plan-label,
.card:hover .price-sub {
    color: #fff;
}

.card:hover .features li::before {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }
}