
/* ===== INSIGHTS PAGE SPECIFIC STYLES ===== */

/* Import base manpower styles */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');




*{
  margin: 0;
  padding: 0;
  box-sizing: border-box
}


@import url('manpower.css');

/* ===== HEADER RESPONSIVE OVERRIDE ===== */
@media (max-width: 991px) {
  .menu {
    background: rgba(255, 255, 255, 0.5);
  }
  
  header ul li ul {
    background: rgba(255, 255, 255, 0.5);
  }
}

/* ===== HERO SECTION - INSIGHTS ===== */
.hero-tl {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.8)),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-tl .gradien {
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.25), transparent 60%);
}

/* ===== INSIGHTS SPECIFIC COLORS ===== */
.hero-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

/* ===== STATS OVERVIEW SECTION ===== */
.stats-overview-section {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  position: relative;
}

.stats-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 1;
}

.stats-overview-section .container {
  position: relative;
  z-index: 2;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #8b5cf6;
  font-size: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.stat-change {
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-change.positive {
  color: var(--success);
}

.stat-change.negative {
  color: var(--red);
}

/* ===== REPORTS SECTION ===== */
.reports-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  position: relative;
}

.reports-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 1;
}

.reports-section .container {
  position: relative;
  z-index: 2;
}

.report-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
}

.report-image {
  height: 200px;
  overflow: hidden;
}

.report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.report-card:hover .report-image img {
  transform: scale(1.05);
}

.report-content {
  padding: 25px;
}

.report-category {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.report-content h5 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 15px;
}

.report-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.report-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.report-date {
  font-size: 0.8rem;
  color: #6c757d;
}

/* ===== COMBINED INSIGHTS SECTION ===== */
.combined-insights-section {
  background: linear-gradient(135deg, #4e1f54 0%, #540c37 100%);
  position: relative;
}

.combined-insights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.combined-insights-section .container {
  position: relative;
  z-index: 2;
}

.combined-insights-section .subtitle,
.combined-insights-section h2 {
  color: white !important;
}

.trend-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
}

.trend-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.trend-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
}

.trend-header h5 {
  margin: 0;
  color: var(--black);
  font-weight: 700;
}

.trend-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trend-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 10px;
}

.trend-name {
  font-weight: 600;
  color: var(--black);
}

.trend-growth {
  font-weight: 700;
  color: var(--success);
  background: rgba(40, 167, 69, 0.1);
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.skill-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.skill-tag.high {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.skill-tag.medium {
  background: rgba(0, 87, 255, 0.1);
  color: var(--blue);
  border: 1px solid rgba(0, 87, 255, 0.2);
}



.insight-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
}

.insight-image {
  height: 200px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-content {
  padding: 25px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-category {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-date {
  font-size: 0.8rem;
  color: #6c757d;
}

.blog-card h5 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.blog-link {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #7c3aed;
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-signup-section {
  background: var(--gray);
}

.newsletter-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 4px solid #8b5cf6;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border-radius: 50px 0 0 50px;
  border: 2px solid #e9ecef;
  padding: 15px 20px;
  border-right: none;
}

.newsletter-form .form-control:focus {
  border-color: #8b5cf6;
  box-shadow: none;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 15px 25px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border: none;
}

.newsletter-form .btn:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
}

/* ===== BUTTONS OVERRIDE ===== */
.btn-blue {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-blue:hover {
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
  color: var(--white);
}

.btn-outline-blue {
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.btn-outline-blue:hover {
  background-color: #8b5cf6;
  border-color: #8b5cf6;
  color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-tl {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .newsletter-card {
    padding: 30px;
  }

  .trend-card,
  .report-card,
  .blog-card {
    padding: 20px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .newsletter-form .input-group {
    flex-direction: column;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    border-radius: 25px;
    border: 2px solid #e9ecef;
  }

  .newsletter-form .btn {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .trend-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .skill-tags {
    justify-content: center;
  }
}