/* ✅ General Reset */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fc;
  color: #111;
}

/* ✅ Shared Section Styling */
section {
  padding: 40px 0; /* Reduced padding for all sections */
}

/* ✅ Reputation Section */
.reputation-section {
  background: #f1f6ff;
  padding: 60px 15px;
  text-align: center;
}

.reputation-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #001133;
  margin-bottom: 15px;
}

.reputation-section h2 span {
  color: #ff3d00;
}

.reputation-section p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.reputation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.reputation-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
}

.reputation-card:hover {
  transform: translateY(-5px);
}

.reputation-card img {
  height: 60px;
  margin-bottom: 20px;
}

.reputation-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #001133;
  margin-bottom: 10px;
}

.reputation-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* ✅ Industry Section */
.industry-section {
  background: #f8faff;
  padding: 50px 20px; /* Reduced padding */
  text-align: center;
}

.industry-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #001133;
  margin-bottom: 10px;
}

.industry-section h2 span {
  color: #ff3d00;
}

.industry-section p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.industry-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 16px;
  font-weight: 600;
  color: #001133;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
}

.industry-item i {
  font-size: 20px;
  color: #ff3d00;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ✅ Services Section */
.services-section {
  padding: 50px 20px; /* Reduced padding */
  max-width: 1200px;
  margin: auto;
}

.services-section h2 {
  text-align: center;
  font-size: 32px;
  color: #ff3d00;
  margin-bottom: 15px;
}

.services-section p.subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 50px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003366;
}

.service-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.tools-integration {
  padding: 60px 20px;
  background: #f7f9fd;
  text-align: center;
}

.tools-integration .section-header h2 {
  font-size: 28px;
  color: #001133;
  margin-bottom: 10px;
}

.tools-integration .section-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.tool-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.tool-box:hover {
  transform: translateY(-5px);
}

.tool-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.tool-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #001133;
  margin-bottom: 8px;
}

.tool-box p {
  font-size: 14px;
  color: #555;
}
@media screen and (max-width: 480px) {
  .pricing-card {
    width: 92%;
    max-width: 360px;
    margin: 20px auto;
  }
}
.footer-row {
  margin-bottom: 0;
  padding-bottom: 10px; /* ya 0 bhi kar sakte ho if needed tighter */
}

.footer-bottom {
  margin-top: 0;
  padding-top: 10px;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.footer,
.footer-wrapper,
.footer-bottom {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-bottom {
  padding: 10px 15px !important;
  text-align: center;
  background: #e9f1ff;
  font-size: 14px;
  color: #862626;
}
.footer-bottom {
  background: #e9f1ff;
  text-align: center;
  padding: 12px 15px;
  font-size: 14px;
  color: #c21717;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.footer-row {
  margin-bottom: 0;
  padding-bottom: 10px; /* ya 0 bhi kar sakte ho if needed tighter */
}

.footer-bottom {
  margin-top: 0;
  padding-top: 10px;
}
.seo-smo-intro {
  background: #f1f6ff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-smo-content {
  max-width: 900px;
  text-align: left;
}

.seo-smo-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #001133;
  margin-bottom: 20px;
}

.seo-smo-content h2 span {
  color: #ff3d00;
}

.seo-smo-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.seo-smo-content .highlight-line {
  font-weight: 600;
  font-size: 16px;
  color: #001133;
  margin-top: 25px;
}

.btn-orange {
  display: inline-block;
  background: #ff3d00;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background: #e93300;
}
.seo-process {
  padding: 80px 20px;
  background: #f1f6ff;
  text-align: center;
}

.seo-intro h2 {
  font-size: 32px;
  font-weight: bold;
  color: #001133;
  margin-bottom: 15px;
}

.seo-intro h2 span {
  color: #ff3d00;
}

.seo-intro p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.seo-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.seo-box:hover {
  transform: translateY(-5px);
}

.seo-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.seo-box h4 {
  font-size: 18px;
  color: #001133;
  margin-bottom: 10px;
}

.seo-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
/* Force white background for SMO section */
.seo-smo-intro {
  background: #ffffff !important;
}
.smo-process {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.smo-intro h2 {
  font-size: 32px;
  font-weight: bold;
  color: #001133;
  margin-bottom: 15px;
}

.smo-intro h2 span {
  color: #ff3d00;
}

.smo-intro p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.smo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.smo-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.smo-box:hover {
  transform: translateY(-5px);
}

.smo-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.smo-box h4 {
  font-size: 18px;
  color: #001133;
  margin-bottom: 10px;
}

.smo-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.project-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.project-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.project-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 300px;
  width: 100%;
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.project-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.project-card h3 {
  font-size: 20px;
  color: #001133;
}
.side-by-side-projects {
  background-color: #f1f6ff; /* 🔁 You can change this */
  padding: 60px 20px;
}

.project-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.project-col {
  flex: 1 1 450px;
  max-width: 500px;
  text-align: center;
}

.project-col h2 {
  font-size: 24px;
  font-weight: 700;
  color: #001133;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.project-col img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
.ppc-section {
  background: #f8faff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.header h1 {
  font-size: 32px;
  color: #001133;
}
.header h1 span {
  color: #ff3d00;
}
.header p {
  font-size: 16px;
  color: #444;
  margin: 10px 0 20px;
}
.start-btn {
  background: #ff3d00;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
.start-btn:hover {
  background: #e93300;
}

.ad-platforms {
  margin-top: 60px;
}
.platforms {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.platform img {
  width: 60px;
  height: 60px;
}
.platform p {
  margin-top: 10px;
  font-weight: 600;
}

.ppc-benefits, .process, .why-choose {
  margin-top: 60px;
}
.benefits, .steps, .reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.benefit, .step, .reason {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 280px;
}
.icon {
  font-size: 48px;
  color: #ff3d00;
  margin-bottom: 15px;
  line-height: 1;
}
.benefit h3, .step h3, .reason h3 {
  color: #001133;
  font-size: 18px;
  margin-bottom: 8px;
}
.benefit p, .step p, .reason p {
  color: #555;
  font-size: 14px;
}
.icon {
  font-size: 28px !important;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 10px;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8faff;
  color: #111;
}

.webdev-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.webdev-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.webdev-header .text-content {
  flex: 1 1 500px;
}

.webdev-header h1 {
  font-size: 38px;
  color: #001133;
  margin-bottom: 20px;
}

.webdev-header p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.webdev-header .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #ff3d00;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.webdev-header .cta-button:hover {
  background: #e93300;
}

.webdev-header .image-content {
  flex: 1 1 400px;
  text-align: center;
}

.webdev-header .image-content img {
  max-width: 100%;
  height: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.feature {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature span {
  font-size: 36px;
  color: #ff3d00;
  display: block;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #001133;
}

.feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fbff;
  color: #111;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background: #fff;
}

.banner .text {
  max-width: 50%;
}

.banner h1 {
  font-size: 38px;
  color: #001133;
}

.banner p {
  font-size: 18px;
  margin: 20px 0;
}

.btn {
  background: #ff3d00;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.banner img {
  max-width: 40%;
}

.features-section {
  padding: 60px 10%;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.feature i {
  font-size: 28px;
  color: #ff3d00;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  color: #001133;
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fbff;
  color: #111;
}
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background: #fff;
}
.banner .text {
  max-width: 50%;
}
.banner h1 {
  font-size: 38px;
  color: #001133;
}
.banner p {
  font-size: 18px;
  margin: 20px 0;
}
.btn {
  background: #ff3d00;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.banner img {
  max-width: 40%;
}
.features-section {
  padding: 60px 10%;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.feature {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}
.feature i {
  font-size: 28px;
  color: #ff3d00;
  margin-bottom: 15px;
}
.feature h3 {
  font-size: 18px;
  color: #001133;
  margin-bottom: 10px;
}
.feature p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .banner img {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner .text {
    max-width: 100%;
    width: 100%;
  }

  .banner img {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ Two columns ONLY on small screens */
    gap: 20px;
    max-width: 100%;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  body {
    zoom: 1.2; /* 120% */
    overflow-x: hidden;
  }
}
