/*HERO SECTION START HERE*/
/* Hero Section */
#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

#hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

#hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  #hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

#hero-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#expert-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  padding: 8px 20px;
  background-color: #ffeed9;
  color: #d46b08;
  border-radius: 100px;
  border: 1px solid #ffd8a6;
  font-weight: 500;
  font-size: 14px;
  max-width: fit-content;
  animation: badgePulse 3s infinite;
}

#pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #52c41a;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

@keyframes badgePulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

#hero-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 768px) {
  #hero-title {
    font-size: 3.5rem;
    line-height: 1.3;
  }
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#hero-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 600px;
}

#features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  transition: var(--transition);
  cursor: default;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #cbd5e0;
}

#feature-targeted {
  background: rgba(255, 126, 95, 0.08);
  border-color: rgba(255, 126, 95, 0.3);
}

#feature-growth {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

#feature-fast {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.3);
}

#feature-leads {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

#cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  max-width: fit-content;
}

#cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
  background: linear-gradient(to right, #ff6b4a, #fea868);
}

#stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 480px) {
  #stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

#hero-card {
  display: none;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  height: 70vh;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

@media (min-width: 992px) {
  #hero-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

#hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

#card-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

#card-text {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
}

#services-list {
  list-style-type: none;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item {
  position: relative;
  padding-left: 25px;
  color: var(--text-medium);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: default;
}

.service-item:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.service-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 1.5rem;
  top: -3px;
}

#explore-button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 15px;
  transition: var(--transition);
}

#explore-button:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Background Elements */
#background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

#circle-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  top: -150px;
  right: -150px;
  animation: float 25s infinite ease-in-out;
}

#circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(to right, #3b82f6, #6366f1);
  bottom: 100px;
  left: -100px;
  animation: float 20s infinite ease-in-out;
  animation-delay: 2s;
}

#circle-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(to right, #10b981, #34d399);
  top: 40%;
  right: 10%;
  animation: float 18s infinite ease-in-out;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 20px) rotate(10deg);
  }
  50% {
    transform: translate(40px, -20px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, 30px) rotate(-10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Services Section */
#services-section {
  padding: 100px 20px;
  background: white;
  position: relative;
}

#services-container {
  max-width: 1400px;
  margin: 0 auto;
}

#section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

#section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
}

#section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

#section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

#services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 35px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-desc {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: #ff7e5f;
  gap: 12px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #nav-container {
    display: none;
  }

  #mobile-menu-btn {
    display: block;
  }

  #hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  #hero-title {
    font-size: 2.2rem;
  }

  #hero-description {
    font-size: 1rem;
  }

  #cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }

  #section-title {
    font-size: 2rem;
  }

  #main-header {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  #hero-title {
    font-size: 1.8rem;
  }

  #features-container {
    flex-direction: column;
  }

  .feature-item {
    width: 100%;
  }
}

/* Animation Classes */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/*start usp component*/

#usp-comp-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

/* Background Elements */
#usp-comp-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

#usp-comp-bg-circle1,
#usp-comp-bg-circle2,
#usp-comp-bg-circle3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
  animation: float 20s infinite ease-in-out;
}

#usp-comp-bg-circle1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  top: 100px;
  left: 5%;
  animation-delay: 0s;
}

#usp-comp-bg-circle2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-secondary);
  bottom: 100px;
  right: 5%;
  animation-delay: 5s;
}

#usp-comp-bg-circle3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(to right, #10b981, #34d399);
  top: 40%;
  right: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, 20px) rotate(10deg);
  }
  66% {
    transform: translate(-20px, 30px) rotate(-10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Header Section */
#usp-comp-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

#usp-comp-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  color: var(--color-blue-700);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 25px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

#usp-comp-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-blue-500);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

#usp-comp-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

#usp-comp-title span {
  display: block;
}

#usp-comp-gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#usp-comp-subtitle {
  font-size: 1.2rem;
  color: var(--color-gray-600);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content Grid */
#usp-comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  #usp-comp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* Card Display Section */
#usp-comp-card-display {
  position: relative;
  min-height: 500px;
}

.usp-comp-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95) rotate(1deg);
  transition: var(--transition);
  z-index: 1;
}

.usp-comp-card.active {
  opacity: 1;
  transform: scale(1) rotate(0);
  z-index: 2;
}

.usp-comp-card-inner {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.usp-comp-card-inner:hover {
  transform: translateY(-10px);
}

.usp-comp-card-header {
  height: 200px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  color: white;
}

.usp-comp-card-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.usp-comp-card-header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.usp-comp-card-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.usp-comp-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.usp-comp-card-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.usp-comp-card-stat {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 15px;
  text-align: center;
  min-width: 80px;
}

.usp-comp-card-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.usp-comp-card-stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.usp-comp-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.usp-comp-card-description {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.usp-comp-card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.usp-comp-card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
}

/* Card Indicators */
#usp-comp-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.usp-comp-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.usp-comp-indicator.active {
  background: var(--color-blue-500);
  width: 30px;
  border-radius: 6px;
}

/* Features Section */
#usp-comp-features {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
}

#usp-comp-features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 15px;
  text-align: center;
}

@media (min-width: 992px) {
  #usp-comp-features-title {
    text-align: left;
  }
}

.usp-comp-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.usp-comp-feature:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.usp-comp-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.usp-comp-feature:hover .usp-comp-feature-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(8deg);
}

.usp-comp-feature-content {
  flex-grow: 1;
}

.usp-comp-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 5px;
}

.usp-comp-feature-desc {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.usp-comp-feature-arrow {
  align-self: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--color-blue-500);
}

.usp-comp-feature:hover .usp-comp-feature-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* CTA Section */
#usp-comp-cta {
  background: var(--gradient-accent);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

#usp-comp-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

#usp-comp-cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

#usp-comp-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

#usp-comp-cta-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 25px;
  text-align: center;
  opacity: 0.9;
  line-height: 1.6;
}

#usp-comp-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #usp-comp-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.usp-comp-cta-button {
  padding: 14px 25px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
}

#usp-comp-cta-button1 {
  background: white;
  color: var(--color-blue-700);
  box-shadow: var(--shadow-md);
}

#usp-comp-cta-button1:hover {
  background: var(--color-gray-100);
  transform: translateY(-3px);
}

#usp-comp-cta-button2 {
  border: 2px solid white;
  color: white;
}

#usp-comp-cta-button2:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Trust Indicators */
#usp-comp-trust {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 40px;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}

#usp-comp-trust-title {
  font-size: 1.2rem;
  color: var(--color-gray-600);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

#usp-comp-trust-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  #usp-comp-trust-logos {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px !important;
    border-radius: 0px !important;
  }
}

.usp-comp-trust-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  color: white;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.usp-comp-trust-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #usp-comp-title {
    font-size: 2.5rem;
  }

  #usp-comp-card-display {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  #usp-comp-title {
    font-size: 2rem;
  }

  #usp-comp-subtitle {
    font-size: 1rem;
  }

  .usp-comp-card-header {
    height: 180px;
  }

  #usp-comp-features-title {
    font-size: 2rem;
  }
}

/* Animation Classes */
.animate-in {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*service setion cards start here */
.services-section {
  margin-top: 5vw;
  width: 100% !important;
  max-width: 100%;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff, #e0f2fe);
  overflow: hidden;
}

.container {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-top: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.accent-text {
  background: linear-gradient(to right, #f97316, #ef4444, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.card-content {
  padding: 1.2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.features-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-medium);
}

.feature-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-blue-500);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.service-btn {
  padding: 0.75rem 1.5rem;
  background: var(--color-blue-500);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: var(--color-blue-700);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.process-section {
  margin-bottom: 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-card {
  text-align: center;
}

.process-number {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-card-desc {
  color: var(--text-medium);
}

.cta-section {
  background: var(--gradient-accent);
  border-radius: 0.3rem;
  padding: 5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-btn-primary {
  padding: 1rem 2rem;
  background: white;
  color: var(--color-blue-700);
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 700;
  border: 2px solid white;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn-secondary:hover {
  background: white;
  color: var(--color-blue-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* Mobile adjustments for services section */
@media (max-width: 768px) {
  /* Remove container restriction */
  .services-section .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }

  /* Stack cards */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  /* Card adjustments */
  .service-card {
    width: 100% !important;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
  }

  /* Card image */
  .card-image {
    height: 160px !important;
    width: 100% !important;
  }

  /* Card content spacing */
  .card-content {
    padding: 1rem !important;
  }

  /* Font size adjustments */
  .card-title {
    font-size: 1.25rem !important;
  }
  body {
    width: 100%;
  }
  .card-subtitle {
    font-size: 0.8rem !important;
  }

  .card-description {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }

  /* Features grid single column */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 0.25rem !important;
  }

  /* Buttons */
  .service-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  /* Titles */
  .section-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }

  .section-subtitle {
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
  }
}

/*testimonail useage here*/
.testimonial-container {
  max-width: 1300px;
  margin-bottom: 1rem;
  margin: auto;
  padding: 2rem;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 2rem;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.testimonial-title {
  font-size: 2rem;
  font-weight: bold;
  color: orange;
}

.testimonial-subtitle {
  font-size: 1rem;
  color: #0d3b66;
}

.testimonial-carousel {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.testimonial-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #fff4e6, #ede9fe, #e0f2fe);
}

.testimonial-card-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2rem;
  gap: 2rem;
}

.quote-icon span {
  font-size: 2rem;
  color: orange;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin: 1rem 0;
}

.stars span {
  color: gold;
  font-size: 1.2rem;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-info .name {
  font-weight: bold;
  color: #0d3b66;
}

.testimonial-info .role {
  color: orange;
  font-size: 0.9rem;
}

.testimonial-info .company-location {
  color: gray;
  font-size: 0.9rem;
}

.testimonial-info .date {
  color: #999;
  font-size: 0.8rem;
}

.testimonial-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-loader {
  position: absolute;
  width: 60px;
  height: 60px;
  background: orange;
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.testimonial-image-wrapper img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.7s, transform 0.7s;
}

.testimonial-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.control-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.control-btn:hover {
  transform: scale(1.1);
  background: orange;
  color: white;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #ccc;
  transition: 0.3s;
}

.dots button.active {
  background: orange;
  width: 20px;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: white;
  padding: 1rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-card dt {
  font-size: 1.5rem;
  font-weight: bold;
  color: orange;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile adjustments for testimonial section */
@media (max-width: 768px) {
  .testimonial-container {
    padding: 1rem;
  }

  .testimonial-header {
    margin-bottom: 1.5rem;
  }

  .testimonial-title {
    font-size: 1.5rem;
  }

  .testimonial-subtitle {
    font-size: 0.9rem;
  }

  /* Stack testimonial content vertically */
  .testimonial-card-content {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  /* Image smaller and centered */
  .testimonial-image-wrapper img {
    max-width: 160px;
    max-height: 160px;
  }

  /* Quote text size smaller */
  .testimonial-quote {
    font-size: 1rem;
  }

  /* Stars spacing tweak */
  .stars {
    margin: 0.8rem 0;
  }

  /* Control buttons closer */
  .testimonial-controls {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  /* Navigation dots centered */
  .dots {
    justify-content: center;
  }

  /* Stats layout single column on very small screens */
  .testimonial-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  @media (max-width: 480px) {
    .testimonial-stats {
      grid-template-columns: 1fr;
    }
  }
}

/*tahnkyou css*/

.thankyou {
  font-family: system-ui, sans-serif;
  background: linear-gradient(to bottom right, #f8fafc, #eff6ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  text-align: center;
}

.thankyou-box {
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  max-width: 600px;
  width: 100%;
  animation: fadeIn 0.8s ease-out;
}

.thankyou-box h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.thankyou-box p {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.thankyou-box .icon-circle {
  background: #dcfce7;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.thankyou-box .icon-circle i {
  color: #16a34a;
  font-size: 2.5rem;
}

.thankyou-box a {
  display: inline-block;
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.thankyou-box a:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
