
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #4b5563;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1f2937;
}
.hero-cta1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 20px;
    width: 70%;
}
.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #6b7280;
  max-width: 80%;
  margin: 0 auto 3rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* increased header height */
}

.logo h1 {
  font-size: 2rem;
  color: #00acb2;
  font-family: "Playfair Display", serif;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #00acb2;
  transform: translateY(-2px);
}

.contact-info {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.icon {
  width: 16px;
  height: 16px;
}

/* Updated button styles with increased height and hover effects */
.cta-button-header {
    background: #00acb2;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s 
ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cta-button-header:hover {
  background: #007a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 172, 178, 0.3);
}

.cta-button-primary {
    background: #ffffff;
    color: #1aa7ad;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s 
ease;
    text-decoration: none;
    display: inline-block;
}
.cta-button-primary:hover {
  background: #007a8c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 172, 178, 0.4);
}

.cta-button-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 28px; /* increased padding for height */
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button-secondary:hover {
  background: #00acb2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 172, 178, 0.3);
}

.cta-button-form {
  background: #00acb2;
  color: white;
  border: none;
  padding: 16px 24px; /* increased padding for height */
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.cta-button-form:hover {
  background: #007a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 172, 178, 0.3);
}

.cta-button-form-main {
  background: #00acb2;
  color: white;
  border: none;
  padding: 18px 32px; /* increased padding for height */
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.cta-button-form-main:hover {
  background: #007a8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 172, 178, 0.4);
}

.cta-button-pricing {
  background: #00acb2;
  color: white;
  border: none;
  padding: 14px 24px; /* increased padding for height */
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.cta-button-pricing:hover {
  background: #007a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 172, 178, 0.3);
}

.cta-button-pricing.featured {
  background: #007a8c;
  padding: 16px 24px; /* increased padding for featured button */
}

.cta-button-pricing.featured:hover {
  background: #005a66;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 122, 140, 0.4);
}

.cta-button-footer {
  background: #00acb2;
  color: white;
  border: none;
  padding: 12px 20px; /* increased padding for height */
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button-footer:hover {
  background: #007a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 172, 178, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: #4b5563;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #00acb2;
}

.hero {
  position: relative;
  background: url("images/backround.webp") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 120px 0 80px;
  margin-top: 80px;
  border-radius: 0 0 24px 24px;
  z-index: 1;
  overflow: hidden;
}


.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.hero-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-form h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.hero-form p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Form Styles */
.form-container {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #00acb2;
  box-shadow: 0 0 0 3px rgba(0, 172, 178, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00acb2;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.certifications {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cert-icon {
  width: 20px;
  height: 20px;
  color: #00acb2;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: #00acb2;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: #6b7280;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  color: #4b5563;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00acb2;
  font-weight: bold;
}

.services-cta {
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: #00acb2;
  margin: 0 auto 1.5rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-item p {
  color: #6b7280;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #00acb2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.step-content p {
  margin-bottom: 1.5rem;
  color: #6b7280;
}

.step-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.step-features li {
  color: #4b5563;
  position: relative;
  padding-left: 1.5rem;
}

.step-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00acb2;
  font-weight: bold;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  text-decoration: none;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  width: 48px;
  height: 48px;
  color: #00acb2;
  margin: 0 auto 1.5rem;
}

.industry-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.industry-card p {
  color: #6b7280;
  font-size: 0.875rem;
}

.additional-specialties {
  text-align: center;
}

.additional-specialties h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.specialty-tag {
  background: #f0f9ff;
  color: #00acb2;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e0f2fe;
  text-decoration: none;
}

/* Testimonials */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  display: none;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonial-card.active {
  display: block;
}

.stars {
  color: #fcd34d;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #4b5563;
}

.testimonial-author strong {
  color: #1f2937;
  font-size: 1.125rem;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 0.875rem;
  display: block;
  margin-top: 0.5rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #00acb2;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid #e5e7eb;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #00acb2;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00acb2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.price {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #00acb2;
  font-family: "Playfair Display", serif;
}

.price-period {
  color: #6b7280;
  font-size: 1rem;
}

.price-description {
  color: #6b7280;
  font-size: 0.875rem;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #4b5563;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00acb2;
  font-weight: bold;
}

.pricing-guarantee {
  background: #f0f9ff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e0f2fe;
}

.guarantee-content h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.guarantee-content p {
  color: #6b7280;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #00acb2;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-info-section p {
  margin-bottom: 2rem;
  color: #6b7280;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #00acb2;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-method strong {
  color: #1f2937;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: #6b7280;
  margin: 0;
}

.contact-form-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.link {
  color: #00acb2;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-badge1 {
  background: #374151;
  color: #00acb2;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.cert-badge1 {
  position: relative;
  display: inline-block;
  background: #374151;
  color: #00acb2;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  overflow: hidden;
}

/* Create the shine effect */
.cert-badge1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00acb2;
}

.footer-contact p {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .contact-info {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 400px;
  }

  .hero-cta {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

/* Success/Error Messages */
.success-message {
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #a7f3d0;
}

.error-message {
  background: #fee2e2;
  color: #991b1b;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #fecaca;
}
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #00acb2 0%, #007a8c 100%);
  color: white;
  padding: 120px 0 140px; /* extra bottom padding so logos overlap */
  margin-top: 80px;
  position: relative;
  text-align: center;
}

.partner-slider {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    top: -50px;
    z-index: 2;
}

.partner-track {
  display: flex;
  width: calc(200px * 10);
  animation: partnerScroll 25s linear infinite;
}

.partner-track img {
    width: 199px;
    height: auto;
    margin: 0 30px;
    object-fit: contain;
    flex-shrink: 0;
    transition: filter 0.3s;
    border-radius: 10px;
    background: white;
    padding: 5px;
}

.partner-track img:hover {
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .partner-track img {
    width: 150px;
    margin: 0 15px;
  }
  .partner-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    top: -50px;
    right: 0px;
}
.hero-cta1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 10px;
    width: 99%;
}
  .partner-track img {
    width: 150px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .partner-track img {
    width: 150px;
    margin: 0 10px;
  }
}

@keyframes partnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.comparison-table {
      width: 1200px;
      border-collapse: collapse;
      margin: 0 auto;
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .comparison-table thead {
      background: #00ACB2;
      color: #fff;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 16px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .comparison-table th {
      font-size: 18px;
      font-weight: 600;
    }

    .comparison-table td {
      font-size: 15px;
    }

    /* Hover effect only for body rows, not header */
    .comparison-table tbody tr:hover {
      background: #f1faff;
      transition: 0.3s;
    }

    /* Highlight entire outsourced column */
    .comparison-table td.highlight,
    .comparison-table th.highlight {
      background: #e6f9fa;
    }

    .compare-btn {
      background: #00ACB2;
      color: #fff;
      padding: 12px 28px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      transition: 0.3s;
    }

    .compare-btn:hover {
      background: #008f94;
    }

    .header-logo {
      width: 120px;
      height: auto;
    }

    @media (max-width: 768px) {
      .comparison-table thead {
        display: none;
      }
      .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td {
        display: block;
        width: 100%;
        padding: 5px;
      }
      .comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      }
      .comparison-table td {
        text-align: left;
        padding-left: 50%;
        position: relative;
      }
      .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        font-weight: bold;
        color: #333;
      }
    }
    .logo{
    display: flex;
    align-items: center;
    gap: 7px;
    }
    .footer-logo {
    height: 50px; /* adjust as needed */
    width: auto;
    display: block;
    margin-bottom: 10px; /* space between logo and paragraph */
}

.footer-certifications {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cert-logo {
    height: 40px;
    width: auto;
}

.case-studies-section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 1; /* always visible */
    transform: none; /* reset */
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #01A6B0;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
}

.case-studies-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    background: white;
    border: 1px solid #f5f0f0;
    border-radius: 10px;
}

.case-study:nth-child(even) {
    transform: none;
}

.case-study:nth-child(odd) {
    transform: none;
}

.case-study-image {
    background: linear-gradient(135deg, #01A6B0 0%, #0891a3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-study-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.case-study-image-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    z-index: 1;
}

.case-study-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #01A6B0;
    margin-bottom: 30px;
    line-height: 1.3;
}

.case-study-item {
    margin-bottom: 24px;
}

.case-study-label {
    font-weight: 700;
    color: #01A6B0;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.case-study-result {
    background: linear-gradient(135deg, #f0fdff 0%, #e6fafe 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #01A6B0;
}

.case-study-result .case-study-text {
    font-weight: 600;
    color: #01A6B0;
}

/* Reverse layout for even case studies */
.case-study:nth-child(even) {
    direction: rtl;
}

.case-study:nth-child(even) .case-study-content {
    direction: ltr;
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #01A6B0 0%, #0891a3 100%);
    border-radius: 16px;
    color: white;
    opacity: 1;
    transform: none;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #01A6B0;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .case-study {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .case-study:nth-child(even) {
        direction: ltr;
    }

    .case-study-image {
        min-height: 200px;
        order: -1;
    }

    .case-study-content {
        padding: 40px 30px;
    }

    .case-study-title {
        font-size: 1.5rem;
    }

    .cta-section {
        margin-top: 60px;
        padding: 40px 30px;
    }

    .cta-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .case-study-content {
        padding: 30px 20px;
    }
}

          .tools-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .tools-title {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: #06202a;
  }

  .tools-subtitle {
    margin: 0 0 20px;
    font-size: 1.2rem;
    color: #2f2d2d;
}

  .tools-intro {
    max-width: 850px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
    color: #23303a;
}

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 28px;
  }

  .tools-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .tools-card:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
  }

  .tools-logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
  }
  
  .tools-logo1 {
    max-width: 30.333%;
    max-height: 60px;
    object-fit: contain;
  }

  .tools-cta {
    font-size: 1.1rem;
    color: #4b4b4b;
}

  .tools-cta a {
    color: #01A6B0;
    font-weight: 600;
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .tools-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .tools-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .tools-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .tools-title {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: #06202a;
  }

  .tools-subtitle {
    margin: 0 0 20px;
    font-size: 1rem;
    color: #555;
  }

  .tools-intro {
    max-width: 850px;
    margin: 0 auto 32px;
    font-size: 1rem;
    color: #23303a;
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 28px;
  }

  .tools-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .tools-card:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
  }

  .tools-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
  }

  .tools-cta {
    font-size: 1rem;
    color: #0f172a;
  }

  .tools-cta a {
    color: #01A6B0;
    font-weight: 600;
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .tools-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .tools-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
