.seo-hero-section {
  padding: 100px 0;
  background: #1c3f80;
}

.seo-main-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
}

.seo-main-title span {
  color: white;
}

.seo-main-desc {
  font-size: 17px;
  line-height: 1.8;
  margin: 20px 0;
  color: white;
}

.seo-about-section,
.seo-services-section {
  padding: 80px 0;
}

/* Service Section Wrapper */
.seo-services-grid {
  background:#1c3f80;

  padding: 80px 20px;
}

/* Grid Container */
.seo-services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* Divider lines */
.seo-services-container::before,
.seo-services-container::after {
  content: "";
  position: absolute;
  background: #000;
}

.seo-services-container::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.seo-services-container::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

/* Individual Box */
.seo-service-box {
  padding: 60px 40px;
  text-align: center;
}

/* Typography */
.seo-service-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.seo-service-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.seo-service-text {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  max-width: 420px;
  margin: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .seo-services-container {
    grid-template-columns: 1fr;
  }

  .seo-services-container::before,
  .seo-services-container::after {
    display: none;
  }

  .seo-service-box {
    border-bottom: 1px solid #000;
  }

  .seo-service-box:last-child {
    border-bottom: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .seo-service-title {
    font-size: 22px;
  }

  .seo-service-text {
    font-size: 14px;
  }

  .seo-service-box {
    padding: 40px 20px;
  }
}




/* Section Heading */
.seo-services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.seo-services-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.seo-services-heading p {
  font-size: 16px;
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  .seo-services-heading h2 {
    font-size: 28px;
  }
}





    /* ================== 5. HERO WITH FLOATING CARD ================== */

    .hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 40px;
    }

    .hero-image {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      display: block;
      border-top-left-radius: 60px;
      border-top-right-radius: 60px;
    }

    .floating-card {
      position: absolute;
      right: 5%;
      top: 44%;
      transform: translateY(-50%);
      background: #fff;
      padding: 24px;
      border-radius: 16px;
      max-width: 420px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      z-index: 10;
    }

    .floating-card h3 {
      margin-bottom: 12px;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .floating-card p {
      margin: 12px 0 16px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .card-image {
      width: 100%;
      height: auto;
      max-width: 350px;
      max-height: 240px;
      border-radius: 14px;
      display: block;
      margin: 0 auto 15px auto;
      object-fit: cover;
      border-top-left-radius: 60px;
      border-top-right-radius: 60px;
    }

    @media(max-width: 768px) {
      .hero-section {
        min-height: auto;
        padding: 0 0 120px 0;
      }

      .hero-image {
        height: 55vh;
        border-radius: 0;
      }

      .floating-card {
        position: relative !important;
        top: auto;
        right: auto;
        transform: none;
        margin: -40px auto 0;
        width: 92%;
        max-width: 380px;
        text-align: center;
        padding: 20px;
      }

      .card-image {
        max-width: 230px;
        max-height: 170px;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
      }
    }

    @media(max-width: 480px) {
      .floating-card {
        width: 95%;
        margin-top: -30px;
        padding: 16px;
      }

      .card-image {
        max-width: 180px;
        max-height: 140px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
      }

      .floating-card h3 { font-size: 1.1rem; }
      .floating-card p { font-size: 0.88rem; }
    }

    /* ================== 6. SERVICES SECTION ================== */





    /* ===== SECTION ===== */
.seo-hud-section {
  background: radial-gradient(circle at center, #061726, #020b16);
  padding: 150px 20px;
  display: flex;
  justify-content: center;
}

/* ===== HUD ===== */
.seo-hud {
  position: relative;
  width: 440px;
  height: 440px;
  cursor: pointer;
}

/* ===== RINGS ===== */
.hud-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ring-outer {
  border: 3px solid rgba(0,234,255,.35);
  animation: spinCW 26s linear infinite;
}

.ring-middle {
  inset: 40px;
  border: 2px dashed rgba(0,234,255,.5);
  animation: spinCCW 18s linear infinite;
}

.ring-inner {
  inset: 90px;
  border: 3px solid rgba(0,234,255,.95);
  box-shadow: 0 0 60px rgba(0,234,255,.8);
  animation: pulse 3s ease-in-out infinite;
}

/* ===== CENTER TEXT ===== */
.hud-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 6px;
  color: #00eaff;
  animation: textPop 2.6s ease-in-out infinite;
  z-index: 5;
}

/* ===== NODES ===== */
.hud-node {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(0,234,255,.08);
  border: 2px solid rgba(0,234,255,.6);
  box-shadow: 0 0 30px rgba(0,234,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .8s cubic-bezier(.22,.61,.36,1);
}

/* Start center */
.hud-node {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Split positions */
.seo-hud.split .node-top {
  top: -50px;
  left: 50%;
  opacity: 1;
}

.seo-hud.split .node-right {
  top: 50%;
  left: calc(100% + 50px);
  opacity: 1;
}

.seo-hud.split .node-bottom {
  top: calc(100% + 50px);
  left: 50%;
  opacity: 1;
}

.seo-hud.split .node-left {
  top: 50%;
  left: -50px;
  opacity: 1;
}

/* ===== ICON BASE ===== */
.icon {
  position: relative;
  width: 26px;
  height: 26px;
}

/* BULB */
.icon.bulb {
  border-radius: 50%;
  border: 2px solid #00eaff;
}
.icon.bulb::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 10px;
  height: 6px;
  background: #00eaff;
  transform: translateX(-50%);
}

/* GEAR */
.icon.gear {
  border: 2px solid #00eaff;
  border-radius: 4px;
}
.icon.gear::before,
.icon.gear::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(0,234,255,.8);
  border-radius: 50%;
}

/* CHART */
.icon.chart {
  border-left: 2px solid #00eaff;
  border-bottom: 2px solid #00eaff;
}
.icon.chart::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #00eaff;
  transform: rotate(-45deg);
  top: 6px;
  left: 6px;
}

/* SEARCH */
.icon.search {
  border: 2px solid #00eaff;
  border-radius: 50%;
}
.icon.search::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #00eaff;
  bottom: -6px;
  right: -6px;
  transform: rotate(45deg);
}

/* ===== ANIMATIONS ===== */
@keyframes spinCW {
  to { transform: rotate(360deg); }
}

@keyframes spinCCW {
  to { transform: rotate(-360deg); }
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 40px rgba(0,234,255,.6); }
  50% { box-shadow: 0 0 80px rgba(0,234,255,1); }
}

@keyframes textPop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .seo-hud {
    width: 300px;
    height: 300px;
  }
  .hud-center-text {
    font-size: 42px;
  }
}


.hud-radar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0,234,255,0.25) 30deg,
    transparent 60deg
  );
  animation: radarSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}




/* ===== HUD SECTION TEXT ===== */





/* ===== SECTION ===== */
.seo-section{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:60px 20px;
  text-align:center;
}

/* ===== TOP CONTENT ===== */
.seo-content{
  max-width:800px;
  margin-bottom:50px;
}

.seo-content h2{
  font-size:42px;
  color:#00eaff;
  margin-bottom:16px;
  text-shadow:0 0 20px rgba(0,234,255,.6);
}

.seo-content p{
  font-size:18px;
  line-height:1.7;
  opacity:.9;
}

/* ===== ANIMATION WRAPPER ===== */
.seo-ui{
  position:relative;
  width:100%;
  max-width:600px;
  aspect-ratio: 600 / 420;
}

/* ===== SEO CENTER BOX ===== */
.seo-core{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  padding:18px 38px;
  border:2px solid rgba(0,234,255,.8);
  box-shadow:0 0 30px rgba(0,234,255,.9);
  font-size:36px;
  font-weight:700;
  letter-spacing:4px;
  animation:corePulse 2.8s infinite;
  background:rgba(0,234,255,.05);
  color:#00eaff;
}

/* TABLET BASE */
.tablet{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:70%;
  height:28px;
  border-radius:6px;
  background:linear-gradient(90deg,#0b2b4a,#0e4b6f);
  box-shadow:0 0 30px rgba(0,234,255,.5);
}

/* NODE COMMON */
.node{
  position:absolute;
  width:46px;
  height:46px;
  border-radius:50%;
  border:2px solid rgba(0,234,255,.7);
  box-shadow:0 0 20px rgba(0,234,255,.7);
  display:flex;
  justify-content:center;
  align-items:center;
  animation:float 4s ease-in-out infinite;
  background:rgba(0,234,255,.06);
}

/* NODE POSITIONS (PERCENT BASED = RESPONSIVE) */
.n1{ top:10%; left:20%; animation-delay:.2s;}
.n2{ top:10%; right:20%; animation-delay:.4s;}
.n3{ top:38%; left:5%; animation-delay:.6s;}
.n4{ top:38%; right:5%; animation-delay:.8s;}
.n5{ bottom:20%; left:35%; animation-delay:1s;}
.n6{ bottom:20%; right:35%; animation-delay:1.2s;}

/* ICONS */
.icon{ width:18px; height:18px; position:relative; }

.search{ border:2px solid #00eaff; border-radius:50%; }
.search::after{
  content:"";
  position:absolute;
  width:8px;height:2px;
  background:#00eaff;
  bottom:-6px;right:-6px;
  transform:rotate(45deg);
}

.bulb{ border:2px solid #00eaff; border-radius:50%; }
.bulb::after{
  content:"";
  position:absolute;
  width:8px;height:6px;
  background:#00eaff;
  bottom:-6px;left:50%;
  transform:translateX(-50%);
}

.graph{
  border-left:2px solid #00eaff;
  border-bottom:2px solid #00eaff;
}
.graph::after{
  content:"";
  position:absolute;
  width:12px;height:2px;
  background:#00eaff;
  transform:rotate(-45deg);
  top:4px;left:6px;
}

.gear{ border:2px solid #00eaff; }

/* CONNECTION LINES */
.line{
  position:absolute;
  height:2px;
  width:20%;
  background:linear-gradient(90deg,transparent,#00eaff,transparent);
  animation:glow 2s infinite;
}

/* ANIMATIONS */
@keyframes float{
  0%,100%{ transform:translateY(0);}
  50%{ transform:translateY(-10px);}
}

@keyframes glow{
  0%,100%{ opacity:.4;}
  50%{ opacity:1;}
}

@keyframes corePulse{
  0%,100%{ box-shadow:0 0 25px rgba(0,234,255,.6);}
  50%{ box-shadow:0 0 50px rgba(0,234,255,1);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .seo-content h2{ font-size:30px; }
  .seo-content p{ font-size:16px; }
}



/* SECTION BASE */
.erp-hero-section {
  width: 100%;
  background: #1c3f80;
}

/* CONTAINER */
.erp-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* LEFT CONTENT */
.erp-hero-content {
  padding: 80px 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.erp-hero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.erp-hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* BUTTON */
.erp-btn {
  display: inline-block;
  background: #ffffff;
  color: #0a2cff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.erp-btn:hover {
  background: #e6e9ff;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.erp-hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.erp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .erp-hero-container {
    grid-template-columns: 1fr;
  }

  .erp-hero-content {
    padding: 60px 30px;
    text-align: center;
    align-items: center;
  }

  .erp-hero-image {
    height: 300px;
  }
}





/* SECTION */
.seo-hero-section {
  width: 100%;
  background: #1c3f80;
}

/* CONTAINER */
.seo-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* LEFT CONTENT */
.seo-hero-content {
  padding: 80px 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seo-hero-content h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.seo-hero-content p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 520px;
  margin-bottom: 30px;
}

/* BUTTON */
.seo-hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #0a2cff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.seo-hero-btn:hover {
  background: #e6e9ff;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.seo-hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.seo-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .seo-hero-container {
    grid-template-columns: 1fr;
  }

  .seo-hero-content {
    padding: 60px 30px;
    text-align: center;
    align-items: center;
  }

  .seo-hero-content p {
    max-width: 100%;
  }

  .seo-hero-image {
    height: 280px;
  }
}




