/* Google Penalty Removal Page Styles */

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-display: swap;
}

/* Google Penalty Removal Page Styles */

.top-header {
    background-color: #e67e22;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: Arial, sans-serif;
    padding-left: 100px;
}

.top-header h1 {
    font-size: 3em;
    margin: 0 10px 0 0;
    display: inline;
    vertical-align: middle;
}

.top-header span {
    font-size: 2em;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-header {
        height: 80px;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-header h1 {
        font-size: 2em;
        margin: 0 5px 0 0;
        vertical-align: middle;
    }

    .top-header span {
        font-size: 1.5em;
        vertical-align: middle;
    }
}

.services-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.services-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.service-item:nth-child(1) {
    border-top-color: #e67e22;
}

.service-item:nth-child(1) .icon {
    background-color: #e67e22;
}

.service-item:nth-child(2) {
    border-top-color: #ff6b6b;
}

.service-item:nth-child(2) .icon {
    background-color: #ff6b6b;
}

.service-item:nth-child(3) {
    border-top-color: #4ecdc4;
}

.service-item:nth-child(3) .icon {
    background-color: #4ecdc4;
}

.service-item:nth-child(4) {
    border-top-color: #45b7d1;
}

.service-item:nth-child(4) .icon {
    background-color: #45b7d1;
}

.service-item:nth-child(5) {
    border-top-color: #f9ca24;
}

.service-item:nth-child(5) .icon {
    background-color: #f9ca24;
}

.service-item:nth-child(6) {
    border-top-color: #f0932b;
}

.service-item:nth-child(6) .icon {
    background-color: #f0932b;
}

.service-item:nth-child(7) {
    border-top-color: #9b59b6;
}

.service-item:nth-child(7) .icon {
    background-color: #9b59b6;
}

.service-item:nth-child(8) {
    border-top-color: #1abc9c;
}

.service-item:nth-child(8) .icon {
    background-color: #1abc9c;
}

.service-item:nth-child(9) {
    border-top-color: #34495e;
}

.service-item:nth-child(9) .icon {
    background-color: #34495e;
}

.service-item:nth-child(10) {
    border-top-color: #e67e22;
}

.service-item:nth-child(10) .icon {
    background-color: #e67e22;
}

.service-item:nth-child(11) {
    border-top-color: #f39c12;
}

.service-item:nth-child(11) .icon {
    background-color: #f39c12;
}

.icon {
    width: 80px;
    height: 80px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    animation: icon-bounce 2s infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.icon i {
    color: white;
    font-size: 2em;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.industries-section {
    padding: 50px 0;
    background-color: white;
}

.industries-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industries-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.industries-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-item:hover {
    transform: translateY(-5px);
    border-color: #e67e22;
    background-color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.industry-item .icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.industry-item:hover .icon {
    transform: scale(1.1);
}

.industry-item .icon i {
    color: white;
    font-size: 1.5em;
}

.industry-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
}

.why-choose-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #e67e22;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3em;
    color: #e67e22;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.dm-stats-section {
    padding: 50px 0;
    background-color: #e67e22;
    color: white;
}

.dm-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat h3 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat p {
    font-size: 1.2em;
    opacity: 0.9;
}

.process-section {
    padding: 50px 0;
    background-color: white;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.process-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.platform-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.platform-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.platform-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.platform-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.platform-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-item:hover {
    transform: translateY(-5px);
    border-color: #e67e22;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.platform-item .icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.platform-item:hover .icon {
    transform: scale(1.1);
}

.platform-item .icon i {
    color: white;
    font-size: 1.5em;
}

.platform-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.platform-item p {
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 50px 0;
    background-color: white;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: #e67e22;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.dm-cta-section {
    background-color: #e67e22;
    padding: 50px 0;
    color: white;
    text-align: center;
}

.dm-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dm-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.dm-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #e67e22;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .dm-cta-section h2 {
        font-size: 2em;
    }

    .dm-cta-section p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 25px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section,
    .industries-section,
    .why-choose-section,
    .process-section,
    .platform-section,
    .faq-section {
        padding: 40px 0;
    }

    .services-section h2,
    .industries-section h2,
    .why-choose-section h2,
    .process-section h2,
    .platform-section h2,
    .faq-section h2 {
        font-size: 2em;
    }

    .services-grid,
    .industries-grid,
    .features-grid,
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item,
    .industry-item,
    .feature-card,
    .platform-item {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat h3 {
        font-size: 2em;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1em;
    }

    .faq-answer p {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .top-header {
        height: 70px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .top-header h1 {
        font-size: 1.5em;
    }

    .top-header span {
        font-size: 1.2em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dm-cta-section h2 {
        font-size: 1.8em;
    }

    .dm-cta-section p {
        font-size: 0.9em;
    }
}