/* Services Section Styles for seoheights.com */

:root {
    --primary-blue: #0066cc;
    --text-dark: #1a1a1a;
    --text-gray: #54595f;
    --border-color: #e1e8ed;
}

.st-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.st-section-header {
    margin-bottom: 70px;
}

.st-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.st-section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #ff7800; /* var(--text-gray); */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid System */
.st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card Styling */
.st-card {
    background: #C2EBE6;
    padding: 50px 35px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.st-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #FF9B43; /* var(--text-gray); */
}

/* Icon Wrapper */
.st-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #fff0f0; /*#f0f7ff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.st-card:hover .st-icon-wrapper {
    background-color: #ff7800; /* var(--text-gray); */
}

.st-icon-wrapper svg {
    color: #ff7800; /* var(--text-gray); */
    transition: color 0.3s;
}

.st-card:hover .st-icon-wrapper svg {
    color: #ffffff;
}

/* Card Text */
.st-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.st-card p {
    font-family: Mulish;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Button Styling */
.st-btn {
    margin-top: auto;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ff7800; /* var(--text-gray); */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #ff7800; /* var(--text-gray); */
    border-radius: 50px;
    transition: all 0.3s;
}

.st-card:hover .st-btn {
    background-color: #ff7800; /* var(--text-gray); */
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .st-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .st-grid {
        grid-template-columns: 1fr;
    }
    .st-section-header h2 {
        font-size: 32px;
    }
}