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

  body {
    font-family: "Inter Tight", sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
  }

  /* Navigation */
  .nav {
    width: 100%;
    background-color: #3651BF; /* Dark blue */
    display: flex;
    justify-content: space-between; /* space between logo and nav items */
    align-items: center;
    padding: 21px 21px;
  }

  .logo img {
    height: 30%; /* Adjust size as needed */
    cursor: pointer;
    margin-left: 234px;
  }

  /* Container for nav links and buttons */
  .nav-right {
    display: flex;
    align-items: center;
    margin-right: 234px;
    gap: 30px; /* gap between nav links and buttons */
  }

  .navigation {
    display: flex;
    gap: 30px; /* space between each nav link */
  }

  .navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
  }

  .nav-cta {
    display: flex;
    gap: 20px; /* space between Log In and Register buttons */
  }

  .nav-cta button {
    padding: 10px 20px;
    background-color: #fff;
    color: #3651BF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.6px;
    font-family: "Inter Tight", sans-serif;
    border-radius: 8px;
  }

  .cta1:hover,
  .cta2:hover {
    background-color: #f0f0f0;
  }

  .title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 113px;
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
  }

  .redirect-link {
    color: #3e4eb8;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.6px;
    font-weight: 600;
    border-bottom: 1px #3651BF solid;
  }

  .redirect-link:hover {
    text-decoration: underline;
  }

  .login-btn {
    background-color: #f17051;
    margin-top: 30px;
    padding: 14px 20px;
    color: #ffffff;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.8px;
    font-family: "Inter Tight", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .login-btn:hover {
    background-color: #d65d42;
  }

  .footer {
    background-color: #0D132E; /* Dark blue */
    color: #ffffff;
    padding: 37px 20px 20px;
    padding: 40px 80px; /* You can adjust this */
    font-family: Arial, sans-serif;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }

  .footer-logo {
    flex: 1 1 300px;
    margin-bottom: 20px;
  }

  .footer-logo .logo {
    width: 150px;
    margin-bottom: 20px;
  }

  .footer-logo p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 25px;
    font-family: "Inter Tight", sans-serif;
  }




  /* Social icons */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 13px;
  }

  .footer-social .social-icon {
    margin-top: 100px;
    background-color: #3651BF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s, color 0.3s;
  }


  .footer-social .social-icon:hover {
    background-color: #ffffff;
    color: #0a0a3f;
  }


  .footer-links,
  .footer-help {
    flex: 1 1 200px;
    margin-bottom: 20px;
  }

  .footer-links h4,
  .footer-help h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    line-height: 21px;
  }

  .footer-links ul,
  .footer-help ul {
    list-style: none;    font-size: 14px;
    letter-spacing: 0.8px;
    font-weight: 400;
    padding: 0;
    line-height: 25px;

  }

  .footer-links ul li,
  .footer-help ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a,
  .footer-help ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
  }

  .footer-links ul li a:hover,
  .footer-help ul li a:hover {
    text-decoration: underline;
    color: #6e1010;
  }

  .footer hr {
    border: none;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.75);
    height: 1px;
    background-color: #dadada26;  /* Slightly lighter than footer bg */
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-links,
    .footer-help {
      flex: none;
    }
  }

  /* Responsive - only adding media queries */
  .hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }

  /* Below 768px screen */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  

    .nav-right {
      display: none; /* hide menu initially */
      flex-direction: column;
      background-color: #0a0a3f; /* or your nav color */
      position: absolute;
      top: 60px; /* below nav */
      right: 0;
      width: 100%;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-right.show {
      display: flex; /* show menu when toggled */
    }

    .navigation {
      flex-direction: column;
      gap: 10px;
    }

    .nav-cta {
      flex-direction: column;
      gap: 10px;
    }
  }

  /* General Reset */
  * {
    box-sizing: border-box;
  }

  /* Responsive for header */
  @media (max-width: 768px) {
    .nav {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
    }

    .logo img {
      width: 120px; /* Adjust as per need */
      height: auto;
    }

    .nav-right {
      display: none;
      flex-direction: column;
      background-color: #ffffff; /* or your nav background */
      position: absolute;
      top: 80px; /* height of your nav */
      right: 0;
      width: 200px;
      padding: 1rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .nav-right.show {
      display: flex;
    }

    .navigation {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .navigation a {
      display: block;
      padding: 10px 0;
      width: 100%;
      border-bottom: 1px solid #eee;
    }

    .nav-cta {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .nav-cta button {
      width: 100%;
    }

    .hamburger {
      display: block;
      cursor: pointer;
      font-size: 24px;
      z-index: 1100;
    }
  }

  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }

    .footer-logo,
    .footer-links,
    .footer-help {
      width: 100%;
      margin-bottom: 20px;
    }

    .footer-logo img {
      width: 150px; /* Adjust logo size if needed */
    }

    .footer-container .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 10px;
      
    }

    .footer-links ul,
    .footer-help ul {
      padding: 0;
    }

    .footer-links li,
    .footer-help li {
      margin-bottom: 10px;
    }

    
  }
