/* Decorative Quarter Circles */
.decoration {
  position: absolute;
  pointer-events: none; /* Prevents interfering with interaction */
}
.decoration.circle2 {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  /* Optional: prevent pointer events if it’s just decoration */
  pointer-events: none;
}

/* Hero: Images & Text Side by Side */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split */
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
  z-index: 10;
}
/* Container for images and detail */
.hero-images {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally center content */
  justify-content: center; /* Vertically center everything */
  gap: 1.5rem;
  text-align: center;
  min-height: 400px; /* Ensures space to center into */
  padding: 2rem 0;
}

/* Small Detail Box - Centered */
.smallDetail {
  display: flex;
  align-items: center; /* Vertically centers circle and text */
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

/* Colored Circle Indicator */
.circle {
  width: 25px;
  height: 25px;
  background-color: var(--cornflower, #4a90e2);
  border-radius: 50%;
  flex-shrink: 0;
}

.smallDetail p {
  font-size: 11px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.features-section {
  padding:  4rem 0 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  padding: 2rem;
  text-align: left;          /* Left-aligned */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}


/* Responsive */
@media (max-width: 768px) {
  .hero-images {
    gap: 1rem;
    padding: 1rem 0;
  }

  .smallDetail {
    gap: 8px;
    padding: 0.8rem;
    flex-direction: row;
  }

  .circle {
    width: 20px;
    height: 20px;
  }

  .smallDetail p {
    font-size: 10px;
  }
}

/* Heading */
.reporting-heading h1 {
  font-size: 2.8rem;
  color: var(--cornflower, #4a90e2);
  margin: 0 0 1.2rem 0;
  line-height: 1.2;
  text-align: left;
}
/* Container: Flex layout to align items horizontally */
.reporting-heading {
  display: flex;
  align-items: center;        /* Vertically centers text and image */
  gap: 2rem;                  /* Space between text and image */
  text-align: left;
}

/* Heading */
.reporting-heading h1 {
  font-size: 2.8rem;
  color: var(--cornflower, #4a90e2);
  margin: 0;
  flex: 1 1 auto;
  min-width: 300px;
}

/* Image styling */
.reporting-heading img {
  width: 120px;               /* Adjust as needed */
  height: auto;
  flex: 0 0 auto;
  border-radius: 8px;
  z-index: 10;
}

/* Hero Text */
.reporting-hero p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

/* Features Grid: 1x4 Full Width */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 1 row, 4 columns */
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature {
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover{
  transform: translateY(-5px);
}


.feature p {
  margin: 0;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  color: #394f89; 
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-images,
  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .reporting-heading h1 {
    text-align: center;
    font-size: 2.5rem;
  }

  .reporting-hero p {
    text-align: center;
  }

  /* Stack features on mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .feature p {
    text-align: left;
  }
}
/* === MOBILE: PERFECT LAYOUT LIKE TARGET === */
@media (max-width: 768px) {
    /* Center everything */
    .hero-content,
    .reporting-hero,
    .hero-images {
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    /* Move charts down */
    .hero-images {
        margin-top: 4.5rem;
    }

    /* Image: Right-aligned */
    .hero-images img {
        max-width: 50%;
        height: auto;
        margin: 0 auto;
    }

    /* Text: Left-aligned */
    .reporting-hero h2 {
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .reporting-hero p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.6;
    }
    

    /* Charts: Stack vertically */
    .hero-images {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-images img {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
}