.btn-three{
  margin-top:10px;
}
.timeline-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* wrapper */
.timeline-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
    margin: auto;
}

/* diamond */
.diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: linear-gradient(135deg,
        #3b82f6,
        #10b981,
        #f59e0b,
        #ef4444);
    border-radius: 30px;
    z-index: 1;
}

/* center circle */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.center-circle h4 {
    font-size: 26px;
      color: #1e3a8a;
    font-weight: 700;
    line-height: 1.3;
}

/* circles */
.circle-item {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 50%;
    text-align: center;
    padding: 25px 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* positions */
.top { top: 10%; left: 50%; }
.right { top: 50%; left: 90%; }
.bottom { top: 90%; left: 50%; }
.left { top: 50%; left: 10%; }

/* text fix */
.circle-item h3 {
    font-size: 26px;
    margin-bottom: 4px;
}

.circle-item h5 {
    font-size: 14px;
    margin-bottom: 6px;
}

.circle-item p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* colors */
.top h3, .top h5 { color: #3b82f6; }
.right h3, .right h5 { color: #10b981; }
.bottom h3, .bottom h5 { color: #f59e0b; }
.left h3, .left h5 { color: #ef4444; }

/* hover */
.circle-item:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* RESPONSIVE IMPROVED */
@media (max-width: 768px) {

    .timeline-section {
        padding: 60px 15px;
    }

    .timeline-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Hide center visuals */
    .diamond,
    .center-circle {
        display: none;
    }

    /* Convert circles into cards */
    .circle-item {
        position: relative;
        width: 100%;
        max-width: 320px;
        height: auto;
        padding: 20px;
        border-radius: 16px;
        transform: none !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* Reset positions */
    .top, .right, .bottom, .left {
        top: auto;
        left: auto;
    }

    /* Typography improvements */
    .circle-item h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .circle-item p {
        font-size: 14px;
    }

    /* Optional: add left border color for identity */
    .top {
        border-left: 4px solid #3b82f6;
    }

    .right {
        border-left: 4px solid #10b981;
    }

    .bottom {
        border-left: 4px solid #f59e0b;
    }

    .left {
        border-left: 4px solid #ef4444;
    }
}
/* Section */
.outcomes-section {
  padding: 20px 20px;
  background: #f9fafb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header .tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111827;
}

/* Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.metric-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Top Row */
.metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.growth {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
}

.icon {
  font-size: 14px;
  color: #9ca3af;
}

/* Text */
.metric-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.metric-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
/* Section */
.differentiator-section {
  padding: 20px 20px;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111827;
}

/* Grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Item */
.diff-item {
  text-align: center;
  padding: 10px 20px;
}

/* Icon */
.icon-box {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f3f4f6;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
  color: #111827;
}

/* Text */
.diff-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.diff-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* Section */
.differentiator-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #9ca3af;
}

.section-header h2 {
  font-size: 32px;
  color: #111827;
}

/* Grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Item */
.diff-item {
  text-align: center;
}

/* Icon */
.icon-box {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.icon-box i {
  font-size: 22px;
  color: #111827;
  line-height: 1;
}

/* Hover effect */
.diff-item:hover .icon-box {
  background: #111827;
}

.diff-item:hover .icon-box i {
  color: #ffffff;
}

/* Text */
.diff-item h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 8px;
}

.diff-item p {
  font-size: 14px;
  color: #6b7280;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-area-three {
    padding: 6px 0 !important;
}
@media (max-width: 767.98px) {
    .features-area-three {
        padding: 20px 0 20px !important;
    }
}
.what-we-do-section {
    padding: 70px 0;
    background: #f8fafc;
}

.what-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.what-card:hover {
    transform: translateY(-4px);
}

.what-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.what-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    border: none;
}

.btn-success {
    background: #10b981;
    border: none;
}

/* Mobile */
@media (max-width: 768px) {
    .what-we-do-section {
        padding: 50px 15px;
    }
}