﻿:root {
            --gradient-1: linear-gradient(135deg, #FF8008 0%, #FFC837 100%); /* Orange */
            --gradient-2: linear-gradient(135deg, #FFD93D 0%, #FFF89A 100%); /* Light Yellow */
            --gradient-3: linear-gradient(135deg, #38EF7D 0%, #11998E 100%); /* Green */
            --gradient-4: linear-gradient(135deg, #2575FC 0%, #6A11CB 100%); /* Blue */
            --bg-light: #f4f6f9;
            --text-dark: #2c3e50;
            --primary-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            --secondary-font: 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--secondary-font);
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .services-section {
            padding: 6rem 0;
            background: linear-gradient(to right, #f5f7fa, #e9ecef);
        }

        .services-header {
            margin-bottom: 4rem;
            text-align: center;
        }

        .services-header h1 {
            font-family: var(--primary-font);
            background: linear-gradient(45deg, rgb(27, 25, 30), rgb(27, 60, 116));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            line-height: 1.2;
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .services-header p {
            font-family: var(--secondary-font);
            color: var(--text-dark);
            opacity: 0.85;
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 1.7;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
        }

        .service-card:nth-child(1)::before { background: var(--gradient-1); }
        .service-card:nth-child(2)::before { background: var(--gradient-2); }
        .service-card:nth-child(3)::before { background: var(--gradient-3); }
        .service-card:nth-child(4)::before { background: var(--gradient-4); }

        .service-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 2rem auto 1.5rem;
            background-size: 200% 200%;
            background-position: 0% 0%;
            transition: all 0.5s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .service-card:nth-child(1) .service-icon { background: var(--gradient-1); }
        .service-card:nth-child(2) .service-icon { background: var(--gradient-2); }
        .service-card:nth-child(3) .service-icon { background: var(--gradient-3); }
        .service-card:nth-child(4) .service-icon { background: var(--gradient-4); }

        .service-icon i {
            color: white;
            font-size: 2.25rem;
        }

        .service-card h5 {
            font-family: var(--primary-font);
            color: #1a202c;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: -0.01em;
        }

        .service-card p {
            font-family: var(--secondary-font);
            color: #4a5568;
            text-align: center;
            font-weight: 400;
            padding: 0 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .more-details-btn {
            font-family: var(--primary-font);
            background: linear-gradient(45deg, #6A11CB, #2575FC);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 auto 1.5rem;
            display: block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            letter-spacing: 0.01em;
        }

        .more-details-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 24px rgba(106, 17, 203, 0.3);
            color: white;
        }

        /* Analytics Section Styles */
        .analytics-section {
            padding: 6rem 0;
            position: relative;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .analytics-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.92);
            z-index: 0;
        }

        .analytics-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 4rem;
        }

        .analytics-badge {
            font-family: var(--primary-font);
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 700;
            color: #4facfe;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
            padding: 0.5rem 1rem;
            background: rgba(79, 172, 254, 0.1);
            border-radius: 20px;
        }

        .analytics-title {
            font-family: var(--primary-font);
            font-size: clamp(2.25rem, 4vw, 3rem);
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .analytics-description {
            font-family: var(--secondary-font);
            font-size: 1.125rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .analytics-card {
            background-color: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .analytics-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }

        .analytics-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .analytics-icon i {
            font-size: 2rem;
            color: #4facfe;
        }

        .analytics-card h3 {
            font-family: var(--primary-font);
            font-size: 1.375rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1rem;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .analytics-card p {
            font-family: var(--secondary-font);
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .analytics-btn {
            font-family: var(--primary-font);
            background-color: transparent;
            color: #4facfe;
            border: 2px solid #4facfe;
            padding: 0.625rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            letter-spacing: 0.01em;
        }

        .analytics-btn:hover {
            background-color: #4facfe;
            color: white;
            transform: translateY(-2px);
        }

        .analytics-btn i {
            margin-left: 0.5rem;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .analytics-btn:hover i {
            transform: translateX(4px);
        }

        .featured-card {
            background-color: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .featured-card.border-blue {
            border-left: 4px solid #4facfe;
        }

        .featured-card.border-cyan {
            border-left: 4px solid #00f2fe;
        }

        .featured-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }

        .featured-card-content {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .featured-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .featured-icon.blue {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
        }

        .featured-icon.cyan {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
        }

        .featured-icon i {
            font-size: 1.875rem;
        }

        .featured-icon.blue i {
            color: #4facfe;
        }

        .featured-icon.cyan i {
            color: #00f2fe;
        }

        .featured-card h3 {
            font-family: var(--primary-font);
            font-size: 1.375rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 0.75rem;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .featured-card p {
            font-family: var(--secondary-font);
            color: #64748b;
            margin-bottom: 0;
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .featured-btn {
            font-family: var(--primary-font);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            letter-spacing: 0.01em;
        }

        .featured-btn.blue {
            background-color: #4facfe;
            color: white;
        }

        .featured-btn.cyan {
            background-color: #00f2fe;
            color: white;
        }

        .featured-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: white;
        }

        .featured-btn i {
            margin-left: 0.5rem;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .featured-btn:hover i {
            transform: translateX(4px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-section, .analytics-section {
                padding: 4rem 0;
            }

            .service-card, .analytics-card, .featured-card {
                padding: 2rem;
            }

            .featured-card-content {
                flex-direction: column;
                text-align: center;
            }

            .featured-icon {
                margin: 0 auto 1.5rem;
            }
        }

        .professional-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
            position: relative;
            overflow: hidden;
        }

        .professional-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.6;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: none;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .trust-indicators {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .trust-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .trust-stat {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .trust-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #60a5fa;
            display: block;
        }

        .trust-stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.25rem;
        }

        @media (max-width: 768px) {
            .professional-cta {
                padding: 3rem 0;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-subtitle {
                font-size: 1.1rem;
            }
            
            .trust-stats {
                gap: 1rem;
            }
        }

/*Publishing Tools Section */
         /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-6, .col-lg-4, .col-lg-6 {
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        
        .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
        
        .col-lg-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        
        .justify-content-center {
            justify-content: center;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-5 {
            margin-bottom: 3rem;
        }
        
        .g-4 {
            margin: -15px;
        }
        
        .g-4 > [class*="col-"] {
            padding: 15px;
        }
        
        /* Publishing Tools Section Styles */
        #Publishing_Tool {
            padding: 5rem 0;
            position: relative;
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
        }
        
        #Publishing_Tool .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            z-index: 0;
        }
        
        #Publishing_Tool .container {
            position: relative;
            z-index: 1;
        }
        
        /* Section Header */
        #Publishing_Tool .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        
        #Publishing_Tool .section-header p {
            font-size: 1.1rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }
        
        /* Tool Cards */
        .tool-card {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: none;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .tool-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255,154,158,0.1) 0%, rgba(250,208,196,0.2) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .tool-icon i {
            font-size: 3rem;
            color: #ff9a9e;
        }
        
        .tool-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .tool-card p {
            color: #4a5568;
            margin-bottom: 1.5rem;
        }
        
        .tool-button {
            background-color: #ff9a9e;
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .tool-button:hover {
            background-color: #ff7b81;
            transform: translateY(-2px);
        }
        
        /* Decorative Circles */
        .circle-top-right {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255,154,158,0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-bottom-left {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255,154,158,0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-small-top-right {
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: rgba(255,154,158,0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-large-bottom-right {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: rgba(255,154,158,0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-medium-top-left {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 160px;
            height: 160px;
            background: rgba(255,154,158,0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .col-lg-4, .col-lg-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .col-md-6, .col-lg-4, .col-lg-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            #Publishing_Tool .section-header h2 {
                font-size: 2rem;
            }
            
            #Publishing_Tool .section-header p {
                font-size: 1rem;
            }
        }

         /* seo tool section */
      
        
      
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-6, .col-lg-4, .col-12 {
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        
        .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
        
        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .justify-content-center {
            justify-content: center;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-6 {
            margin-bottom: 4rem;
        }
        
        .mt-6 {
            margin-top: 4rem;
        }
        
        .g-5 {
            margin: -20px;
        }
        
        .g-5 > [class*="col-"] {
            padding: 20px;
        }

        /* SEO Tools Section Styles */
        #seotool-section {
            padding: 6rem 0;
            position: relative;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
     
        
        .seotool-badge {
            display: inline-block;
            background: linear-gradient(90deg, #9be15d 0%, #00e3ae 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        
        .seotool-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a365d;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .seotool-subtitle {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.6;
        }

        /* Tool Cards */
        .seotool-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
            height: 100%;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }
        
        .seotool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }
        
        .seotool-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #9be15d 0%, #00e3ae 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .seotool-icon i {
            font-size: 2rem;
        }
        
        .seotool-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 1rem;
        }
        
        .seotool-card p {
            color: #4a5568;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .seotool-button {
            background: linear-gradient(90deg, #9be15d 0%, #00e3ae 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(155, 225, 93, 0.3);
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        
        .seotool-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(155, 225, 93, 0.4);
        }

        /* Decorative Circles */
        .circle-bottom-right {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(155,225,93,0.03) 0%, rgba(0,227,174,0.03) 100%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-top-left {
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(155,225,93,0.03) 0%, rgba(0,227,174,0.03) 100%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-small-bottom-right {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, rgba(155,225,93,0.03) 0%, rgba(0,227,174,0.03) 100%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-small-top-left {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, rgba(155,225,93,0.03) 0%, rgba(0,227,174,0.03) 100%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .circle-medium-bottom-right {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, rgba(155,225,93,0.03) 0%, rgba(0,227,174,0.03) 100%);
            border-radius: 50%;
            z-index: -1;
        }

        /* CTA Button */
        .seotool-cta-button {
            background: transparent;
            color: #1a365d;
            border: 2px solid #9be15d;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 2rem;
            cursor: pointer;
        }
        
        .seotool-cta-button:hover {
            background-color: #9be15d;
            color: white;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .col-lg-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .seotool-title {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .col-md-6, .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .seotool-title {
                font-size: 2rem;
            }
            
            .seotool-subtitle {
                font-size: 1.1rem;
            }
            
            #seotool-section {
                padding: 4rem 0;
            }
        }

        /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-4 {
            padding: 0 15px;
            box-sizing: border-box;
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
        
        .justify-content-center {
            justify-content: center;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-5 {
            margin-bottom: 3rem;
        }
        
        .g-4 {
            margin: -15px;
        }
        
        .g-4 > [class*="col-"] {
            padding: 15px;
        }

        /* Popularity Stats Section */
        .popularity-stats {
            padding: 5rem 0;
            position: relative;
            background: rgb(72, 67, 67);
        }
        
        .popularity-stats .container {
            position: relative;
            z-index: 1;
        }
        
        /* Section Header */
        .stats-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f5f5f5;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .stats-header p {
            font-size: 1.1rem;
            color: #d1d1d1;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Stats Cards */
        .stat-card {
            background-color: #1e1e1e;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: none;
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }
        
        .stat-icon-container {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .likes-icon {
            background: rgba(255, 82, 82, 0.15);
        }
        
        .follows-icon {
            background: rgba(66, 165, 245, 0.15);
        }
        
        .reviews-icon {
            background: rgba(102, 187, 106, 0.15);
        }
        
        .stat-icon {
            font-size: 3rem;
        }
        
        .likes-icon .stat-icon {
            color: #ff5252;
        }
        
        .follows-icon .stat-icon {
            color: #42a5f5;
        }
        
        .reviews-icon .stat-icon {
            color: #66bb6a;
        }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .likes-number {
            color: #ff5252;
        }
        
        .follows-number {
            color: #42a5f5;
        }
        
        .reviews-number {
            color: #66bb6a;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #d1d1d1;
            margin-bottom: 0;
            font-weight: 600;
        }

        /* Decorative Circles */
        .stat-circle {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
        }
        
        .likes-circle {
            bottom: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            background: rgba(255, 82, 82, 0.05);
        }
        
        .follows-circle {
            top: -20px;
            left: -20px;
            width: 120px;
            height: 120px;
            background: rgba(66, 165, 245, 0.05);
        }
        
        .reviews-circle {
            bottom: -40px;
            left: -40px;
            width: 150px;
            height: 150px;
            background: rgba(102, 187, 106, 0.05);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .stats-header h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .col-md-4 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }
            
            .stats-header h2 {
                font-size: 2rem;
            }
            
            .popularity-stats {
                padding: 3rem 0;
            }
        }

         /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-6, .col-lg-4 {
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        
        .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
        
        .justify-content-center {
            justify-content: center;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-5 {
            margin-bottom: 3rem;
        }
        
        .g-4 {
            margin: -15px;
        }
        
        .g-4 > [class*="col-"] {
            padding: 15px;
        }

        /* Enhanced Marketing Tools Section */
        #enhanced {
            padding: 5rem 0;
            position: relative;
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
        }
        
        .enhanced-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            z-index: 0;
        }
        
        #enhanced .container {
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .enhanced-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        
        .enhanced-header p {
            font-size: 1.1rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Tool Cards */
        .enhanced-card {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: none;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .enhanced-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .enhanced-icon-container {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(161,140,209,0.1) 0%, rgba(251,194,235,0.2) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .enhanced-icon {
            font-size: 3rem;
            color: #a18cd1;
        }
        
        .enhanced-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .enhanced-card p {
            color: #4a5568;
            margin-bottom: 1.5rem;
        }
        
        .enhanced-button {
            background-color: #a18cd1;
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        
        .enhanced-button:hover {
            background-color: #8e7bc0;
            transform: translateY(-2px);
        }

        /* Decorative Circles */
        .enhanced-circle {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            background: rgba(161,140,209,0.05);
        }
        
        .circle-top-right {
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
        }
        
        .circle-bottom-left {
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
        }
        
        .circle-small-top-right {
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
        }
        
        .circle-large-bottom-right {
            bottom: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
        }
        
        .circle-medium-top-left {
            top: -30px;
            left: -30px;
            width: 160px;
            height: 160px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .col-lg-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .enhanced-header h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .col-md-6, .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .enhanced-header h2 {
                font-size: 2rem;
            }
            
            #enhanced {
                padding: 3rem 0;
            }
        }