/* ============================================
   MODERN SEO WEBSITE - GLOBAL STYLES
   ============================================ */

/* Color Variables */
:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b35;
    --dark-bg: #0f1419;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e8eef5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Responsive media */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix flex/grid issues */
.container {
    min-width: 0;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}.accordion-button,
.btn-light {
    color: var(--text-dark);
    background-color: #f5f7fa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    border-color: var(--primary-color);
    background-color: var(--light-bg);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.carouselCard {
    width: 80%;
    height: 50vh;
    margin: auto;
}

/* Modern Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-dark, .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    box-shadow: var(--shadow-sm);
}

.btn-dark:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

/* Hero Section Button Override */
.header-section .btn-dark {
    background-color: white;
    color: var(--primary-color) !important;
    background: white;
}

.header-section .btn-dark:hover {
    background-color: #f5f5f5;
    color: var(--primary-color) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white !important;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    border-color: white;
}

/* Modern Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--light-bg);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-img-top {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 0.5rem;
}

/* Modern Card Borders */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Section Styling */
#about h2,
#blogs h2,
#choose-us h2,
#why-us h2,
#services h2,
#faq h2,
#free-proposal h2,
#contact-form h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1rem;
    line-height: 1.8;
}

#about ul {
    padding-left: 0;
    list-style: none;
}

#about ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* About Section */
#main-content {
    padding: 4rem 0;
}

#main-content p {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.8;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

#services ul {
    list-style: none;
    padding-left: 0;
}

#services ul li {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

#services h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.arrow-icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Why Choose Section */
#choose-us,
#why-us {
    padding: 4rem 0;
}

#choose-us .card,
#why-us .card {
    border-radius: 12px;
    overflow: hidden;
}

#choose-us .card::before,
#why-us .card::before {
    height: 6px;
}

.fixed-height-card {
    display: flex;
}

.fixed-height-card .card {
    width: 100%;
    height: auto;
}

/* Hero Section */
.header-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.header-section .container {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.text-primary {
    color: var(--secondary-color) !important;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    transition: var(--transition);
}

.hero-main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
}

.blur-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    top: -100px;
    right: -100px;
}

.analytic-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Accordion */
#faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: #f5f7fa;
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    background-color: #f5f7fa;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-light);
    box-shadow: none;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    background-color: #fafbfc;
}

.accordion-item {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    margin-bottom: 1rem;
    overflow: hidden;
}

/* Free Proposal Section */
#free-proposal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

#free-proposal h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

#free-proposal p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#free-proposal .form-control {
    border-radius: 50px !important;
    border: none !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    background-color: white !important;
    color: var(--text-dark) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#free-proposal .form-control::placeholder {
    color: #999;
}

#free-proposal .form-control:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    outline: none !important;
    background-color: white !important;
}

#free-proposal .btn {
    background-color: white !important;
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.05rem;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 2.5rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

#free-proposal .btn:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

#free-proposal .btn:active {
    transform: translateY(-1px);
}

/* Form Styling */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-bg);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background-color: var(--light-bg);
}

.form-control::placeholder {
    color: #999;
}

/* Navbar Styling */
.navbar {
    background-color: var(--light-bg) !important;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f2e 100%);
    color: #e0e0e0;
    padding: 3rem 0 1rem;
}

footer h5 {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

footer p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: #b0b0b0;
    transition: var(--transition);
}

footer a:hover {
    color: var(--secondary-color);
}

footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: var(--transition);
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

footer .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

/* Service List Styling */
#services ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

#services ul li span.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

#services ul li div {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .header-section {
        min-height: 60vh;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .lead {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    #services h3 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    #services ul li {
        font-size: 0.95rem;
    }

    .card {
        margin-bottom: 1rem;
    }

    footer h5 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    #free-proposal h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   SERVICES PAGE STYLING
   ============================================ */

#servicePage .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--light-bg);
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

#servicePage .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

#servicePage .card-img-top {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 0.5rem;
}

#servicePage .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

#servicePage .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Proposal Section */
.proposal-section .proposal-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.proposal-card h2 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.proposal-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.proposal-card .btn-light {
    background-color: white;
    color: var(--primary-color) !important;
    font-weight: 700;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.proposal-card .btn-light:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Main Services Section */
.main-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.main-services-section h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.main-services-section ul {
    list-style: none;
    padding-left: 0;
}

.main-services-section ul li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.main-services-section .arrow-icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
    min-width: 24px;
}

.main-services-section img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.main-services-section img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.main-services .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    font-weight: 700;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.main-services .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Pricing Section */
#pricing {
    margin-top: 2rem;
}

#pricing .card {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

#pricing .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

#pricing .card-body {
    padding: 2rem;
}

#pricing .card-body ul {
    list-style: none;
    padding: 0;
}

#pricing .card-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

#pricing .card-body ul li:last-child {
    border-bottom: none;
}

/* Feature Cards */
.feature-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-title img {
    height: 40px;
    width: 40px;
}

.feature-content {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.seo-features {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.seo-features h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.seo-features > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Announcement Section */
.announcement {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.announcement .card {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.announcement h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
}

.announcement p {
    color: rgba(255, 255, 255, 0.95);
}

.announcement .btn-danger {
    background-color: white !important;
    color: var(--primary-color) !important;
    font-weight: 700;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.announcement .btn-danger:hover {
    background-color: #f5f5f5 !important;
    transform: translateY(-2px);
}

/* SEO Success Section */
#seo-success {
    padding: 4rem 0;
}

#seo-success h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

#seo-success .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

#seo-success .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

#seo-success .card-img-top {
    height: 70px;
    width: auto;
    object-fit: contain;
}

#seo-success .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

#seo-success .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Circular Cards */
.rounded-circle {
    border-radius: 16px !important;
    transition: var(--transition);
}

.rounded-circle:hover {
    transform: translateY(-10px);
}

.rounded-circle .card-img-top {
    border-radius: 50%;
}

/* Proposal Card */
.prop-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--light-bg);
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.prop-card h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.prop-card p {
    color: var(--text-light);
}

.prop-card .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    font-weight: 700;
}

.prop-card .btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   HOW DO SEO SERVICES WORK SECTION
   ============================================ */

/* Target the section with How Do SEO Services Work */
section.py-5 h3 {
    background: none !important;
    padding: 0 !important;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

/* Benefits List Items */
section.py-5 div.row.align-items-center ul.list-unstyled {
    margin-left: 0;
    padding-left: 0;
}

section.py-5 div.row.align-items-center ul.list-unstyled li {
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

section.py-5 div.row.align-items-center ul.list-unstyled li .arrow-icon {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    margin-top: 0;
}

section.py-5 div.row.align-items-center ul.list-unstyled li b {
    color: var(--text-dark);
    font-weight: 700;
    display: inline;
    margin-right: 0.25rem;
}

section.py-5 div.row.align-items-center ul.list-unstyled li > div {
    flex: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}

.benefit-card__icon img {
    width: 40px;
    height: 40px;
}

.benefit-card h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* SEO Consulting Card */
.prop-card {
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.prop-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.prop-card h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.prop-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prop-card .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
}

.prop-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CIRCULAR CARDS - WHY INVEST IN SEO
   ============================================ */

.rounded-circle.card {
    background: white;
    border: none;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    padding: 2.5rem 1.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.rounded-circle.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.rounded-circle.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.rounded-circle.card:hover::before {
    opacity: 1;
}

.rounded-circle.card img {
    margin-bottom: 1.5rem !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.rounded-circle.card:hover img {
    transform: scale(1.1);
}

.rounded-circle .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.rounded-circle .card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
