:root {
  --primary-color: #2966cb;
  --primary-light: rgba(107, 159, 255, 0.1);
  --text-dark: #1a1a1a;
  --text-muted: #505050;
  --border-color: #eeeeee;
}

* {
  font-family: 'Inter', sans-serif;
}

body {
  padding-top: 80px;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 32px;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1f4fa0;
  border-color: #1f4fa0;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fbfbfb 0%, #fbfbfb 100%);
  position: relative;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-mockup {
  margin-top: 60px;
  filter: blur(2px);
}

.hero-mockup img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Badges */
.badge {
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 400;
}

.bg-primary-light {
  background: var(--primary-light) !important;
  border: 1px solid var(--primary-color);
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Benefit Cards */
.benefit-card {
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 24px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #5a5a5a;
  line-height: 1.6;
}

/* Step Cards */
.step-card {
  padding: 40px 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
}

.step-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.step-card p {
  color: #5a5a5a;
}

/* Service Cards */
.service-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.service-card p {
  color: #5a5a5a;
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-author h5 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #141414;
}

/**************** CTA Section ****************/
.cta-section {
  background: #181818;
  padding: 136px 0;
  border-radius: 24px;
  margin:72px 100px;
}

@media  (max-width:900px) {
     .cta-section {
        background: #181818;
        padding: 136px 0;
        border-radius: 24px;
        margin:72px 20px;
        }
    
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 600;
}

.btn-outline-light {
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
}


/********************FOOTER*********************/
footer{
    background: #181818 !important;
}



/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .service-card,
  .benefit-card {
    padding: 24px;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 12px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 12px;
  }
}
