/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(15deg, #e0e0e0 0%, #addfbc 0%, #addfbc 100%); */
  /* background: linear-gradient(#addfbc 50%, #f8f9fa); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: rgb(0, 0, 0);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: -webkit-linear-gradient(#159e3e, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-question {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #159e3e;

  color: #ffffff;
  padding: 1rem;
  border-radius: 0.4rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.hero-action {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-button {
  display: inline-block;
  padding: 15px 40px;
  background: #89e4a4;
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  background: #ffffff;
  transform: translateY(-3px);
  color: black;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.typographic-image-container {
  padding-top: 2rem;
}

.contact-button i {
  margin-right: 10px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #addfbc, #71b986);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 20px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #addfbc;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #159e3e, #71b986);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

/* Advantages Section */
.advantages-section {
  padding: 100px 20px;
  /* background: linear-gradient(white, #addfbc); */
  /* background: linear-gradient(135deg, rgb(200, 225, 235), rgb(230, 245, 245)); */
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.advantages-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantages-main-icon {
  font-size: 12rem;
  color: #71b986;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.advantage-item i {
  font-size: 1.5rem;
  color: #71b986;
  margin-top: 3px;
  flex-shrink: 0;
}

.advantage-item span {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.on-page-seo-ul {
  margin: 0 auto;
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  display: flex;
  max-width: 900px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.on-page-seo-sub-heading {
  margin-top: 2rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #333;
}

.on-page-seo-ul li {
  /* border-left: 5px solid #159e3e; */
  background-color: #65be7f;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-icon {
    font-size: 10rem;
  }

  .advantages-content {
    grid-template-columns: 1fr;
  }

  .advantages-main-icon {
    font-size: 8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .hero-icon {
    font-size: 8rem;
  }

  .advantages-main-icon {
    font-size: 6rem;
  }
}

/* (NEW) Off-page, Table, CTA & List enhancements */
.off-page-seo {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f6fff6 0%, #eaf9ee 100%);
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 6px 30px rgba(17, 94, 46, 0.06);
}

.off-page-seo h2 {
  font-size: 1.8rem;
  color: #0a5e2b;
  text-align: center;
  margin-bottom: 12px;
}

.off-page-seo p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #26442c;
  line-height: 1.8;
}

/* Comparison table */
.container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(61, 114, 84, 0.06);
}

.container th,
.container td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
}

.container thead th {
  background: linear-gradient(90deg, #159e3e, #71b986);
  color: white;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.container tbody tr:nth-child(even) {
  background: #f7fbf7;
}

.container tbody td {
  color: #2a2a2a;
  font-size: 0.98rem;
}

/* CTA paragraphs */
.container > section:last-of-type p {
  max-width: 900px;
  margin: 0.5rem auto;
  text-align: center;
  padding: 14px 18px;
  background: linear-gradient(
    90deg,
    rgba(101, 190, 127, 0.12),
    rgba(164, 233, 185, 0.08)
  );
  border-left: 4px solid #159e3e;
  border-radius: 8px;
}

/* Why choose list */
.container > section ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-top: 16px;
}

.container > section ul li {
  background: linear-gradient(180deg, #fff, #f7fff8);
  border: 1px solid #e6f4ea;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(8, 60, 25, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s;
  min-width: 200px;
}

.container > section ul li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(8, 60, 25, 0.08);
}

/* Small screens: table scroll & list stack */
@media (max-width: 768px) {
  .container table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .container > section ul {
    gap: 10px;
    justify-content: stretch;
  }

  .container > section ul li {
    flex: 1 1 100%;
    min-width: 0;
  }
}
/* SEO Services Section Styles */
.seo-services-section {
  padding: 60px 20px;
  background-color: #f9fbfd;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.seo-container {
  max-width: 800px;
  margin: 0 auto;
}

.seo-section-title {
  font-size: 32px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  border-bottom: 3px solid #71b986;
  display: inline-block;
  padding-bottom: 10px;
}

.seo-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.seo-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.seo-feature-text {
  font-size: 18px;
  font-weight: 500;
}

/* CTA Section Styles */
.seo-cta-section {
  padding: 80px 20px;
  background: linear-gradient(90deg, #159e3e, #71b986);
  color: #ffffff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-intro-text {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.cta-main-title {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 600;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: #ffffff;
  color: #159e3e;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* SVG Icon Styles */
.seo-icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #28a745;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
