.seo-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0d1b2a, #000814 80%);
  overflow: hidden;
  color: #fff;
}

/* Stars background */
.seo-stars, .seo-stars2, .seo-stars3 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-repeat: repeat;
  background-size: contain;
  animation: moveStars 100s linear infinite;
}

.seo-stars {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  animation-duration: 100s;
}
.seo-stars2 {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  animation-duration: 200s;
  opacity: 0.5;
}
.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; }
}

/* Hero Container */
.seo-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  width: 100%;
  z-index: 2;
  gap: 40px;
  padding-top: 6%;
}

/* Left Content */
.seo-hero-text {
  flex: 1 1 50%;
  max-width: 50%;
}

.seo-hero-text .seo-sub-heading {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.seo-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.seo-hero-text .seo-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Button */
.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);
}

.seo-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.6);
}

/* Right Image */
.seo-hero-image {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.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) {
  .seo-hero-container {
    flex-direction: column;
    text-align: center;
  }
  .seo-hero-text, 
  .seo-hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .seo-hero-text h1 {
    font-size: 2.2rem;
  }
  .seo-hero-text .seo-description {
    margin: 0 auto 25px;
  }
}



/* section */

.why-choose-us {
  background: #f9faff;
  padding: 90px 20px;
  font-family: system-ui, sans-serif;
  color: #1a1a1a;
}

.choose-container {
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
}

/* Section Heading */
.choose-header h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 20px;
  color: #0f0f0f;
  position: relative;
}
.choose-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #2D3DFF;
  margin: 12px auto 0;
  border-radius: 3px;
}

.choose-header p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 18px;
  color: #444;
}
.choose-header p strong {
  color: #2D3DFF;
}

/* Feature Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.choose-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* Icons */
.choose-box .icon {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 15px;
  color: #2D3DFF;
}

.choose-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f0f0f;
}

.choose-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}


/* section */

.seo-benefits-alt {
  background: #f9faff;
  padding: 80px 20px;
  font-family: system-ui, sans-serif;
}

.benefits-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Image */
.benefits-image img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: transform .3s ease;
}
.benefits-image img:hover {
  transform: scale(1.05);
}

/* Right Content */
.benefits-content {
  flex: 1 1 480px;
}

.benefits-content h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 20px;
  color: #0f0f0f;
  position: relative;
}
.benefits-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #041273;
  margin-top: 12px;
  border-radius: 2px;
}

.benefits-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.benefits-content p strong {
  color: #041273;
}











/* road map */


body {
  font-family: Arial;
  background: #fff;
  margin: 0;
  padding: 0;
}

.seo-roadmap {
  padding: 60px 20px;
  text-align: center;
}

.seo-roadmap-title {
  font-size: 32px;
  font-weight: bold;
  color: #031273;
  margin-bottom: 60px;
}

.seo-roadmap-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  padding: 0% 10%;
}

.seo-roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  position: relative;
}

.seo-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;
}

.seo-content img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.seo-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #031273;
  margin-bottom: 10px;
}

.seo-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.seo-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) {
  .seo-roadmap-container {
    gap: 30px;
  }

  .seo-roadmap-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .seo-roadmap-step {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .seo-roadmap-container {
    flex-direction: column;
    align-items: center;
  }

  .seo-roadmap-step {
    width: 100%;
    max-width: 300px;
  }

  .seo-roadmap-line {
    width: 4px;
    height: 60px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #033b96, #031273);
  }
}

@media (max-width: 480px) {
  .seo-roadmap-title {
    font-size: 24px;
  }

  .seo-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }

  .seo-content h3 {
    font-size: 16px;
  }

  .seo-content p {
    font-size: 13px;
  }
}




/* section */

/* --- SEO 3D Section --- */
.seo3d-section {
  --bg: #0b1020;
  --card: #121936;
  --accent: #7cf3d0;
  --text: #e9eefc;
  --muted: #a8b2d1;
  --ring: rgba(77,163,255,.35);
  --radius: 18px;
  --shadow: 0 10px 25px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.03);

  background: radial-gradient(1200px 800px at 10% -10%, #1a2458 0%, transparent 60%),
              radial-gradient(900px 600px at 110% 20%, #123058 0%, transparent 50%),
              var(--bg);
  padding: 56px 18px 72px;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
  position: relative;
}

.seo3d-container { max-width: 1100px; margin: 0 auto; }
.seo3d-eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--accent); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; font-size: 12px;
  background: rgba(124,243,208,.08);
  border: 1px solid rgba(124,243,208,.25);
  padding: 6px 10px; border-radius: 999px;
}

#seo3d-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 14px 0 24px;
  color: #fff;
}
.seo3d-sub { color: var(--muted); max-width: 720px; margin-bottom: 28px; }

.seo3d-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .seo3d-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .seo3d-grid { grid-template-columns: repeat(3, 1fr); } }

.seo3d-card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)) , var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.07);
  padding: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.seo3d-card:hover { transform: translateY(-6px) rotateX(2deg) rotateY(-2deg); }
.seo3d-tilt { transition: transform .25s ease; }
.seo3d-card:hover .seo3d-tilt { transform: translateZ(30px); }

.seo3d-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(77,163,255,.2), rgba(124,243,208,.18));
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.seo3d-card h3 {
  font-size: 18px; margin: 6px 0 8px; color: #fff;
}
.seo3d-card p { color: var(--muted); line-height: 1.6; font-size: 14.5px; }

.seo3d-bubble {
  position: absolute; filter: blur(20px); opacity: .35;
  background: radial-gradient(circle at 30% 30%, rgba(77,163,255,.6), transparent 40%);
  width: 380px; height: 380px; top: -120px; right: -140px;
}
.seo3d-bubble2 {
  position: absolute; filter: blur(18px); opacity: .28;
  background: radial-gradient(circle at 60% 60%, rgba(124,243,208,.6), transparent 45%);
  width: 280px; height: 280px; bottom: -80px; left: -120px;
}





/* section */

/* Section Wrapper */
.review-split {
  background: linear-gradient(135deg, #0b1020 60%, #10163a 100%);
  padding: 80px 20px;
  font-family: system-ui, sans-serif;
  color: #e9eefc;
}

.review-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.review-left img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  /* box-shadow: 0 15px 35px rgba(0,0,0,.35); */
  transition: transform .4s ease;
}
.review-left img:hover {
  transform: scale(1.04);
}

/* Right Side Content */
.review-right {
  flex: 1 1 480px;
}

.review-right h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 18px;
  color: #fff;
  position: relative;
}
.review-right h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #041273;
  margin-top: 10px;
  border-radius: 2px;
}

.review-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #a8b2d1;
}
.review-right p strong {
  color: #041273;
}

.review-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #041273;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 6px 14px rgba(45,61,255,.4);
}
.review-btn:hover {
  background: #1c2add;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(45,61,255,.5);
  color: #fff;
}
.about-seo{
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 3% 0%;
}
.seo-abt-content{
  width: 50%;
}
.seo-abt-image{
  width: 50%;
}







/* What Are You Looking For */



.seo-section-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial;
  text-align: center;
}

.seo-section-container h2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: #222;
  margin-top: 50px;
}

.seo-items-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.seo-item.card,
.seo-stat.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #007BFF; 
  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;
}

.seo-item.card:hover,
.seo-stat.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  border-color: #0056b3; 
}

.seo-item img,
.seo-stat img {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.seo-item p,
.seo-stat p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.seo-stat h3 {
  font-size: 1.4rem;
  margin: 5px 0;
  color: #0056b3;
  font-weight: bold;
}

@media (max-width: 768px) {
  .seo-items-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-seo{
    display: block;
  }
  .seo-abt-content{
    width: 100%;
  }
  .seo-abt-image{
    width: 100%;
  }
}

@media (max-width: 480px) {
  .seo-items-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}



/* 3 box */

.seo-skills-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color:lightsteelblue;
}

.seo-skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  width: 100%;
}

.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;
}

.seo-skill-card:hover {
  background: #031273;
  color: #fff;
  border-color: #031273;
  transform: translateY(-5px);
}

.seo-skill-card:hover b {
  color: #fff;
}

.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;
}

.seo-skill-card:hover .seo-skill-title {
  background: #fff;
  color: #031273;
}

.seo-skill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-skill-card li {
  margin-bottom: 12px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .seo-skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .seo-skills-container {
    grid-template-columns: 1fr;
  }
}



/* section */

.seo-engage-section {
  padding: 60px 20px;
}

.seo-engage-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.seo-engage-image img {
  max-width: 100%;
  height: auto;
}

.seo-engage-content {
  flex: 1;
  min-width: 300px;
}

.seo-subtitle {
  color: #252fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.seo-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f0f0f;
}

.seo-engage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.seo-engage-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.seo-engage-icon img {
  width: 40px;
  height: 40px;
}

.seo-engage-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.seo-engage-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
  .seo-engage-container {
    flex-direction: column;
    text-align: center;
  }

  .seo-engage-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .seo-title {
    font-size: 28px;
  }
  .seo-engage-text h3 {
    font-size: 18px;
  }
  .seo-engage-text p {
    font-size: 15px;
  }
}




/* section 4 */

.seo-cta-banner {
  background: linear-gradient(135deg, #0056b3, #003d80); /* Blue gradient */
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.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 */
}

.seo-cta-box p {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.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;
}

.seo-cta-btn:hover {
  background: #e68900;
}


/* section 5 */
.seo-clients-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.seo-clients-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

.seo-clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.seo-clients-track {
  display: flex;
  width: calc(200%); /* Double for looping */
  animation: slide 20s linear infinite;
}

.seo-client-logo {
  flex: 0 0 auto;
  width: 200px; /* adjust logo box size */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.seo-client-logo img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* section 6 */
.seo-industries-section {
  text-align: center;
  background: #313c96;
  padding: 60px 20px;
  color: #fff;
}

.seo-industries-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color:white
}

.seo-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.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;
}

.seo-industry-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  margin-bottom: 15px;
}

.seo-industry-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.seo-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



/* faq */
.digital-marketing-faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.digital-marketing-faq-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.digital-marketing-faq-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.digital-marketing-faq-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.digital-marketing-faq-item {
  background: #f9f9f9;
  border: 1px solid #00a0e3;
  border-radius: 5px;
  overflow: hidden;
}

.digital-marketing-faq-question {
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.digital-marketing-faq-question::after {
  content: "›";
  position: absolute;
  right: 15px;
  transition: transform 0.3s;
  font-size: 20px;
  color: #00a0e3;
}

.digital-marketing-faq-question.active::after {
  transform: rotate(90deg);
}

.digital-marketing-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  background: #f9f9f9;
}

.digital-marketing-faq-answer p {
  font-size: 14px;
  padding: 10px 0;
  color: #444;
  line-height: 1.5;
}
.digital-marketing-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.digital-marketing-faq-question.active {
  color: #031273; /* highlight active question */
  font-weight: bold;
}




/* section 7 */
.seo-services {
  text-align: center;
  padding: 50px 50px;
}

.seo-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #002147;
  position: relative;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.seo-card {
  background: #f0f8ff;
  padding: 30px 20px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.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);
}

.seo-icon span {
  transform: rotate(-45deg);
}

.seo-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #002147;
}

.seo-text {
  font-size: 14px;
  color: #555;
}

.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;
}

.seo-card:hover .seo-arrow {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.seo-quote {
  background: #031273;
  color: #fff;
  padding: 40px 20px;
  border-radius: 6px;
}

.seo-quote h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.seo-phone {
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 boxes per row */
  gap: 20px;
}
.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;
}
.seo-arrow:hover {
  background: #031273;   /* darker blue on hover */
  text-decoration: none; /* make sure hover also has no underline */
}