﻿
  body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* ----- Navbar ----- */
  header {
    background: #ffffff;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  .navbar .logo {
    font-weight: bold;
    font-size: 1.25rem;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 0px;
    margin-left: 400px;
  }
  .nav-links li {
    margin-left: 1.5rem;
  }
  .nav-links a {
    color: #010510;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-links a.active {
    text-decoration: underline;
  }
  .nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  /* ----- Insight Hero ----- */
  .insight-hero {
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
    color: white;
    background: url('../../static/image/hero_background.jpg') no-repeat center center;
    background-size: cover;
    min-height: 300px;
    margin-top: 140px;
  }

  
  .insight-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 35, 71, 0.9), rgba(0, 51, 102, 0.85));
  }
  
  .insight-hero h1,
  .insight-hero p {
    position: relative;
    z-index: 2;
  }
  
  .insight-hero h1 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .insight-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  /* ----- Insight Content ----- */
  .insight-content {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .blogs, .case-studies {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .insight-content h2 {
    color: #0f1c94;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.5rem;
  }
  
  .insight-content p {
    line-height: 1.8;
    color: #444;
  }
  
  /* ----- Footer Adjustments ----- */
  main {
    flex: 1;
    margin-bottom: 0;
    padding-bottom: 2rem;
  }
  
  footer {
    margin-top: auto;
    background-color: #333;
    padding: 40px 0 0 0;
  }
  
  /* ----- Responsive Styles ----- */
  @media (max-width: 768px) and (min-width: 480px) {
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background: #003366;
      width: 200px;
      height: 0;
      overflow: hidden;
      flex-direction: column;
      transition: 0.3s ease;
    }
  }

  @media (max-width: 480px) {

    .insight-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for darkness level */
    }
  
    .insight-hero {
      min-height: 50vh;
      padding: 2rem 1rem;
      margin-top: 220px;
      text-align: center;
    }
  }
    /* Footer Styles */
    footer {
      background-color: #333;
      color: white;
      padding: 40px 0;
      width: 100%;
      text-align: center;
    }
  
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 100px;
    }
  
    .footer-section {
      flex: 0 1 auto;
      min-width: 300px;
      padding: 0 20px;
      text-align: left;
    }
  
    .footer-section h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }
  
    .footer-section p {
      margin: 5px 0;
      font-size: 14px;
      line-height: 1.5;
    }
  
    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #555;
    }
  