/* ===== Hero Section Styling ===== */
/* ===== Hero Section ===== */
.local-seo-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0d1b2a, #000814 80%);
  overflow: hidden;
  color: #fff;
}
/* 📱 Mobile Responsive Fix */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .digital-section {
    padding: 20px 15px;
  }

  .digital-section img {
    max-width: 100%;
  }

  .digital-section h2 {
    font-size: 24px;
  }

  .digital-section p.sub-heading {
    font-size: 14px;
  }

  .digital-section p {
    font-size: 14px;
    max-width: 95%;
  }

  .digital-section .btn {
    font-size: 14px;
    padding: 10px 22px;
  }
}

/* Stars background */
.local-seo-stars, .local-seo-stars2, .local-seo-stars3 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-repeat: repeat;
  background-size: contain;
  animation: moveStars 100s linear infinite;
}

.local-seo-stars {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  animation-duration: 100s;
}
.local-seo-stars2 {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  animation-duration: 200s;
  opacity: 0.5;
}
.local-seo-stars3 {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  animation-duration: 300s;
  opacity: 0.3;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: -10000px 5000px; }
}
.local-seo-hero-section {
  min-height: 70vh; /* reduce from 100vh if you're using that */
  padding: 60px 5%; /* reduce top/bottom padding */
  display: flex;
  align-items: center; /* keeps content centered */
}

.local-seo-hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.local-seo-hero-text {
  flex: 1;
}

.local-seo-hero-image img {
  max-width: 450px; /* shrink image */
  height: auto;
}


/* Container */
.local-seo-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 6%;
}

/* Left Text */
.local-seo-hero-text {
  flex: 1;
  min-width: 300px;
}

.local-seo-hero-text .local-seo-sub-heading {
  font-size: 1rem;
  color: #4dd0e1;
  margin-bottom: 15px;
  font-weight: 600;
}

.local-seo-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.local-seo-hero-text .local-seo-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Button */
.local-seo-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
}

.local-seo-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.6);
}

/* Right Image */
.local-seo-hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.local-seo-hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 900px) {
  .local-seo-hero-container {
    /* flex-direction: column-reverse; */
    text-align: center;
  }
  .local-seo-hero-text h1 {
    font-size: 2.2rem;
  }
  .local-seo-hero-text .local-seo-description {
    margin: 0 auto 25px;
  }
}



/* section 2*/

.local-seo-section-header{
  text-align: center;
}

.local-seo-service-card {
  background: #f9f9ff;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-image: linear-gradient(#f9f9ff, #f9f9ff),
                    linear-gradient(90deg, #3b49df, #ff3bd6, #3b49df);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  background-size: 200% auto; /* for animated gradient */
}

/* Title + Arrow */
.local-seo-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.local-seo-service-card h3::after {
  content: "↗";
  font-size: 16px;
  color: #3b49df;
  margin-left: 8px;
  transition: color 0.3s ease;
}

/* Hover effect */
.local-seo-service-card:hover {
  background: #031273;
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  border-color: transparent;
  color: white;
  background-image: linear-gradient(#031273, #031273),
                    linear-gradient(270deg, #3b49df, #ff3bd6, #3b49df);
  background-size: 300% auto;
  animation: borderMove 4s linear infinite;
}

.local-seo-service-card:hover h3::after {
  color: #fff;
}

/* Border gradient animation */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.local-seo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 25px; /* spacing between cards */
  margin-top: 40px;
  padding: 20px;

}

/* Responsive for tablets */
@media (max-width: 992px) {
  .local-seo-services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Responsive for mobiles */
@media (max-width: 600px) {
  .local-seo-services-grid {
    grid-template-columns: 1fr; /* single column */
  }
}


/* section 4 */

.local-seo-skills-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: lightsteelblue;
}

.local-seo-skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  width: 100%;
}

.local-seo-skill-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.local-seo-skill-card:hover {
  background: #031273;
  color: #fff;
  border-color: #031273;
  transform: translateY(-5px);
}

.local-seo-skill-card:hover b {
  color: #fff;
}

.local-seo-skill-title {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid #031273;
  border-radius: 6px;
  color: #031273;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.local-seo-skill-card:hover .local-seo-skill-title {
  background: #fff;
  color: #031273;
}

.local-seo-skill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.local-seo-skill-card li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* New image card */
.local-seo-skill-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.local-seo-skill-image img {
  max-width: 75%;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .local-seo-skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .local-seo-skills-container {
    grid-template-columns: 1fr;
  }
}




    /* section 3 */


.local-seo-section-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial;
  text-align: center;
}

.local-seo-section-container h2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: #222;
  margin-top: 50px;
}

/* Grid Layouts */
.local-seo-items-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 3D Card Style with Blue Border */
.local-seo-item.card,
.local-seo-stat.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #007BFF; /* Blue border */
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.local-seo-item.card:hover,
.local-seo-stat.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  border-color: #0056b3; /* Darker blue on hover */
}

.local-seo-item img,
.local-seo-stat img {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.local-seo-item p,
.local-seo-stat p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.local-seo-stat h3 {
  font-size: 1.4rem;
  margin: 5px 0;
  color: #0056b3;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .local-seo-items-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .local-seo-items-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* section 4 */

.local-seo-cta-banner {
  background: linear-gradient(135deg, #0056b3, #003d80); /* Blue gradient */
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.local-seo-cta-box {
  background: #003366; /* Dark blue inner box */
  padding: 20px 30px;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid #007bff; /* Blue border */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* 3D shadow effect */
}

.local-seo-cta-box p {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.local-seo-cta-btn {
  background: #ff9800; /* Orange button */
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.local-seo-cta-btn:hover {
  background: #e68900;
}


/* section 5 */
.local-seo-clients-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.local-seo-clients-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

.local-seo-clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.local-seo-clients-track {
  display: flex;
  width: calc(200%); /* Double for looping */
  animation: slide 20s linear infinite;
}

.local-seo-client-logo {
  flex: 0 0 auto;
  width: 200px; /* adjust logo box size */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.local-seo-client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.local-seo-client-logo img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* section 6 */
.local-seo-industries-section {
  text-align: center;
  background: #313c96;
  padding: 60px 20px;
  color: #fff;
}

.local-seo-industries-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color:white
}

.local-seo-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.local-seo-industry-card {
  background: #ffffff10;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.local-seo-industry-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  margin-bottom: 15px;
}

.local-seo-industry-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.local-seo-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



/* faq */
.local-seo-faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.local-seo-faq-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.local-seo-faq-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.local-seo-faq-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.local-seo-faq-item {
  background: #f9f9f9;
  border: 1px solid #00a0e3;
  border-radius: 5px;
  overflow: hidden;
}

.local-seo-faq-question {
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.local-seo-faq-question::after {
  content: "›";
  position: absolute;
  right: 15px;
  transition: transform 0.3s;
  font-size: 20px;
  color: #00a0e3;
}

.local-seo-faq-question.active::after {
  transform: rotate(90deg);
}

.local-seo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  background: #f9f9f9;
}

.local-seo-faq-answer p {
  font-size: 14px;
  padding: 10px 0;
  color: #444;
  line-height: 1.5;
}
.local-seo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.local-seo-faq-question.active {
  color: #031273; /* highlight active question */
  font-weight: bold;
}



/* section 7 */
.local-seo-services {
  text-align: center;
  padding: 50px 50px;
}

.local-seo-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #002147;
  position: relative;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.local-seo-card {
  background: #f0f8ff;
  padding: 30px 20px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.local-seo-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #031273;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.local-seo-icon span {
  transform: rotate(-45deg);
}

.local-seo-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #002147;
}

.local-seo-text {
  font-size: 14px;
  color: #555;
}

.local-seo-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #031273;
  color: #fff;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.local-seo-card:hover .local-seo-arrow {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.local-seo-quote {
  background: #031273;
  color: #fff;
  padding: 40px 20px;
  border-radius: 6px;
}

.local-seo-quote h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.local-seo-phone {
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
}
.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(250px, 1fr); /* exactly 3 boxes per row */
  gap: 20px;
}
.local-seo-arrow {
  display: inline-block;
  background: #031273;   /* your blue background */
  color: #fff;           /* arrow color */
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none; /* removes underline */
  font-size: 18px;
}
.local-seo-arrow:hover {
  background: #031273;   /* darker blue on hover */
  text-decoration: none; /* make sure hover also has no underline */
}









/* road Map design */



body {
  font-family: Arial;
  background: #fff;
  margin: 0;
  padding: 0;
}

.roadmap {
  padding: 60px 20px;
  text-align: center;
}

.roadmap-title {
  font-size: 32px;
  font-weight: bold;
  color: #031273;
  margin-bottom: 60px;
}

.roadmap-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  padding: 0% 10%;
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  position: relative;
}

.circle {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #033b96, #031273);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(3,59,150,0.5);
  z-index: 2;
}

.content img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #031273;
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.roadmap-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, #033b96, #031273);
  position: relative;
  top: -35px;
  z-index: 1;
  border-radius: 2px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  .roadmap-container {
    gap: 30px;
  }

  .roadmap-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .roadmap-step {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .roadmap-container {
    flex-direction: column;
    align-items: center;
  }

  .roadmap-step {
    width: 100%;
    max-width: 300px;
  }

  .roadmap-line {
    width: 4px;
    height: 60px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #033b96, #031273);
  }
}

@media (max-width: 480px) {
  .roadmap-title {
    font-size: 24px;
  }

  .circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }

  .content h3 {
    font-size: 16px;
  }

  .content p {
    font-size: 13px;
  }
}





/* Services */
/* seo */