      /* :root {
            --primary: #003366; 
            --secondary: #800000;
            --bg: #f4f4f9;
            --text: #333;

        } */


        :root {
            --navy: #0d223f;
            --orange: #e69138;
            --light-blue: #40b3e5;
            --primary: #003366; 
            --secondary: #e69138;

        }

        body { font-family: 'Helvetica Neue', Arial, sans-serif; background: var(--bg); color: var(--text); margin: 0; padding: 0; line-height: 1.6; }
        
        /* Header & Brand */
        /* header { background: var(--primary); color: white; padding: 10px 0; border-bottom: 5px solid var(--secondary); }
        .header-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 0 20px; flex-direction: column;}
        .conf-logo { height: 70px; width: auto; align-items: center;}
        .header-text{display: flex; align-items: center; justify-content: center; gap: 25px; column-gap: 25px;}
        .header-text h1 { margin: 0; font-size: 2.4em; text-transform: uppercase; letter-spacing: 2px; }
        .header-text p { margin: 5px 0 0 0; font-style: italic; font-size: 1.1em; opacity: 0.9; }  */
          header {
    width: 100%;
    overflow: hidden; /* Ensures image doesn't break layout */
    display: none;
    border-bottom: 6px solid var(--orange);
       opacity: 0;
    transform: translateY(-20px);
    animation: bannerSlideIn 1s ease forwards;
  }

  header img {
    width: 100%;      /* Make image fill header width */
    height: auto;     /* Maintain aspect ratio */
    display: block;   /* Remove small gaps below image */
  }

   @media (max-width: 768px) {
      header {
    width: 100%;
    overflow: hidden; /* Ensures image doesn't break layout */
    display: block;

  }

   }



/* Container for the new banner */
.namp-banner {
    width: 100vw;
    min-height: 140px;
    background-color: var(--navy);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw; 
    box-sizing: border-box;
    /* border-top: 6px solid var(--orange); */
    border-bottom: 6px solid var(--orange);

    opacity: 0;
    transform: translateY(-20px);
    animation: bannerSlideIn 1s ease forwards;
  }

  @keyframes bannerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }

  /* Left: Logo Only */
  .logo-section {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 90px; /* Increased size since there is no text next to it */
    width: auto;
    display: block;
  }

  /* Center: Main Title */
  .title-section {
    flex: 2;
    text-align: center;
  }

  .title-section h1 {
    margin: 0;
    font-size: clamp(1.4rem, 3.5vw, 2.5rem); /* Scales based on screen size */
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
  }

  .subtitle {
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 5px 0;
  }

  /* Right: Date and "Save the Date" */
  .info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }

  .date-text { 
    color: var(--light-blue); 
    font-size: clamp(1.1rem, 2vw, 1.8rem); 
    font-weight: bold; 
  }
  
  .location-text { 
    color: var(--orange); 
    font-size: 1rem; 
    font-weight: bold; 
    text-transform: uppercase;
  }

  .save-the-date {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 5px;
  }

  .orange { color: var(--orange); }
  .blue { color: var(--light-blue); }
    .white { 
      color: var(--orange);
     font-size: 0.8rem;
     font-weight: 600;
     /* letter-spacing: 1px; */
     margin-top: 5px;
     opacity: 0.8;
     }
     

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .namp-banner {
      min-height: 100px;
      padding: 0 15px;
      display: none;
    }
    .logo-img { height: 60px; }
    .save-the-date { font-size: 0.6rem; }
  }

        /* Layout */
        .wrapper { max-width: 1100px; margin: 40px auto; display: flex; gap: 40px; padding: 0 20px; }
        
        .counter { font-size: 0.8em; color: #666; text-align: right; }

        aside { flex: 1; background: #fff; padding: 25px; border-radius: 4px; border-top: 4px solid var(--secondary); box-shadow: 0 2px 10px rgba(0,0,0,0.05); height: fit-content; }
        aside h3 { color: var(--primary); border-bottom: 1px solid #eee; padding-bottom: 10px; margin-top: 0; }

        .sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 15px;
}
/* Initial state: hidden and shifted left */
.animated-banner {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-in-out;
}

/* Class that will trigger animation */
.animated-banner.visible {
    opacity: 1;
    transform: translateX(0);
}
@keyframes slideFade {
    0% { opacity: 0; transform: translateX(-50px); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-50px); }
}

.animated-banner {
    animation: slideFade 5s infinite;
}
        .deadline { margin-bottom: 20px; font-size: 0.95em; }
        .deadline strong { display: block; color: var(--secondary); margin-bottom: 3px; }

        main { flex: 2.5; background: white; padding: 40px; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        h2 { color: var(--primary); margin-top: 0; border-bottom: 1px solid #eee; padding-bottom: 15px; }

        /* Form Styling */
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; font-weight: bold; color: #444; font-size: 0.9em; }
        input[type="text"], input[type="email"], input[type="tel"], textarea, select, input[type="file"] {
            width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 1em;
        }
        textarea { resize: vertical; }
        
        .compliance-box { background: #f9f9f9; padding: 15px; border: 1px solid #eee; border-radius: 4px; margin-bottom: 20px; }
        .compliance-box label { font-weight: normal; display: flex; align-items: center; gap: 10px; cursor: pointer; }
        
        .btn-submit { 
            background: var(--primary); color: white; padding: 15px 40px; border: none; border-radius: 4px;
            cursor: pointer; font-size: 1.1em; font-weight: bold; transition: 0.3s; width: 100%;
        }
        .btn-submit:hover { background: var(--secondary); }

        /* Alerts */
        .alert { padding: 20px; margin-bottom: 30px; border-radius: 4px; }

        .alert ul {
            list-style-type: disc;
        }

        .alert li {
            margin-bottom: 5px;
        }

        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
        /* .error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } */

        footer { text-align: center; padding: 40px; color: #777; font-size: 0.8em; }

        @media (max-width: 800px) {
            .wrapper { flex-direction: column; }
            .header-container { flex-direction: column; text-align: center; }
        }


