
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Times New Roman", Times, serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
 .crm-hero {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}

.underline-animation {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.5s ease-out forwards;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

/* Animations */
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .crm-hero {
    padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .underline-animation {
    height: 3px;
    bottom: -5px;
  }
  
  .wave-divider svg {
    height: 80px;
  }
}
        /* Feature Section */
 /* Elegant White Theme */
:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --background: #ffffff;
  --border: #ecf0f1;
}

.elegant-features {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: "Times New Roman", Times, serif;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-family: "Times New Roman", Times, serif;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin: 1.5rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--background);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
  font-size: 1.75rem;
  border: 2px solid #3498db;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: "Times New Roman", Times, serif;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-family: "Times New Roman", Times, serif;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .elegant-features {
    padding: 4rem 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}
        /* Benefits Section */
        .benefits-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .benefits-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .benefits-content {
            flex: 1;
            min-width: 300px;
        }

        .benefits-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .benefits-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            
        }

        .benefit-item {
            display: flex;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.5s ease;
        }

        .benefit-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: #1e3c72;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .benefit-text h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1e3c72;
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background-color: white;
        }

        .process-steps {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #1e3c72, #2a5298);
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .process-step {
            position: relative;
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            width: calc(50% - 40px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .process-step.visible {
            opacity: 1;
        }

        .process-step:nth-child(odd) {
            margin-right: auto;
            transform: translateX(40px);
        }

        .process-step:nth-child(even) {
            margin-left: auto;
            transform: translateX(-40px);
        }

        .process-step.visible:nth-child(odd) {
            transform: translateX(0);
        }

        .process-step.visible:nth-child(even) {
            transform: translateX(0);
        }

        .process-step::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #1e3c72;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .process-step:nth-child(odd)::after {
            right: -50px;
        }

        .process-step:nth-child(even)::after {
            left: -50px;
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #1e3c72;
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 40px;
            height: 40px;
            background: #ff6b6b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Services Section */
/* Modern CRM Services with Image Icons */
:root {
  --primary-blue: #4361ee;
  --light-blue: #4895ef;
  --dark-text: #1a1a2e;
  --medium-text: #4a5568;
  --light-bg: #f8f9fa;
  --card-border: #e2e8f0;
  --check-green: #2ecc71;
}

.crm-services-modern {
  padding: 6rem 1rem;
  background-color: #ff6b7c73;
  font-family: 'Inter', Arial, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-main-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.services-subheading {
  font-size: 1.25rem;
  color: var(--medium-text);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.title-underline-bar {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  margin: 0 auto;
  border-radius: 2px;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(67, 97, 238, 0.1);
  border-color: rgba(67, 97, 238, 0.2);
}

.service-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f4ff, #e6ecff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  padding: 15px;
}

.service-icon-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  padding: 0.7rem 0;
  color: var(--medium-text);
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.feature-check {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .services-card-grid {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .services-main-title {
    font-size: 2.5rem;
  }
  
  .services-subheading {
    font-size: 1.15rem;
  }
  
  .service-card-modern {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .crm-services-modern {
    padding: 5rem 1rem;
  }
  
  .services-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }
  
  .service-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .service-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 576px) {
  .services-main-title {
    font-size: 2.25rem;
  }
  
  .services-header {
    margin-bottom: 3.5rem;
  }
  
  .service-card-modern {
    padding: 1.75rem;
  }
  
  .feature-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-main-title {
    font-size: 2rem;
  }
  
  .services-subheading {
    font-size: 1.1rem;
  }
  
  .service-icon-container {
    width: 65px;
    height: 65px;
  }
}


