/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.gradient-text {
  background: linear-gradient(90deg, #000, #03daeb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback for non-webkit browsers */
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
a {
	color:#2dd2f1;
	text-decoration: none;
}
/* Header Styles */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  justify-content: flex-end !important;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  height: 8rem;
  width: auto;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-text {
  font-weight: 500;
}

.icon {
  height: 1rem;
  width: 1rem;
  color: #0891b2;
  stroke-width: 2;
}

/* Hero Section */
.hero {
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #e0f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: #0891b2;
  stroke-width: 2;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #03daeb, #23a0aa);
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: #ffffff;
  color: #0891b2;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: #f3f4f6;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0 6rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #111827;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background: #e0f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: #0891b2;
  stroke-width: 2;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #6b7280;
  font-size: 1rem;
}

/* Expertise Section */
.expertise {
  padding: 4rem 0 6rem;
  background: #f9fafb;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.expertise-paragraph {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.credentials-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.credentials-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #0891b2;
  stroke-width: 2;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #25a3ad, #000000);
  color: #ffffff;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-subtitle {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.footer-locations {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.locations-text {
  font-weight: 500;
}

.locations-subtitle {
  color: #d1d5db;
  font-size: 0.875rem;
}

.footer-list {
  list-style: none;
  color: #d1d5db;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .feature-card,
  .benefit-card {
    padding: 1rem;
  }
}
