/* ===========================
   BASIC RESETS
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
  }
  
  /* Container Helper */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* ===========================
     HEADER & NAV
  =========================== */
  .main-header {
    background-color: #0b1953; /* Adjust to your brand color */
    color: #fff;
    padding: 1rem 0;
  }
  
  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .logo span {
    color: #00ffd1; /* Accent color for brand */
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .login-btn {
    background-color: #00ffd1;
    color: #0b1953;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
  }
  
  .login-btn:hover {
    background-color: #00c3a1;
  }
  
  /* ===========================
     HERO SECTION
  =========================== */
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #122a67; /* hero background color */
    color: #fff;
    padding: 4rem 0;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .hero-text {
    flex: 1 1 400px;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    display: inline-block;
    background-color: #00ffd1;
    color: #0b1953;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
  }
  
  .btn-primary:hover {
    background-color: #00c3a1;
  }
  
  .hero-image {
    flex: 1 1 300px;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
  }
  
  /* ===========================
     SOLUTIONS / OVERVIEW SECTION
  =========================== */
  .solutions-section {
    padding: 3rem 0;
    background-color: #fafafa;
  }
  
  .solutions-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .solutions-text {
    flex: 1 1 500px;
  }
  
  .solutions-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .solutions-text p {
    margin-bottom: 1rem;
    max-width: 600px;
  }
  
  .solutions-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }
  
  .solutions-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .solutions-list i {
    color: #0b1953;
    font-size: 1.3rem;
  }
  
  .solutions-image {
    flex: 1 1 300px;
  }
  
  .solutions-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
  }
  
  /* ===========================
     INTEGRATIONS SECTION
  =========================== */
  .integrations-section {
    text-align: center;
    background-color: #f5d25f; /* sample highlight color */
    padding: 3rem 1rem;
  }
  
  .integrations-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .integrations-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  /* 
    Each .icon contains a background circle for your image logos 
    (like Google, Facebook, Twitter, etc.).
  */
  .icon {
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Replace the old Font Awesome rule with new styles for <img> logos */
  .icon img {
    width: 30px;      /* Adjust as needed */
    height: 30px;     /* Adjust as needed */
    object-fit: contain;
  }
  
  .btn-secondary {
    background-color: #0b1953;
    color: #fff;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
  }
  
  .btn-secondary:hover {
    background-color: #060c2a;
  }
  
  /* ===========================
     STATS / TEAM-UP SECTION
  =========================== */
  .stats-section {
    padding: 3rem 1rem;
    background: #f0f0f0;
  }
  
  .stats-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .stats-text {
    flex: 1 1 400px;
  }
  
  .stats-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .benefits-list {
    list-style: none;
    margin-top: 1rem;
  }
  
  .benefits-list li {
    margin-bottom: 0.75rem;
  }
  
  .stats-cards {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  
  .stat-card {
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 1.5rem;
    flex: 1 1 120px;
    min-width: 120px;
  }
  
  .stat-card h4 {
    font-size: 2rem;
    color: #0b1953;
  }
  
  .stat-card p {
    margin-top: 0.5rem;
  }
  
  /* ===========================
     FOOTER SECTION
  =========================== */
  .footer-section {
    background-color: #333;
    color: #bbb;
    padding: 2rem 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-left {
    flex: 1 1 300px;
  }
  
  .footer-left h4 {
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .footer-left p {
    margin-bottom: 0.5rem;
  }
  
  .footer-right {
    flex: 1 1 300px;
  }
  
  .footer-nav {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-nav a {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-nav a:hover {
    color: #fff;
  }
  
  /* Social icons (from Freepik) in the footer */
  .social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .social-icons img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover img {
    opacity: 0.8;
    transform: scale(1.05);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
  }
  
  /* ===========================
     MEDIA QUERIES
     (Adjust breakpoints as needed)
  =========================== */
  @media (max-width: 768px) {
    .main-nav ul {
      flex-direction: column;
      background-color: #0b1953;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      display: none; /* Toggle with JS if you want a mobile menu */
    }
  
    .hero-content,
    .solutions-content,
    .stats-content {
      flex-direction: column;
    }
  
    .solutions-list li,
    .benefits-list li {
      font-size: 0.95rem;
    }
  }
  