/* DenishNew - Exact replica of TaxItEazy styles */

:root {
  --primary: #00A572;
  --primary-dark: #007854;
  --secondary: #6c757d;
  --success: #00A572;
  --info: #00A572;  /* Changed from blue to green to match brand */
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --white: #ffffff;
  --black: #222222;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: var(--primary);
  border: 1px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu a {
  color: var(--gray-800);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--gray-800);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f9f3 0%, var(--white) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 165, 114, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

.step {
  text-align: center;
  padding: 2rem;
}

.step-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step-description {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background-color: var(--white);
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-title {
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  text-align: center;
  padding: 2rem 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-position {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form form {
  display: grid;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Contact Page Styles */
.contact-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-section .col-md-6 {
  width: 50%;
  padding: 0 15px;
}

.contact-message-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.contact-message-box .section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-message-box .section-description {
  color: var(--gray-600);
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-row .form-group {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: auto;
  min-width: 150px;
}

.contact-form .btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form validation styles */
.contact-form .form-control.error {
  border-color: var(--danger);
}

.contact-form .error-message {
  color: var(--danger);
  font-size: 12px;
  margin-top: 5px;
}

.contact-details {
  padding: 20px 0;
}

.contact-info-box {
  margin-bottom: 30px;
}

.contact-info-box .section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.location-info {
  margin-bottom: 20px;
}

.location {
  margin-bottom: 15px;
}

.location h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gray-800);
}

.location p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.phone-numbers p {
  margin-bottom: 10px;
  font-size: 16px;
}

.phone-numbers a {
  color: var(--primary);
  font-weight: 500;
}

.office-locations {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.office-box {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.office-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-800);
  text-align: center;
}

.office-box .map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.office-box .map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .contact-section .col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .form-row {
    margin: 0 -5px;
  }
  
  .form-row .form-group {
    padding: 0 5px;
  }
  
  .office-box {
    width: 100%;
  }
  
  .contact-message-box .section-title {
    font-size: 22px;
  }
  
  .contact-info-box .section-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .form-row .form-group {
    width: 100%;
  }
  
  .contact-form .btn-primary {
    width: 100%;
  }
  
  .contact-message-box,
  .contact-info-box {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .contact-section .row {
    margin: 0 -10px;
  }
  
  .contact-section .col-md-6 {
    padding: 0 10px;
  }
  
  .contact-message-box,
  .contact-info-box {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .step {
    padding: 1.5rem 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification.success {
  background-color: var(--success);
}

.notification.error {
  background-color: var(--danger);
}

.notification.info {
  background-color: var(--info);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Footer Styles - Exact Match for taxiteazy.com */
.footer {
  background-color: #f8f8f8;
  padding: 50px 0 0;
  color: #555;
  border-top: 1px solid #eee;
}

.footer-top {
  margin-bottom: 30px;
}

.footer-disclaimer {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  color: #666;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.footer-widget {
  padding: 0 15px;
  width: 33.333%;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
}

.footer-contact a {
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.newsletter-form {
  position: relative;
}

.newsletter-form .form-group {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
}

.newsletter-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.submit-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 36px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-dark);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px 0;
  text-align: center;
}

.copyright {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.copyright a {
  color: var(--primary);
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-name {
  margin: 15px 0 5px;
  font-weight: 600;
  color: #343a40;
  padding: 0 15px;
}

.member-position {
  color: #28a745;
  margin-bottom: 15px;
  padding: 0 15px;
}

/* Improved FAQ Section */
.faq-question {
  position: relative;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 50px 20px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  flex: 1;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  border-radius: 2px;
}

.faq-toggle::before {
  width: 18px;
  height: 2px;
  top: 8px;
}

.faq-toggle::after {
  width: 2px;
  height: 18px;
  left: 8px;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer ol,
.faq-answer ul {
  padding-left: 20px;
  margin-top: 10px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer strong {
  color: var(--primary);
}

/* Improved Testimonials Section */
.testimonials {
  background-color: var(--gray-100);
  padding: 80px 0;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.testimonial {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: none; /* Hidden by default, shown via JS */
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  margin-bottom: 15px;
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--gray-700);
}

.testimonial-author-box {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-author {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-position {
  margin: 0;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-nav {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-nav button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-nav button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Improved Service Tabs */
.service-tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: white;
  margin-top: 40px;
}

.tabs {
  display: flex;
  background-color: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}

.tab {
  flex: 1;
  padding: 15px 20px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.tab.active, 
.tab:hover {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  background-color: white;
}

.tab-content {
  display: none;
  padding: 0;
  transition: all 0.3s;
}

.tab-content.active {
  display: block;
}

.tab-content-inner {
  display: flex;
  flex-wrap: wrap;
}

.tab-content-image {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .tab-content-image {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.tab-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-content-text {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 30px;
}

@media (min-width: 768px) {
  .tab-content-text {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

.tab-content h3 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.tab-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.tab-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.tab-service-list li {
  display: flex;
  margin-bottom: 20px;
}

.tab-service-list .service-icon {
  margin-right: 15px;
  background: var(--primary);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.tab-service-list h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--dark);
}

.tab-service-list p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Updated CTA Section Styles */
.cta {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta .btn {
  min-width: 200px;
  background-color: white;
  color: var(--primary);
  border: 2px solid white;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta .btn:hover {
  background-color: transparent;
  color: white;
}
