/* Base Styles */
.scraping-landing-page {
    --primary-color: #2495a9;
    --primary-dark: #265a56;
    --secondary-color: #7209b7;
    --accent-color: #4cc9f0;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}



html {
    scroll-behavior: smooth;
}




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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
}

/* Animations */



.scraping-cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.scraping-cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}



/* hero-scraping Section */
.hero-scraping {
    padding: 105px 0 54px;
    position: relative;
    /* background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%); */
    overflow: hidden;
}

.hero-scraping .scraping-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-scraping-content {
    z-index: 2;
    margin-top: -33px;
}

.hero-scraping-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    animation-delay: 0.2s;
}

.hero-scraping-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    animation-delay: 0.4s;
}

.hero-scraping-buttons {
    display: flex;
    gap: 15px;
    animation-delay: 0.6s;
}

.scraping-primary-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.scraping-primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    color: white;
}

.secondary-button {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.secondary-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-scraping-image {
    position: relative;
    animation-delay: 0.8s;
}

  


.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    background-color: #2495a9;
}

.wave-divider .shape-fill {
    fill: var(--bg-color);
}

.wave-divider.inverted {
    transform: rotate(180deg);
    top: 0;
}

/* Services Section */
.scraping-services {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scraping-service-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.scraping-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: transparent;
    background-image: linear-gradient(to left, #2495a9, #265a56);

}



.scraping-service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scraping-service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.scraping-service-card:hover h3,
  .scraping-service-card:hover .scraping-service-icon svg {
    color: white;
  }

.scraping-service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.scraping-service-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    padding: 43px 0;
    background-color: var(--bg-light);
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-content {
    margin-left: 30px;
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
}



/* scraping-testimonials Section */
.scraping-testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.scraping-testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scraping-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.scraping-testimonial-card {
    min-width: 100%;
    padding: 20px;
}

.scraping-testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    position: relative;
}

.scraping-testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.scraping-testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

.scraping-testimonial-author {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.scraping-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.prev-scraping-testimonial,
.next-scraping-testimonial {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.prev-scraping-testimonial:hover,
.next-scraping-testimonial:hover {
    color: var(--primary-color);
}

.prev-scraping-testimonial svg,
.next-scraping-testimonial svg {
    width: 20px;
    height: 20px;
}

.scraping-testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* scraping-contact Section */
.scraping-contact {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.scraping-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.scraping-contact-details {
    margin-top: 30px;
}

.scraping-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.scraping-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 15px;
}

.scraping-contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.scraping-contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}



/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-us .benefits-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us .benefits-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.why-choose-us .benefits-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 20px;
}

/* scraping-features Section */
.scraping-features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.scraping-features .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.scraping-features-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.scraping-features-image {
    flex: 1;
    text-align: center;
}

.scraping-features-image img {
    max-width: 100%;
    height: 507px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.scraping-features-list {
    flex: 1;
}

.scraping-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.scraping-feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 20px;
    
}

.scraping-feature-icon img {
    width: 100%;
    height: auto;
}

.scraping-feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.scraping-feature-text p {
    color: var(--text-light);
}

/* Ready to Harness the Power of Web Data Section */
.scraping-cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.scraping-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.scraping-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: white;
}

.scraping-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--box-shadow);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--accent-color);
    color: white;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding: 20px;
    display: none;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-scraping-content h1 {
        font-size: 2.5rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {

    .hero-scraping .scraping-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-scraping-content p {
        margin: 0 auto 30px;
    }

    .hero-scraping-buttons {
        justify-content: center;
    }

    .hero-scraping-image {
        order: -1;
        margin-bottom: 30px;
    }

    .scraping-contact-content {
        grid-template-columns: 1fr;
    }

    .why-choose-us .benefits-list li {
        font-size: 16px;
    }

    .scraping-features-content {
        flex-direction: column;
        text-align: center;
    }

    .scraping-features-list {
        margin-top: 30px;
    }

    .scraping-feature-item {
        flex-direction: column;
        align-items: center;
    }

    .scraping-feature-icon {
        margin-bottom: 10px;
    }

    .scraping-cta-content h2 {
        font-size: 2rem;
    }

    .scraping-cta-content p {
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
    .industries_we_serve{
      font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-scraping-content h1 {
        font-size: 2rem;
        margin-top: 52px;
    }
}

/* spinner css */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dark background */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Beautiful Neon Glowing Spinner */
  .spinner {
    width: 60px;
    height: 60px;
    /* border:  solid rgba(0, 0, 0, 0.9); */
    border-top: 6px solid #ffc107; /* Bright Neon Blue */
    border-bottom: 6px solid #ffc107; ;
    border-radius: 50%;
    animation: spin 1.2s linear infinite, glow 1.5s ease-in-out infinite alternate;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes glow {
    0% { box-shadow: 0 0 #ffc107, 0 0  #ffc107; }
    100% { box-shadow: 0 0  #ffc107, 0 0  #ffc107; }
  }

  .scraping-services .scraping-container{
    max-width: 900px;
  }

  /* data-cleansing css */
  
  /* Base Styles */
.cleansing-wrapper {
    --primary-color: #2495a9;
    --primary-light: #4895ef;
    --primary-dark: #2495a9;
    --secondary-color: #f72585;
    --secondary-light: #ff8fab;
    --accent-color: #7209b7;
    --text-color: #2b2d42;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --success-color: #4caf50;
    --error-color: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  
  .container-cleansing {
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 15px;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  p {
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  
  
  /* Buttons */
  .cleansing-btn {
    color: #265a56;
    background-color: white;
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .cleansing-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
  }
  
  .cleansing-btn:hover::before {
    width: 100%;
  }
  
  .cleansing-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  }
  
  .cleansing-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
  }
  
  .cleansing-btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .cleansing-btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);
  }
  
  .cleansing-btn-submit {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
  }
  
  .cleansing-btn-submit i {
    transition: transform 0.3s ease;
  }
  
  .cleansing-btn-submit:hover i {
    transform: translateX(5px);
  }
  
  
  
  /* hero-cleansing Section */
  .hero-cleansing {
    background: linear-gradient(135deg, #2495a9,#265a56);
    /* border-image-source: linear-gradient(to left, #2495a9, #265a56); */
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    height: 72vh;
  }
  
  .hero-cleansing .container-cleansing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .hero-cleansing-content {
    max-width: 600px;
    margin-top: -91px;
  }
  
  .animated-title {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
  }
  
  .title-word {
    display: inline-block;
    animation: color-animation 4s linear infinite;
  }
  
  .title-word-1 {
    animation-delay: 0s;
    margin-right: 15px;
  }
  
  .title-word-2 {
    animation-delay: 0.5s;
  }
  
  @keyframes color-animation {
    0% {
      color: white;
    }
    25% {
    color: skyblue;
    }
    50% {
      color: white;
    }
    75% {
      color: #d7d2c9;
    }
    100% {
      color: white;
    }
  }
  
  .hero-cleansing-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-cleansing-cta {
    display: flex;
    gap: 20px;
  }
  
  .hero-cleansing-image {
    position: relative;
    width: 400px;
    height: 400px;
    margin-top: -72px;
  }
  
  .data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    animation: float 6s infinite ease-in-out;
  }
  
  .p1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
  }
  .p2 {
    top: 20%;
    left: 80%;
    animation-delay: 0.5s;
  }
  .p3 {
    top: 40%;
    left: 10%;
    animation-delay: 1s;
  }
  .p4 {
    top: 60%;
    left: 30%;
    animation-delay: 1.5s;
  }
  .p5 {
    top: 80%;
    left: 60%;
    animation-delay: 2s;
  }
  .p6 {
    top: 30%;
    left: 50%;
    animation-delay: 2.5s;
  }
  .p7 {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
  }
  .p8 {
    top: 50%;
    left: 70%;
    animation-delay: 3.5s;
  }
  .p9 {
    top: 15%;
    left: 40%;
    animation-delay: 4s;
  }
  .p10 {
    top: 85%;
    left: 90%;
    animation-delay: 4.5s;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-20px) scale(1.5);
      opacity: 1;
    }
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.6;
    }
  }
  
  .data-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .data-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 4s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  .data-lines {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    height: 2px;
    width: 100%;
    animation: line-animation 3s infinite ease-in-out;
  }
  
  .l1 {
    top: 30%;
    animation-delay: 0s;
  }
  .l2 {
    top: 40%;
    animation-delay: 0.5s;
  }
  .l3 {
    top: 60%;
    animation-delay: 1s;
  }
  .l4 {
    top: 70%;
    animation-delay: 1.5s;
  }
  
  @keyframes line-animation {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .hero-cleansing-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  /* Section Styles */
  .section-header-cleansing {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title-cleansing {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .section-title-cleansing::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: bold;
  }
  
  /* About Section */
  .about {
    padding: 100px 0;
    background-color: var(--bg-light);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
    position: relative;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 345px;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img_align1{
    margin-top: 21px;
  }
  
.img_align2{
    margin-top:-12px;
  }

  .floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0.1;
    animation: float-element 6s infinite ease-in-out;
  }
  
  .fe1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }
  .fe2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
  }
  .fe3 {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 70%;
    animation-delay: 2s;
  }
  .fe4 {
    width: 70px;
    height: 70px;
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
  }
  .fe5 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 20%;
    animation-delay: 1.5s;
  }
  .fe6 {
    width: 30px;
    height: 30px;
    top: 70%;
    right: 60%;
    animation-delay: 2.5s;
  }
  
  @keyframes float-element {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-20px) rotate(10deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  
  .data-cleaning-illustration,
  .data-analysis-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .dirty-data,
  .clean-data {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 10px;
  }
  
  .dirty-data {
    background-color: rgba(247, 37, 133, 0.2);
    border: 2px dashed rgba(247, 37, 133, 0.5);
    top: 30%;
    left: 20%;
    transform: rotate(-10deg);
    animation: shake 4s infinite ease-in-out;
  }
  
  .clean-data {
    background-color: rgba(67, 97, 238, 0.2);
    border: 2px solid rgba(67, 97, 238, 0.5);
    top: 30%;
    right: 20%;
    transform: rotate(10deg);
    animation: pulse 4s infinite ease-in-out;
  }
  
  .filter {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(67, 97, 238, 0.3);
    animation: glow 4s infinite ease-in-out;
  }
  
  @keyframes shake {
    0%,
    100% {
      transform: rotate(-10deg);
    }
    50% {
      transform: rotate(-15deg) scale(0.95);
    }
  }
  
  @keyframes glow {
    0%,
    100% {
      box-shadow: 0 0 30px rgba(67, 97, 238, 0.3);
    }
    50% {
      box-shadow: 0 0 50px rgba(67, 97, 238, 0.5);
    }
  }
  
  .chart-bar {
    position: absolute;
    bottom: 30%;
    width: 30px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
  }
  
  .cb1 {
    height: 100px;
    left: 20%;
    animation: grow 3s infinite ease-in-out;
  }
  .cb2 {
    height: 150px;
    left: 35%;
    animation: grow 3s infinite ease-in-out 0.5s;
  }
  .cb3 {
    height: 80px;
    left: 50%;
    animation: grow 3s infinite ease-in-out 1s;
  }
  .cb4 {
    height: 120px;
    left: 65%;
    animation: grow 3s infinite ease-in-out 1.5s;
  }
  
  @keyframes grow {
    0%,
    100% {
      height: var(--height);
    }
    50% {
      height: calc(var(--height) * 1.2);
    }
  }
  
  .chart-line {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: rgba(67, 97, 238, 0.5);
  }
  
  .second-row {
    margin-bottom: 0;
  }
  
  /* Reveal Animations */
  .reveal-left,
  .reveal-right,
  .reveal-item {
    opacity: 0;
    transition: all 1s ease;
  }
  
  .reveal-left {
    transform: translateX(-50px);
  }
  
  .reveal-right {
    transform: translateX(50px);
  }
  
  .reveal-item {
    transform: translateY(30px);
  }
  
  .reveal-left.active,
  .reveal-right.active,
  .reveal-item.active {
    opacity: 1;
    transform: translate(0);
  }
  
  /* Threats Section */
  .threats {
    padding: 100px 0;
    background-color: white;
  }
  
  .threats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .threat-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .threat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .threat-card:hover {
    transform: translateY(-10px);
    color: white;
  }
  
  .threat-card:hover::before {
    opacity: 1;
  }
  
  .threat-card:hover h3,
  .threat-card:hover .threat-icon i {
    color: white;
  }
  
  .threat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .threat-card h3 {
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to left, #2495a9, #265a56);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
  }
  
  .threat-card:hover .card-hover {
    opacity: 1;
    transform: translateY(0);
  }
  
  .card-hover p {
    color: white;
    margin: 0;
  }
  
  /* Process Section */
  .process {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
  }
  
  .process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
  }
  
  .timeline-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    width: calc(50% - 50px);
    position: relative;
    margin-left: 80px;
  }
  
  .timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
  }
  
  .timeline-content p {
    margin-bottom: 0;
  }
  
  .timeline-icon {
    position: absolute;
    top: 20px;
    right: -80px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
  }
  
  /* cleansing-contact Section */
  .cleansing-contact {
    padding: 100px 0;
    background-color: white;
  }
  
  .cleansing-contact-wrapper {
    display: flex;
    gap: 50px;
  }
  
  .cleansing-contact-form {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
  }
  
  input,
  textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    background-color: white;
  }
  
  .error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
  }
  
  .form-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    display: none;
  }
  
  .success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
  }
  
  .cleansing-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #2495a9;
  }
  
  @media (max-width: 768px) {
    .info-icon {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
    .info-content p{
      font-size: 13px;
    }
    .reveal-right{
      margin-top: -65px;
    }
    
  }
  
  @media (max-width: 576px) {
    .info-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
  }
  
  .info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .info-content p {
    margin-bottom: 0;
    color: var(--text-light);
  }
  
  .cleansing-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .cleansing-social-link {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .cleansing-social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
  }
  
  
  
  /* Our Work Section */
  .our-work {
    padding: 60px 0;
    background-color: #e8e8e8;
    text-align: center;
    margin-top: -26px;
    margin-bottom: -30px;
  }
  
  .our-work .box-style {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .our-work .box-style:hover {
    transform: translateY(-10px);
  }
  
  .our-work .stats-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .our-work .stats-item p {
    margin: 0;
    font-size: 1rem;
    color: #333;
  }
  
  .our-work .stats-item span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    color: #007bff;
  }
  
  .our-work .work-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .our-work .work-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .our-work .work-item:hover {
    transform: translateY(-10px);
  }
  
  .our-work .work-item i {
    font-size: 2rem;
    color: #2495a9;
    margin-bottom: 10px;
  }
  
  .our-work .work-item p {
    margin: 0;
    font-size: 1rem;
    color: #333;
  }
  
  .our-work .work-item span {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    color: #007bff;
  }
  
  @media (max-width: 768px) {
    .our-work .work-item {
      width: 100%;
      max-width: 300px;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .animated-title {
      font-size: 3rem;
    }
  
    .hero-cleansing-image {
      width: 350px;
      height: 350px;
    }
  }
  
  @media (max-width: 992px) {
    
  
    .animated-title {
      font-size: 2.5rem;
    }
  
    .hero-cleansing .container-cleansing {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-cleansing-content {
      margin-bottom: 50px;
    }
  
    .hero-cleansing-cta {
      justify-content: center;
    }
  
    .about-content {
      flex-direction: column;
    }
  
    .second-row {
      flex-direction: column-reverse;
    }
  
    .cleansing-contact-wrapper {
      flex-direction: column;
    }
  
    .timeline-content {
      width: calc(100% - 80px);
    }
  
    .timeline-icon {
      right: auto;
      left: 20px;
      top: -70px;
    }
  
    .process-timeline::before {
      left: 30px;
    }
    .hero-cleansing-content{
      margin-top: -28px;
    }
  }
  
  @media (max-width: 768px) {
    .section-title-cleansing {
      font-size: 2rem;
    }
  
    .animated-title {
      font-size: 2rem;
      word-spacing: -6px;
    }
  
    .hero-cleansing-subtitle {
      font-size: 1.1rem;
    }
  
    .hero-cleansing-image {
      width: 300px;
      height: 300px;
    }
  
    .threats-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  
  
    .hero-cleansing-content{
      margin-top: -65px;
    }

    .data-entry-content {
      flex-direction: column;
    }
  
    .data-entry-image,
    .data-entry-text {
      max-width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    
    .animated-title {
      font-size: 1.8rem;
    }
  
    .hero-cleansing-subtitle {
      font-size: 1rem;
    }
  
    .hero-cleansing-cta {
      flex-direction: column;
    }
  
    .section-title-cleansing {
      font-size: 1.8rem;
    }
  
  }
  
  @media (max-width: 389px){
    .hero-cleansing{
      height: 94vh;
    }
  }
  

  /* Data Entry Outsourcing Section */
.data-entry {
  padding: 60px 0;
  background-color: black;
}

.data-entry .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.data-entry .section-title {
  font-size: 2.5rem;
  color: white;
}

.data-entry .section-subtitle {
  font-size: 1.2rem;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.data-entry-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.data-entry-image {
  flex: 1;
  max-width: 500px;
}

.data-entry-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-entry-text {
  flex: 1;
  max-width: 500px;
}

.data-entry-text p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* data-entry css */

/* Hero Section */
.hero-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72vh;
  background-color: white;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url('/assets/img/animated_image.gif'); */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.entry-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.entry-content {
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

.entry-title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.entry-word-1 {
  color: #ff6b6b;
}

.entry-word-2 {
  color: #4ecdc4;
}

.entry-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: black;
}

.entry-cta {
  margin-top: 20px;
}

.entry-btn {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
  border: 2px solid #2495a9;
}

.entry-btn:hover {
  background: #2495a9;
  color: white;
}

.entry-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-entry {
      height: auto;
      padding: 50px 20px;
  }
  .entry-container {
      flex-direction: column;
      text-align: center;
  }
  .entry-content {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .entry-title {
      font-size: 2.5rem;
  }
  .entry-subtitle {
      font-size: 1rem;
  }
  .img_align1{
    margin-top: 31px;
  }
}

@media (max-width: 480px) {
  .entry-title {
      font-size: 2rem;
  }
  .entry-btn {
      font-size: 0.9rem;
      padding: 10px 20px;
  }
}


/* Enrichment css */
.hero-enrichment {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72vh;
  background-color: black;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), url('/assets/img/Data\ Enrichment.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 20px;
}
@media  (max-width: 767px) {
.enrichment-image{
  display: block;
}
  
}

@media  (min-width: 768px) {
  .enrichment-image{
    display: none;
  }
    
  }
  


.enrichment-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.enrichment-content {
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

.enrichment-title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.enrichment-word-1 {
  color: #ff6b6b;
}

.enrichment-word-2 {
  color: #4ecdc4;
}

.enrichment-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: black;
}

.enrichment-cta {
  margin-top: 20px;
}

.enrichment-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.enrichment-btn:hover {
  background: #d33f3f;
}

.enrichment-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-enrichment {
      height: auto;
      padding: 50px 20px;
  }
  .enrichment-container {
      flex-direction: column;
      text-align: center;
  }
  .enrichment-content {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .enrichment-title {
      font-size: 2.5rem;
  }
  .enrichment-subtitle {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .enrichment-title {
      font-size: 2rem;
  }
  .enrichment-btn {
      font-size: 0.9rem;
      padding: 10px 20px;
  }
}

  
  
  


  

