/*smart tv appltn*/
.smarttv-hero {
  padding: 50px 20px;
}

/* CONTAINER */
.smarttv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.smarttv-content {
  flex: 1;
}

.smarttv-content h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.smarttv-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
}

/* BUTTONS */
.smarttv-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.smarttv-btn-primary {
  background: #ffd400;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.smarttv-btn-outline {
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid #ccc;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.smarttv-btn-outline:hover {
  background: #ffd400;
  border-color: #ffd400;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* RIGHT IMAGE */
.smarttv-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.smarttv-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .smarttv-container {
    flex-direction: column;
    text-align: center;
  }

  .smarttv-buttons {
    justify-content: center;
  }

  .smarttv-content h1 {
    font-size: 28px;
  }
}
/*streaming service*/
.streaming-services {
  padding: 40px 20px;
  text-align: center;
}

.streaming-services h3 {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
}

/* LOGO ROW */
.streaming-logos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* LOGO CARD */
.service-logo {
  width: 90px;
  height: 65px;
  background: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-logo img {
  max-width: 70%;
  object-fit: contain;
}

/* HOVER */
.service-logo:hover {
  transform: translateY(-4px);
  background: #000;
}

/* SEE ALL */
.service-logo.see-all {
  background: #1c1c1c;
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .service-logo {
    width: 80px;
    height: 55px;
  }
}
/*process flow*/
.process-chain {
  padding: 50px 20px;
  background: #121212;
  text-align: center;
}

.chain-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color:#dbbb11;
}

.chain-subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 70px;
}

/* CHAIN WRAPPER */
.chain-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STEP */
.chain-step {
  width:270px;
  padding: 20px;
}

.chain-image {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.chain-image img {
  width: 60%;
  height: auto;
}

.chain-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
     color: #fff;
}

.chain-step p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

/* CONNECTOR */
.chain-line {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #ccc,
    #ccc 6px,
    transparent 6px,
    transparent 12px
  );
}

/* MOBILE */
@media (max-width: 900px) {
  .chain-wrapper {
    flex-direction: column;
  }

  .chain-line {
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(
      to bottom,
      #ccc,
      #ccc 6px,
      transparent 6px,
      transparent 12px
    );
  }
}
/*features*/
.smarttv-features {
  padding: 50px 20px;
  background: linear-gradient(180deg, #f9fafc, #ffffff);
  text-align: center;
}

.smarttv-features-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.smarttv-features-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 70px;
}

/* GRID */
.smarttv-features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

/* SHINY CARD */
.smarttv-feature-card {
  position: relative;
  background: linear-gradient(
    145deg,
    #ffffff,
    #f1f3f8
  );
  padding: 40px 25px;
  border-radius: 22px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: all 0.35s ease;
}

/* SHINE EFFECT */
.smarttv-feature-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6),
    transparent 70%
  );
  transform: rotate(25deg);
  transition: 0.6s;
  opacity: 0;
}

.smarttv-feature-card:hover::before {
  opacity: 1;
  transform: rotate(25deg) translateX(50%);
}

/* HOVER FLOAT */
.smarttv-feature-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15);
}

.smarttv-feature-card img {
  width: 64px;
  margin-bottom: 22px;
}

.smarttv-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.smarttv-feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 600px) {
  .smarttv-features-title {
    font-size: 28px;
  }
}
/* OUTLINED SHINY CARD */
.outlined-card {
  background: linear-gradient(
    145deg,
    #ffffff,
    #e6f0ff
  ); /* subtle blue background */
  border: 2px solid #4a90e2; /* outline */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 rgba(255, 255, 255, 0.5);
  transition: all 0.35s ease;
  overflow: hidden;
  border-radius: 22px;
  padding: 40px 25px;
  position: relative;
}

/* Shiny effect for outlined card */
.outlined-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6),
    transparent 70%
  );
  transform: rotate(25deg);
  transition: 0.6s;
  opacity: 0;
}

.outlined-card:hover::before {
  opacity: 1;
  transform: rotate(25deg) translateX(50%);
}

/* Hover float */
.outlined-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 2px #4a90e2; /* outline glow on hover */
}
/* GRID - 3 CARDS PER ROW */
.smarttv-features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 35px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .smarttv-features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }
}

@media (max-width: 600px) {
  .smarttv-features-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }

  .smarttv-features-title {
    font-size: 28px;
  }
}
/*samrt tv tech*/
.smart-tv-techstack {
  padding: 50px 20px;
  background: #e9f1ff;
  font-family: "Poppins", sans-serif;
}

/* Heading */
.smart-tv-tech-heading {
  text-align: center;
  margin-bottom: 50px;
}

.smart-tv-tech-heading h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 10px;
}

.smart-tv-tech-heading p {
  font-size: 16px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tech Stack */
.smart-tv-techstack-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.smart-tv-tech-item {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.smart-tv-tech-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.smart-tv-tech-item span {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

/* Tablet */
@media (max-width: 992px) {
  .smart-tv-techstack-wrapper {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .smart-tv-tech-heading h2 {
    font-size: 28px;
  }

  .smart-tv-tech-item {
    width: 100px;
  }

  .smart-tv-tech-item img {
    width: 50px;
    height: 50px;
  }
}
/* OUTLINE FOR CARDS */
.smarttv-feature-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 28px;
  text-align: left;
  transition: all 0.35s ease;

  /* Outline */
  border: 2px solid #d0d7e2;  
  box-shadow: none;             
}

/* Hover effect */
.smarttv-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: #111; 
}
/*try bill hero*/
.trybills-hero {
  padding: 50px 30px;
  background:#fff;
  font-family: "Poppins", sans-serif;
}

.trybills-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.trybills-content {
  flex: 1;
}

.trybills-content h1 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.trybills-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

.trybills-buttons {
  display: flex;
  gap: 15px;
}

.trybills-btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.trybills-btn.primary {
  background:#194389;
  color: #fff;
}

.trybills-btn.secondary {
  border: 2px solid #194389;
  color: #000;
}

/* Right Image */
.trybills-image {
  flex: 1;
  text-align: right;
}

.trybills-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
/*mobile responsive*/
/* Tablet */
@media (max-width: 1024px) {
  .trybills-container {
    gap: 40px;
  }

  .trybills-content h1 {
    font-size: 34px;
  }

  .trybills-content p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trybills-hero {
    padding: 40px 20px;
  }

  .trybills-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .trybills-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .trybills-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .trybills-image {
    text-align: center;
  }

  .trybills-image img {
    max-width: 90%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trybills-content h1 {
    font-size: 28px;
  }

  .trybills-content p {
    font-size: 15px;
  }

  .trybills-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/*trybill overview*/
.trybills-overview {
  padding:50px 20px;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}

.trybills-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0a2a66;
  margin-bottom: 10px;
}

.trybills-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 17px;
}

/* Layout */
.trybills-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* Features */
.trybills-features {
  flex: 1;
}

.trybills-feature {
  margin-bottom: 35px;
  padding-left: 15px;
  border-left: 4px solid #1f4fd8;
}

.trybills-feature h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.trybills-feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Image */
.trybills-image {
  flex: 1;
  text-align: center;
}

.trybills-image img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .trybills-layout {
    flex-direction: column;
  }

  .trybills-features {
    text-align: center;
  }

  .trybills-feature {
    border-left: none;
    border-top: 4px solid #1f4fd8;
    padding-left: 0;
    padding-top: 12px;
  }
}
/*mobile responsive*/
/* Tablet */
@media (max-width: 1024px) {
  .trybills-title {
    font-size: 30px;
  }

  .trybills-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .trybills-layout {
    gap: 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trybills-overview {
    padding: 40px 18px;
  }

  .trybills-title {
    font-size: 26px;
  }

  .trybills-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .trybills-layout {
    flex-direction: column;
    gap: 30px;
  }

  .trybills-features {
    text-align: left;
    width: 100%;
  }

  .trybills-feature {
    margin-bottom: 25px;
    padding-top: 10px;
  }

  .trybills-feature h4 {
    font-size: 16px;
  }

  .trybills-feature p {
    font-size: 14px;
  }

  .trybills-image img {
    max-width: 92%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trybills-title {
    font-size: 22px;
  }

  .trybills-subtitle {
    font-size: 14px;
  }

  .trybills-feature h4 {
    font-size: 15px;
  }

  .trybills-feature p {
    font-size: 13px;
    text-align: left;
  }
}

/*try bill management*/
.trybills-zigzag {
  padding:1px 26px;
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.trybills-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 54px;
}

/* Reverse row for zig-zag */
.trybills-row.reverse {
  flex-direction: row-reverse;
}

/* Text */
.trybills-text {
  flex: 1;
}

.trybills-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2a66;
  margin-bottom: 12px;
}

.trybills-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 22px;
  max-width: 520px;
}

.trybills-text ul {
  list-style: none;
  padding: 0;
}

.trybills-text li {
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: #444;
}

.trybills-text li::before {
  content: "✓";
  color: #1bb978;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Image */
.trybills-image {
  flex: 1;
  text-align: center;
}

.trybills-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0);
}

/* Responsive */
@media (max-width: 992px) {
  .trybills-row,
  .trybills-row.reverse {
    flex-direction: column;
  }

  .trybills-text h2 {
    text-align: center;
  }

  .trybills-desc {
    text-align: center;
    margin: auto auto 22px;
  }
}
/*mobile responsive*/
/* Tablet */
@media (max-width: 1024px) {
  .trybills-row {
    gap: 40px;
    margin-bottom: 70px;
  }

  .trybills-text h2 {
    font-size: 28px;
  }

  .trybills-desc {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trybills-zigzag {
    padding: 20px 16px;
  }

  .trybills-row,
  .trybills-row.reverse {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .trybills-text {
    text-align: center;
  }

  .trybills-text h2 {
    font-size: 24px;
  }

  .trybills-desc {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .trybills-text ul {
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .trybills-text li {
    font-size: 14px;
  }

  .trybills-image img {
    max-width: 92%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trybills-text h2 {
    font-size: 21px;
  }

  .trybills-desc {
    font-size: 13px;
  }

  .trybills-text li {
    font-size: 13px;
  }
}

/*key benefits*/
.trybills-benefits {
  padding: 80px 8%;
  background: radial-gradient(circle at top, #12091f, #05010a);
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 35px;
}

.section-tag {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  color: #c9a3ff;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.benefit-card {
  position: relative;
  padding: 35px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2a1744,  #002e7c);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Arrow icon */
.benefit-card .arrow {
  position: absolute;
  top: 10px;
  right: 20px;
  background: linear-gradient(135deg, #062a73, #ff7bd5);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Card text */
.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #e6dfff;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}
/*mobile responsive*/
/* Tablet */
@media (max-width: 1024px) {
  .trybills-benefits {
    padding: 70px 6%;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 45px;
  }

  .benefit-card {
    padding: 30px 26px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trybills-benefits {
    padding: 60px 18px;
  }

  .section-tag {
    font-size: 13px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .benefits-grid {
    gap: 22px;
  }

  .benefit-card {
    padding: 26px 22px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  /* Reduce hover lift on touch devices */
  .benefit-card:hover {
    transform: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-title {
    font-size: 23px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .benefit-card p {
    font-size: 13.5px;
    text-align: left;
  }

  .benefit-card .arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
.milestone-section {
    padding: 30px 10%;
    margin-bottom: 40px;
}
.sap-impl-section {
    margin-top: 50px;
}
@media (max-width: 576px) {
    .clinic-desc {
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .clinic-content h1 {
        font-size: 22px;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .clinic-subtitle {
        font-size: 16px;
        text-align: left;
    }
}
.shabdha-product-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: left;
}
.shabdha-center-text h2 {
    margin-top: 40px;
}
.clinic-container {
    gap:100px;
}
@media (max-width: 768px) {
    .stat-number {
        font-size: 37px;
    }
}
.dashboard-image img {
    border-radius: 10px;
}
.user-reg-image img {
    border-radius: 10px;
}
.taxi-hero-visual img {
    border-radius: 5px;
}
.taxi-app img {
    border-radius: 10px;
}
@media (max-width: 900px) {
    .smarttv-content h1 {
        font-size: 27px;
    }
}
@media (max-width: 768px) {
    section p {
        text-align: left;
    }
}
@media (max-width: 480px) {
    .payroll-content h1 {
        font-size: 22px;
        text-align:center;
    }
}
@media (max-width: 480px) {
    .payroll-content p {
        font-size: 14px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .btn {
        width: 100%;
        text-align: justify;
        padding: 14px;
        margin-left: 43px;
    }
}
@media (max-width: 768px) {
    section p {
        text-align: center;
    }
.milestone-section {
    margin-bottom: 30px;
}
}
@media (max-width: 768px) {
    section p {
        text-align: center;
    }
}
.milestone-title {
    font-size: 34px;
}
.single-blog-title {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    margin-bottom: -72px !important;
}
@media (max-width: 768px) {
    .blog-content-container p {
        font-size: 16px;
        text-align: left;
    }
}
.rent-content h1 {
    font-size: 33px;
}
@media (max-width: 576px) {
    .clinic-content h1 {
        font-size: 21px;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .clinic-desc {
        font-size: 15px;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .clinic-subtitle {
        font-size: 16px;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .user-reg-content h2 {
        font-size: 24px;
    }
}
.add-trip-content h2 {
    font-size: 25px;
}
@media (max-width: 768px) {
    section p {
        text-align: left;
    }
}
/*salesqueen*/
.dashboard-section{
    padding:80px 8%;
    background:#fff !important;
}

.dashboard-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT IMAGE DESIGN */
.dashboard-image{
    flex:1;
    position:relative;
}

.dashboard-image img{
    width:100%;
    
    position:relative;
    z-index:2;
    
}

/* background shape */
.image-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#373738,#3a86ff);
    border-radius:50%;
    top:20px;
    left:-20px;
    z-index:1;
    opacity:.25;
}

/* RIGHT CONTENT */
.dashboard-content{
    flex:1;
}

.tag-line{
    color:#3a86ff;
    font-weight:600;
    letter-spacing:1px;
    font-size:14px;
}

.dashboard-content h2{
    font-size:31px;
    margin:15px 0;
    color:#0b162a;
}

.dashboard-content p{
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

/* BUTTON */
.dashboard-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 28px;
    background:linear-gradient(135deg,#373738,#3a86ff);
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.dashboard-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(58,134,255,.4);
}

/* RESPONSIVE */
@media(max-width:768px){
    .dashboard-container{
        flex-direction:column;
        text-align:center;
    }
}
/*sales features*/
.dashboard-section{
    padding:80px 8%;
    background:#f6f9ff;
}

.section-title{
    text-align:center;
    font-size:36px;
    margin-bottom:50px;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* ALL MODULE CARDS */
.dashboard-grid > div{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s;
}

.dashboard-grid > div:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(58,134,255,0.25);
}

.dashboard-grid img{
    width:65px;
    margin-bottom:15px;
}

.dashboard-grid h4{
    margin-bottom:10px;
}

.dashboard-grid p{
    color:#666;
    font-size:14px;
    line-height:1.6;
}
/* Tablet */
@media (max-width: 992px) {
    .dashboard-content h2 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .dashboard-content h2 {
        font-size: 21px;
        margin: 10px 0;
        text-align: center;
    }
}
/*features*/
/* Section */
.sales-section{
    padding:50px 20px;
    background:#fff;
}

/* Heading */
.sales-title{
    text-align:center;
    margin-bottom:50px;
}

.sales-title h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #0b162a;
    text-shadow: 0 4px 15px rgba(58,134,255,0.25);
}

.sales-title p{
    color:#64748b;
    margin-top:10px;
}

/* Grid */
.sales-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */
.sales-card{
    background:#eef1f6;
    padding:35px;
    border-radius:20px;
    transition:.3s;
}

.sales-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Icon */
.sales-icon{
    font-size:40px;
    margin-bottom:20px;
    color:#000;
}

/* Title */
.sales-card h3{
    font-size:22px;
    color:#555;
    margin-bottom:20px;
}

/* List */
.sales-card ul{
    list-style:none;
    padding:0;
}

.sales-card ul li{
    margin-bottom:12px;
    padding-left:25px;
    position:relative;
    color:#555;
}

/* Tick */
.sales-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#16a085;
}

/* Link */
.sales-card a{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

/* Responsive */
@media(max-width:992px){
    .sales-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .sales-container{
        grid-template-columns:1fr;
    }
}
img.sales-img {
    height: 70px;
    margin-bottom: 20px;
}
/*chosse us*/
.why-sales{
    padding:80px 20px;
    background:#f8fafc;
}

.why-container{
    max-width:1200px;
    margin:auto;
}

.why-title{
    text-align:center;
    margin-bottom:50px;
}

.why-title h2{
    font-size:40px;
    font-weight:800;
    color:#0b162a;
}

.why-title p{
    color:#64748b;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card img{
    width:60px;
    margin-bottom:15px;
}

.why-card h3{
    font-size:18px;
    margin-bottom:10px;
}

.why-card p{
    font-size:14px;
    color:#64748b;
}

@media(max-width:992px){
    .why-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
    .why-grid{grid-template-columns:1fr;}
}
.why-sales{
padding:50px 20px;
background:#fff;
}

.why-heading{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

.why-timeline{
max-width:900px;
margin:auto;
border-left:3px solid #3a86ff;
padding-left:30px;
}

.why-item{
display:flex;
gap:20px;
margin-bottom:35px;
}

.why-item span{
background:#3a86ff;
color:#fff;
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}
/*sales prdt*/
.ops-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 8%;
    background:#0b1120;
    color:#fff;
    flex-wrap:wrap;
}

/* ===== LEFT SIDE ===== */
.left-col{
    flex:1;
    min-width:320px;
}

/* Tag */
.section-tag{
    background:#1e293b;
    color:#38bdf8;
    font-size:12px;
    padding:6px 14px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:20px;
}

/* Title */
.display-title{
    font-size:36px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
    color: #38bdf8;
}

.display-title em{
    font-style:normal;
    color:#38bdf8;
}

/* Paragraph */
.lead-text{
    color:#94a3b8;
    line-height:1.7;
    margin-bottom:30px;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;   /* Important for proper alignment */
    gap: 18px;
    background: #111827;
    padding: 20px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.feature-item:hover {
    background: #1f2937;
    transform: translateX(6px);
}

/* Icon */
.feature-icon {
    min-width: 50px;   /* Prevent shrinking */
    height: 50px;
    background: #38bdf8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

/* Text wrapper */
.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-content h4 {
    margin: 0 0 6px 0;   /* Remove unwanted spacing */
    font-size: 18px;
    font-weight: 600;
    color:#38bcf7 !important;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: #fff !important;
    line-height: 1.5;
}

/* ===== RIGHT IMAGE SIDE ===== */
.image-wrap{
    flex:1;
    min-width:320px;
}

/* Card */
.image-card{
    background:#111827;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

/* Top bar */
.image-card-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#1f2937;
}

.dash-bar-title{
    font-size:14px;
    font-weight:600;
}

/* Live badge */
.dash-live{
    font-size:11px;
    color:#22c55e;
    font-weight:600;
}

/* Image area */
.image-card-body{
    padding:40px;
    text-align:center;
}

.image-card img{
    max-width:100%;
    height:auto;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .ops-section{
        flex-direction:column;
        text-align:center;
    }

    .feature-item{
        text-align:left;
    }
}
/* salesqueen matters*/


.section {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 40px 20px;
  background: #fff;
  color: #e8edf5;
  font-family: 'DM Sans', sans-serif;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00c6ff;
  background: rgba(0,198,255,0.08);
  border: 1px solid rgba(0,198,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c6ff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% {opacity:1; transform:scale(1);}
  50% {opacity:.5; transform:scale(.7);}
}

.section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px,5vw,58px);
  font-weight: 800;
  line-height: 1.1;
}

.section h2 span {
  color: #ff6b35;
}

.subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: #7a8ba0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

@media (max-width:900px){
  .cards-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:560px){
  .cards-grid{
    grid-template-columns:1fr;
  }
}

/* CARD */
.card {
  background:#131929;
  border:1px solid rgba(255,255,255,0.07);
  border-radius:20px;
  padding:32px 28px;
  position:relative;
  overflow:hidden;
  transition:.3s;
}

.card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,#00c6ff,transparent);
  opacity:0;
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,0.14);
  box-shadow:0 24px 60px rgba(0,0,0,0.4);
}

.card:hover::before{
  opacity:1;
}

/* NUMBER */
.card-num{
  position:absolute;
  top:16px;
  right:20px;
  font-family:'Syne',sans-serif;
  font-size:56px;
  font-weight:800;
  color:rgba(255,255,255,0.035);
}

/* ICON */
.icon-wrap{
  width:52px;
  height:52px;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.07);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:20px;
  transition:.3s;
}

.card:hover .icon-wrap{
  background:rgba(255,255,255,0.09);
  transform:scale(1.05);
}

/* TEXT */
.card-title{
  font-family:'Syne',sans-serif;
  font-size:18px;
  margin-bottom:10px;
  color: #fff;
}
/* Tablet */
@media (max-width: 992px) {
    .section h2 {
        line-height: 1.15;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section h2 {
        font-size: 25px;
        text-align: center;
        line-height: 1.3;
        padding: 0 10px;
    }
}
/*sales wrkflow*/
.card-desc{
  font-size:14px;
  color:#7a8ba0;
  line-height:1.6;
}

/* STAT BAR */
.stat-bar{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.07);
  display:flex;
  align-items:center;
  gap:8px;
}

.stat-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#00c6ff;
}

.stat-text{
  font-size:12px;
  color:#00c6ff;
}

/* CTA */
.section-footer{
  text-align:center;
  margin-top:56px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:#fff;
  font-size:15px;
  padding:14px 32px;
  border-radius:100px;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 0 40px rgba(0,198,255,0.25);
}

.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 60px rgba(0,198,255,0.4);
}
.icon-wrap img{
  width:28px;
  height:28px;
  object-fit:contain;
}
/*sales wrkflow*/
.ro-workflow-section {
    padding: 90px 40px;
    background: #f8fafc;
    text-align: center;
}

/* Title */
.ro-workflow-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
}

.ro-workflow-title p {
    color: #64748b;
    margin-top: 10px;
    margin-bottom: 60px;
}

/* Container */
.ro-workflow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
}

/* Connecting Line */
.ro-workflow-container::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #2563eb;
    z-index: 0;
}

/* Step Card */
.ro-step {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 14px;
    width: 150px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.ro-step:hover {
    transform: translateY(-8px);
}

/* Image */
.ro-step img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 12px;
}

/* Text */
.ro-step h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}
/*mobile responsive*/
/* ===============================
   TABLET RESPONSIVE
================================ */
@media (max-width: 992px) {

    .ro-workflow-section {
        padding: 70px 25px;
    }

    .ro-workflow-title h2 {
        font-size: 30px;
    }

    .ro-workflow-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ro-step {
        width: 45%;
    }

    .ro-workflow-container::before {
        display: none;
    }
}


/* MOBILE RESPONSIVE*/
@media (max-width: 576px) {

    .ro-workflow-section {
        padding: 60px 15px;
        text-align: center;
    }

    .ro-workflow-title h2 {
        font-size: 24px;
    }

    .ro-workflow-title p {
        margin-bottom: 40px;
        font-size: 14px;
    }

    /* Vertical Layout */
    .ro-workflow-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    /* Vertical Line */
    .ro-workflow-container::before {
        content: "";
        position: absolute;
        width: 3px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: #2563eb;
    }

    .ro-step {
        width: 90%;
        max-width: 320px;
        padding: 20px;
    }

    .ro-step img {
        width: 45px;
        height: 45px;
    }

    .ro-step h4 {
        font-size: 14px;
    }
}
/*success stry*/
/* SECTION */
.success-section {
  background: #002d7b;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
      margin-bottom: 20px;
}

/* TITLE */
.success-title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* CAROUSEL */
.carousel {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 25px;
  animation: scroll 25s linear infinite;
}

/* VIDEO CARD */
.video-card {
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.video-card:hover {
  transform: scale(1.05);
}

/* VIDEO */
.video-card iframe {
  width: 100%;
  /* Remove the fixed height: 180px; */
  aspect-ratio: 16 / 9; /* This ensures the video is never cut off */
  display: block; /* Removes any small gaps at the bottom of the iframe */
  border: none;
}

/* TEXT */
.video-card h3 {
  color: #002d7b;
  font-size: 18px;
  margin: 10px 0 5px;
}

.video-card p {
  font-size: 14px;
  padding: 0 10px 15px;
  color: #555;
}

/* AUTO SCROLL */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .video-card {
    min-width: 250px;
  }

  .success-title {
    font-size: 28px;
  }
}

/*try-pos*/
.wsb-section {
    padding: 80px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

/* MAIN CONTAINER */
.wsb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1300px;
    gap: 30px;
}

/* SIDE IMAGES */
.wsb-side {
    width: 25%;
    display: flex;
    justify-content: center;
}

.wsb-side img {
    width: 400px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.wsb-side img:hover {
    transform: translateY(-8px) scale(1.05);
}

/* CENTER CONTENT */
.wsb-content {
    width: 50%;
    padding: 40px;
    border-radius: 20px;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* TEXT */
.wsb-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wsb-subtitle {
    opacity: 0.7;
    margin-bottom: 25px;
}

/* FEATURES */
.wsb-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.wsb-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.wsb-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a82ff;
    font-weight: bold;
}

/* BUTTON */
.wsb-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.wsb-btn:hover {
    transform: translateY(-3px);
    background: rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wsb-container {
        flex-direction: column;
        text-align: center;
    }

    .wsb-side {
        width: 100%;
    }

    .wsb-content {
        width: 100%;
    }
}
/*dm*/
/* Section Background with Mesh Gradient Effect */
.marketing-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(at 0% 0%, #ffdfdf 0%, transparent 40%),
                radial-gradient(at 100% 0%, #fff4d6 0%, transparent 40%),
                radial-gradient(at 50% 50%, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 20px;
    overflow: hidden;
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 10px;
}

/* Typography Styling */
.main-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    color: #2b2d42;
    text-align: left;
}

.marketing-quote {
    font-size: 1.1rem;
    color: #4a4e69;
    border-left: 3px solid #e61e00;
    padding-left: 15px;
    margin-bottom: 1.5rem;
    font-style: italic;
        text-align: left;
}

.marketing-description {
    font-size: 1rem;
    color: #6d6d6d;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Buttons */
.marketing-actions {
    display: flex;
    gap: 15px;
}

.action-btn-primary, .action-btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.action-btn-primary {
    background-color: #e61e00;
    color: #fff;
}

.action-btn-secondary {
    border: 2px solid #e61e00;
    color: #e61e00;
}

.action-btn-primary:hover, .action-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 30, 0, 0.2);
}

/* Visual Components */
.marketing-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-base-sphere {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.08);
}

.center-graphic {

    z-index: 2;
    filter: drop-shadow(15px 15px 20px rgba(0,0,0,0.15));
}

/* Floating Icon Bubbles */
.social-circle {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
}

.social-circle img {
 
}

.pos-top-left { top: -20px; left: -20px; }
.pos-top-right { top: -20px; right: -20px; }
.pos-bottom-left { bottom: -20px; left: -20px; }
.pos-bottom-right { bottom: -20px; right: -20px; }

/* Decorative Cube */
.decorative-cube {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    border-radius: 10px;
    transform: rotate(45deg);
    opacity: 0.6;
    animation: bounce 5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(55deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .marketing-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .marketing-actions { justify-content: center; }
    .main-heading { font-size: 30px; }
    .marketing-description { margin-left: auto; margin-right: auto; }
    .marketing-visual-wrapper { margin-top: 60px; }
}
/* MOBILE RESPONSIVE BUTTON */
@media (max-width: 768px) {
    
    .action-btn-primary {
        display: block;
        margin: 0 auto;   
        text-align: center;
        padding: 15px 17px;
        font-size: 14px;
    }

}
/*seo wrk*/
.seo-sec {
    padding: 40px 20px;
    font-family: "Poppins", sans-serif;
}

.seo-wrap {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.seo-head {
    text-align: center;
    margin-bottom: 50px;
}

.seo-head h2 {
    font-size: 34px;
}

.seo-head span {
    font-weight: 700;
}

.seo-head p {
    max-width: 800px;
    margin: 15px auto;
    color: #555;
}

/* GRID */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.seo-card {
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* LEFT RED LINE */
.seo-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    width: 4px;
    height: 50px;
    background: #e53935;
}

/* TOP (ICON + TITLE ALIGNMENT FIX) */
.seo-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* IMAGE */
.seo-top img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* TITLE */
.seo-top h3 {
    font-size: 18px;
    margin: 0;
}

/* TEXT */
.seo-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER */
.seo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
}
.seo-card {
    gap: 10px !important;
}
/*dm choose*/
.dm-section {
    padding: 50px 20px;
    background:#fff;
    font-family: "Poppins", sans-serif;
}

.dm-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.dm-image {
    width: 50%;
}

.dm-image img {
    width: 100%;
    border-radius: 20px;
 
    transition: 0.4s;
}

.dm-image img:hover {
    transform: scale(1.03);
}

/* CONTENT */
.dm-content {
    width: 50%;
}

/* TITLE */
.dm-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.dm-title span {
    color: #4a82ff;
}

/* LINE */
.dm-line {
    width: 80px;
    height: 4px;
   
    margin: 15px 0 30px;
    border-radius: 5px;
}

/* ITEMS */
.dm-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

/* ICON */
.dm-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ICON COLORS */
.green { background: linear-gradient(135deg, #00c9a7, #00b894); }
.purple { background: linear-gradient(135deg, #a66cff, #7b5cff); }
.orange { background: linear-gradient(135deg, #ff9a44, #ff6a00); }
.teal { background: linear-gradient(135deg, #00c6ff, #0072ff); }

/* TEXT */
.dm-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.dm-item p {
    margin: 5px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER EFFECT */
.dm-item:hover .dm-icon {
    transform: scale(1.1);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dm-container {
        flex-direction: column;
        text-align: center;
    }

    .dm-image,
    .dm-content {
        width: 100%;
    }

    .dm-item {
        justify-content: center;
    }
}
/*mobile responsive*/
/* ================= TABLET ================= */
@media (max-width: 992px) {

    .dm-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .dm-image,
    .dm-content {
        width: 100%;
    }

    .dm-title {
        font-size: 28px;
    }

    .dm-line {
        margin: 15px auto 25px;
    }

    .dm-item {
        justify-content: center;
        text-align: left; /* keeps content readable */
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .dm-section {
        padding: 40px 15px;
    }

    .dm-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .dm-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .dm-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .dm-item h3 {
        font-size: 16px;
    }

    .dm-item p {
        font-size: 13px;
    }

    .dm-image img {
        border-radius: 12px;
    }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .dm-title {
        font-size: 20px;
    }

    .dm-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dm-icon {
        margin-bottom: 8px;
    }

    .dm-item p {
        font-size: 12.5px;
    }
}
/*dm process*/
.steps-section {
    padding: 40px 20px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.steps-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.steps-title {
    font-size: 34px;
    font-weight: 700;
    color: #2b2b3c;
}

/* WRAPPER */
.steps-wrapper {
    position: relative;
    height: 400px;
}

/* SVG LINE */
.steps-line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* COMMON STEP */
.step {
    position: absolute;
    width: 200px;
    text-align: center;
}

/* POSITIONS (ZIG-ZAG) */
.step1 { top: 120px; left: 0%; }
.step2 { top: 100px; left: 20%; }
.step3 { top: 120px; left: 40%; }
.step4 { top: 112px; left: 63%; }
.step5 { top: 120px; left: 84%; }
.step6 { top: 240px; left: 90%; }

/* CIRCLE */
.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

/* COLORS */
.green { background: linear-gradient(135deg, #9be15d, #00e3ae); }
.red { background: linear-gradient(135deg, #ff758c, #ff7eb3); }
.blue { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.pink { background: linear-gradient(135deg, #ff6a88, #ff99ac); }
.purple { background: linear-gradient(135deg, #7f7fd5, #86a8e7); }
.violet { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

/* TEXT */
.step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .steps-wrapper {
        height: auto;
    }

    .step {
        position: static;
        margin-bottom: 40px;
    }

    .steps-line {
        display: none;
    }
}
/*mobile responsive*/
/* ================= TABLET & MOBILE ================= */
@media (max-width: 992px) {

    .steps-wrapper {
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-left: 50px;
    }

    /* REMOVE ZIG-ZAG */
    .step {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100%;
        text-align: left;
    }

    /* HIDE SVG LINE */
    .steps-line {
        display: none;
    }

    /* VERTICAL LINE */
    .steps-wrapper::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 0;
        width: 3px;
        height: 100%;
        background: #ddd;
    }

    /* CIRCLE FIX */
    .circle {
        position: absolute;
        left: -5px;
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0;
    }

    /* TEXT ALIGN */
    .step h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .step p {
        font-size: 14px;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .steps-section {
        padding: 40px 15px;
    }

    .steps-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .steps-wrapper {
        padding-left: 45px;
    }

    .steps-wrapper::before {
        left: 20px;
    }

    .circle {
        width: 45px;
        height: 45px;
        font-size: 16px;
        left: -10px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 13px;
    }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .steps-title {
        font-size: 20px;
    }

    .steps-wrapper {
        padding-left: 40px;
    }

    .circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-left: -30px;
    }

    .step {
        margin-bottom: 25px;
    }

    .step p {
        font-size: 12.5px;
    }
}
/*seo stats*/
.seo-stats {
  position: relative;
  background: url('https://i.postimg.cc/sxmR5p1G/statss.png') no-repeat center center/cover;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

/* Red Overlay */
.seo-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgb(228 191 187 / 85%);
  z-index: 1;
}

.seo-stats-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.seo-stat-item {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.seo-stat-item h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.seo-stat-item p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .seo-stat-item h2 {
    font-size: 2.5rem;
  }
}