/* SEO Pages Shared Styles */
* {
    margin: 0;
    padding: 0;
      font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00cc99, #00a67c);
    border-radius: 10px;
    transition: all 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00a67c, #008c66);
}


body {
  
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #00cc99 0%, #00a67c 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-page {
    min-height: 100vh;
    padding: 40px 0;
}

.seo-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00cc99;
    margin: 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00cc99, #00a67c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Main Content Area */
.seo-card > * {
    padding-left: 40px;
    padding-right: 40px;
}

.seo-card > *:first-child {
    padding-top: 60px;
}

.seo-card > *:last-child {
    padding-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00cc99, #00a67c);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 204, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00cc99;
    border: 2px solid #00cc99;
}

.btn-secondary:hover {
    background: #00cc99;
    color: white;
    transform: translateY(-2px);
}

/* Features Grid */
.features {
    margin: 40px 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(0, 204, 153, 0.05);
    border-radius: 15px;
    border-left: 4px solid #00cc99;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 204, 153, 0.15);
    background: rgba(0, 204, 153, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00cc99, #00a67c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #00cc99;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 204, 153, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #00cc99;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #00cc99;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00cc99;
    margin: 20px 0;
}

.price-period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: #00cc99;
    font-weight: 600;
}

.pricing-features .cross {
    color: #ccc;
}

/* FAQ Styles */
.faq-container {
    margin: 40px 0;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00cc99;
    box-shadow: 0 5px 15px rgba(0, 204, 153, 0.1);
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #333;
}

.faq-question:hover {
    background: #e9ecef;
    color: #00cc99;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #00cc99;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* Countdown styles */
.countdown {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.countdown h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 70px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.breadcrumb a {
    color: #00cc99;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #00a67c;
    transform: translateX(-3px);
}

/* Documentation specific styles */
.doc-section {
    margin: 40px 0;
    text-align: left;
}

.doc-section h3 {
    color: #00cc99;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00cc99;
}

.code-block {
    background: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
}

.endpoint {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.endpoint-method {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}

.method-get {
    background: #d4edda;
    color: #155724;
}

.method-post {
    background: #cce5ff;
    color: #004085;
}

.method-put {
    background: #fff3cd;
    color: #856404;
}

.method-delete {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .seo-page {
        padding: 30px 0;
    }
    
       .seo-card > * {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .seo-card > *:first-child {
        padding-top: 40px;
    }
    
    .seo-card > *:last-child {
        padding-bottom: 40px;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: row;
        text-align: left;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured::before {
        top: 10px;
        right: -25px;
        padding: 3px 30px;
        font-size: 0.7rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 0.95rem;
        margin: 5px 0;
    }
    
    .countdown-timer {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .breadcrumb a {
        margin-left: 10px;
        font-size: 0.9rem;
    }
    
    .service-description {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .seo-card > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .seo-card > *:first-child {
        padding-top: 30px;
    }
    
    .seo-card > *:last-child {
        padding-bottom: 30px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .logo img {
        width: 50px;
        height: 50px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .feature-text strong {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        flex: 1;
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 15px;
    }
    
    .code-block {
        padding: 15px;
        font-size: 0.8rem;
    }
    
    .endpoint {
        padding: 12px;
    }
    
    .service-description {
        font-size: 1rem;
        padding: 0 5px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in {
    animation: slideInLeft 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .seo-card {
        background: rgba(30, 30, 30, 0.95);
        color: #e0e0e0;
    }
    
    .service-title {
        color: #f0f0f0;
    }
    
    .feature-text strong {
        color: #f0f0f0;
    }
    
    .feature-text p {
        color: #b0b0b0;
    }
    
    .pricing-card {
        background: #2a2a2a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .pricing-card h3 {
        color: #f0f0f0;
    }
    
    .faq-item {
        background: #2a2a2a;
        border-color: #404040;
    }
    
    .faq-question {
        background: #333;
        color: #e0e0e0;
    }
    
    .faq-question:hover {
        background: #404040;
    }
    
    .faq-answer {
        background: #2a2a2a;
    }
    
    .faq-answer p {
        color: #b0b0b0;
    }
    
    .endpoint {
        background: #333;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .code-block {
        background: #1a202c;
    }
}

/* Print styles */
@media print {
    .breadcrumb,
    .btn {
        display: none;
    }
    
    .seo-card {
        box-shadow: none;
        border: 1px solid #ccc;
        background: white;
    }
    
    .service-icon {
        background: #ccc !important;
    }
    
    .feature-icon {
        background: #ccc !important;
    }
    
    .countdown {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
    
    .code-block {
        background: #f5f5f5 !important;
        color: #333 !important;
        border: 1px solid #ccc;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .feature-item {
        border: 2px solid #00cc99;
        background: rgba(0, 204, 153, 0.1);
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #00cc99;
    }
    
    .btn-secondary {
        border-width: 3px;
    }
    
    .pricing-card {
        border-width: 3px;
    }
    
    .faq-item {
        border-width: 2px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .btn:hover,
    .feature-item:hover,
    .pricing-card:hover,
    .faq-item:hover {
        transform: none;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.faq-question:focus {
    outline: 3px solid #00cc99;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background: rgba(0, 204, 153, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(0, 204, 153, 0.3);
    color: #333;
}
