/*--------------------------------------------------------------
# Work Steps One
--------------------------------------------------------------*/
.process-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: var(--tanspot-primary);
    counter-reset: count;
    z-index: 1;
}

.process-one__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.process-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.process-one__list {
    position: relative;
    display: inline;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 15px;
}

.process-one__list li {
    position: relative;
    display: block;
    text-align: center;
    flex: 0 0 25%;
    padding: 0 15px;
    margin-bottom: 21px;
}

.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    background-color: rgba(var(--tanspot-base-rgb), .60);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 500ms ease;
    z-index: 1;
}

.process-one__list li:hover .process-one__icon {
    background-color: rgba(var(--tanspot-black-rgb), .60);
}
@media (max-width: 599px) {
  .timeline-item.left {
    width: 100%;
} .timeline-item.right {
    width: 100%;
}
.timeline-item.right {
    left: 0% !important;
    text-align: left !important;
}
}

/* Responsive: medium screens (tablets) */
@media (min-width:600px) and (max-width:899px) {
 .timeline-item.left {
    width: 100%;
} .timeline-item.right {
    width: 100%;
}
.timeline-item.right {
    left: 0% !important;
    text-align: left !important;
}
}


.process-one__icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: -1;
}

.process-one__list li:hover .process-one__icon:before {
    background-color: var(--tanspot-black);
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--tanspot-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: 2;
}

.process-one__list li:hover .process-one__icon span {
    transform: scale(0.9);
    color: var(--tanspot-white);
}

.process-one__count {
    position: absolute;
    top: -15px;
    right: -5px;
    height: 40px;
    width: 40px;
    z-index: 2;
}

.process-one__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: var(--tanspot-white);
    background-color: var(--tanspot-black);
    border: 3px solid rgba(var(--tanspot-white-rgb), .50);
    border-radius: 50%;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.process-one__inner li:hover .process-one__count:before {
    color: var(--tanspot-base);
    background-color: var(--tanspot-white);
    border: 3px solid rgba(var(--tanspot-black-rgb), .50);
}

.process-one__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 15px;
}

.process-one__title a {
    color: var(--tanspot-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.process-one__title a:hover {
    color: var(--tanspot-base);
}

.process-one__text {
    font-size: 15px;
    font-weight: 500;
}

.process-one__shpae-1 {
    position: absolute;
   top: 67%;
    left: 45%;
    width: 137px;
    height: 4px;
    background-color: var(--tanspot-base);
    transition: all 500ms ease;
    transform: rotate(90deg);  /* पहले 90deg था → अब 0deg */
}

.process-one__shpae-1:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--tanspot-base);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transition: all 500ms ease;
}

.process-one__inner li:hover .process-one__shpae-1 {
    background-color: var(--tanspot-black);
}



.process-one__inner li:hover .process-one__shpae-1:before {
    background-color: var(--tanspot-black);
}
.timeline {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0;
}

.timeline-line {
  position: absolute;
  top: 255px;
  bottom: 0;
  left: 50%;
  width: 8px;
  background: #f7c6cf; /* initial pink */
  transform: translateX(-50%);
  z-index: 0;
  transition: background 0.5s ease; /* smooth effect */
}

/* Class for active/scroll effect */
.timeline-line.scrolled {
  background: #ff0000; /* red after scroll */
}
.text1
{
    text-align: center !important;
}

.timeline-item {
  width: 55%;
  padding: 71px 40px;
  position: relative;
  z-index: 1;
}

.timeline-item .content {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-item.left {
  left: 0;
  text-align: center;
}

.timeline-item.right {
  left: 45%;
  text-align: left;
}

.timeline-item img {
  width: 120px;
  flex-shrink: 0;
}

.timeline-item .text {
  flex: 1;
}

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 14px;
  margin-bottom: 15px;
}

.timeline-item .btn {
  display: inline-block;
  padding: 8px 18px;
  background: red;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

:root{
  --accent: #e91e63;
  --dark: #1a1a1a;
  --muted: #555;
}

.parallax-section {
  position: relative;
  overflow: hidden;
  color: #333;
  padding: 100px 0;
}

/* Background Parallax */
.daichi-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

.daichi-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

.dm-header {
  text-align: center;
  color: var(--dark);
  margin-bottom: 50px;
}

.dm-tag {
  color: var(--accent);
  font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
}

.dm-title {
  font-size: 36px;
  margin: 15px 0 5px;
}

.dm-sub {
  color: var(--muted);
  font-size: 15px;
}

.dm-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
}

.dm-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  position: relative;
}

.dm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.dm-card-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 10px;
}

.dm-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
}

.dm-card p {
  color: var(--muted);
  line-height: 1.6;
}

.dm-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.val {
  flex: 1 1 45%;
  background: rgba(233,30,99,0.05);
  border-radius: 8px;
  padding: 10px;
}

.val strong {
  display: block;
  color: var(--dark);
}

.val span {
  font-size: 13px;
  color: var(--muted);
}

/* Grid placement */
.dm-card:nth-child(1) { grid-column: 1 / span 6; }
.dm-card:nth-child(2) { grid-column: 7 / span 6; }
.dm-card.wide { grid-column: 1 / span 12; }

@media(max-width: 768px) {
  .dm-card, .dm-card.wide {
    grid-column: 1 / -1;
  }
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/