/* General Styles */
:root {
  --blue: #002d5d;
}

body {
  font-family: "Mulish", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    
  }

  .container {
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
  }

  .two-col-grid {
      display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  header {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    max-width: 200px;
  }
  
  /* Hero Section with Parallax */
  .hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgb(215, 215, 215);
    overflow: hidden;
    
  }

  .hero-image-container {
      position: relative;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(-1px); /* Creates the parallax effect */
    z-index: -1; /* Ensures the image stays behind other content */
  

  }

  .hero-left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    background-color: #dedee0;
    position: relative;
    padding-left: 40px;
    text-align: center;
  }


  .hero-left-column img {
    max-width: 35vw;
    z-index: 99;
    padding: 30px;
    background-color: #fff;
    mix-blend-mode: darken;
   
  }

  .hero-left-column h1 {
    font-size: clamp(1.6rem, 3.75vw + -0.2rem, 2.2rem);
    color: var(--blue);
    /* max-width: 615px; */

  }
  
  /* Intro Section */
  .intro {
    background-color: #fff;
    text-align: center;
  }
  
  .intro h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--blue);
  }
  .intro h3 {
      font-size: 2em;
    margin-bottom: 10px;
    color: var(--blue);
  }
  
  .intro p {
    font-size: 1.2em;
    margin: 5px 0;
    color: #555;
  }

  .intro .date {
      font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  /* Form Section */
  .form-section {
 
    background-color: #fff;

  }

  .form-section .inner-form-section {
    padding: 20px;
    background-color: #e3e3e35e;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgb(215, 215, 215);
  }
  
  .form-section h2 {
    text-align: center;
    font-size: 2em;
    margin: 0 0 20px;
    color: var(--blue);;
  }
  
  form {
    display: flex;
    flex-direction: column;
    
  }

  form > input {
    margin-bottom: 20px;
  }
  
  label {
    font-weight: bold;
    color: #555;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus {
    border-color: #007BFF;
    outline: none;
  }
  
  button {
    margin-top: 20px;
    padding: 12px;
    background-color: var(--blue);;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .checkbox-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  
  .g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }
  
  /* Footer Section */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #e3e3e35e;
    color: rgb(0, 0, 0);
  }
  
  .logo-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }

  .logo-grid a {
    width: 150px;
    display: flex;
    justify-content: center;
  }
  
  .logo-grid img {
    max-width: 150px;
    height: auto;
        object-fit: contain;
  }

  .hide-on-desktop {
    display: none;
  }

  .shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  


  @media (min-width: 769px) {
    .hero-image-container::after {
      content: ''; /* Required for pseudo-elements */
      position: absolute; /* Position the gradient absolutely within the container */
      top: 0;
      left: 0;
      width: 50%; /* Width of the gradient effect */
      height: 100%;
      background: linear-gradient(to left,  transparent, #dedee0); /* Gradient from #dedee0 to transparent */
      pointer-events: none; /* Ensure the gradient doesn't interfere with clicks */
    }

    .hero-section {
      min-height: 70vh; /* Default height for desktop */
    }

    .inner-column-left {
        max-width: 700px;
    }
  }
  /* Mobile Styles */
  @media (min-width: 1115px) {

  }

  @media (max-width: 1024px) {
    .two-col-grid {
      display: block;
    }

    .intro {
      text-align: center;
      margin-bottom: 30px;
    }

    .intro h2 {
      font-size: 1.9em;
    }

    .title {
      font-size: 2.2em; 
      text-align: center;
      color: var(--blue);
      padding-bottom: 20px;
      border-bottom: 1px solid rgb(215, 215, 215);;
    }



  }

  @media (max-width: 768px) {

    .hide-on-desktop {
      display: block;
    }

    .hide-on-mobile {
      display: none;
    }

    .container {
      padding: 0 20px;
    }
    
    .two-col-grid {
      padding-top: 0px
    }

    .hero-section {
      display: flex;
      flex-direction: column;
     height:auto;
        margin-bottom: 40px;
      overflow: hidden;
    
    }
  
    .hero-image {
      object-position: right; /* Position the image to the right */
      position: relative;
    }

    .hero-left-column {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      max-height: 100px;
      align-items: center;
      padding-left: 0;
    }

    .hero-left-column img {
      max-width: 200px;
      padding: 10px;
     
    }

    .hero-image-container {
      display: flex;
      max-height: 400px;
    }

  
    .intro {
    
      text-align: center;
    }
  
    .intro h2 {
      font-size: 1.8em;
    }
  
    .intro p {
      font-size: 1em; /* Smaller font size for mobile */
    }

    .title {
      font-size: 2em; 

    }

    .form-section .inner-form-section {
      margin-bottom: 50px;
    }
    
    .logo-grid {
        justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .hero-left-column img {
      max-width: 150px;          
    }
  }