a {
    text-decoration: none;
}

p {
    line-height: 1.7;
    margin: 0;
}

/* ---------------- BUTTONS ---------------- */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(6,156,212), #0ea5e9);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(6,156,212,0.35);
}

.btn-secondary {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(22,163,74,0.3);
}

.btn:hover {
    transform: translateY(-3px);
}

     /* -------- COMPACT HERO SECTION -------- */
.solobea-hero {
    min-height: 60vh;
    background:
            linear-gradient(rgba(6,156,212,0.65), rgba(6,156,212,0.75)),
            url("/images/webdevf.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


.solobea-hero-overlay {
    max-width: 850px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}

.solobea-hero-title {
    font-size: 34px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.solobea-hero-text {
    font-size: 16px;
    margin-bottom: 22px;
    opacity: 0.95;
    line-height: 1.6;
}

.solobea-hero-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    background: #ffffff;
    color: rgb(6,156,212);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.25s;
}

.solobea-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 600px) {
    .solobea-hero {
        min-height: 50vh;
    }

    .solobea-hero-title {
        font-size: 26px;
    }

    .solobea-hero-text {
        font-size: 14px;
    }
}

/* ---------------- SECTIONS ---------------- */
.home-section {
    padding: 90px 20px;
    background: var(--white-color);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--grey-color);
    font-size: 16px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ---------------- GRID ---------------- */
.solobea-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* ---------------- CARDS ---------------- */
.home-card {
    background: var(--white-color);
    border-radius: 18px;
    padding: 34px 28px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, rgb(6,156,212), #0ea5e9);
    border-radius: 18px 18px 0 0;
}

.home-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
}

.home-card p {
    color: var(--grey-color);
    font-size: 15px;
}

.home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(6,156,212,0.25);
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonials {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 34px 30px;
    position: relative;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -22px;
    left: 18px;
    font-size: 90px;
    font-weight: bold;
    color: rgba(6,156,212,0.15);
}

.testimonial-text {
    font-style: italic;
    color: var(--grey-color);
    margin-bottom: 18px;
}

.testimonial-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-color);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(6,156,212,0.28);
}

/* ---------------- TESTIMONIAL FORM ---------------- */
.testimonial-form {
    max-width: 620px;
    margin: 80px auto 0;
    background: var(--white-color);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.testimonial-form h3 {
    text-align: center;
    margin-bottom: 26px;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgb(6,156,212);
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

/* ---------------- CTA SECTION ---------------- */
.cta-section {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgb(6,156,212), #0ea5e9);
    color: var(--white-color);
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 28px;
    font-size: 17px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
    .solobea-hero-title {
        font-size: 34px;
    }

    .home-section {
        padding: 70px 16px;
    }
}

@media (max-width: 480px) {
    .solobea-hero-title {
        font-size: 28px;
    }

    .btn,
    .solobea-hero-button {
        width: 100%;
        text-align: center;
    }
}