/* =================================================
   Job Role: Web Developer & Media Graphic Designer
   Website Designed By Abdul Rahman Raza
   Official Website www.designerich.info
=================================================== */

  .bannered {
      position: relative;
      width: 100%;
      min-height: 62svh; /* ✅ safer viewport units */
      background: url('../images/backgrounds/banner-01.png') no-repeat center center/cover;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 20px;
    }

    .bannered .banner-text {
      background: rgba(0,0,0,0.5);
      padding: 20px 40px;
      border-radius: 10px;
      font-size: 2rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 3px;
      animation: fadeIn 2s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 768px) {
      .bannered {
        min-height: 50svh;
        justify-content: center;
      }
      .bannered .banner-text {
        font-size: 1.5rem;
        padding: 15px 30px;
      }
    }

    @media (max-width: 480px) {
      .bannered {
        min-height: 45svh;
      }
      .bannered .banner-text {
        font-size: 1.2rem;
        padding: 10px 20px;
      }
    }
	
	





 
    .form-container {
      max-width: 1200px;
      margin: 20px auto;
      padding: 30px;
      border-radius: 10px;
    }

    h2 {
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .form-row {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
    }

    .form-row .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    input, select, textarea {
      padding: 12px;
      border: 1px solid #555;
      border-radius: 5px;
      background: #000;
      color: #fff;
      font-size: 1rem;
    }

    select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: none;
    }

    textarea {
      min-height: 100px;
      resize: none;
    }

    .info-box {
      padding: 15px;
      border: 1px solid #555;
      border-radius: 5px;
      background: #111;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .btn-row {
      display: flex;
      justify-content: flex-end; /* ✅ align right */
    }

    .btn-submit {
      background: #fff;
      color: #000;
      font-weight: bold;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background: #fff;
      color: #000;
    }

    .message {
      margin-top: 15px;
      padding: 12px;
      border-radius: 5px;
      display: none;
    }

    .message.success {color: #acfc00; text-align: center; padding-bottom: 23px;  display: block; }
    .message.error { color:red; text-align: center; padding-bottom: 23px;  display: block; }

    @media (max-width: 768px) {
      .form-row { flex-direction: column; }
      .btn-row { justify-content: center; } /* center button on mobile */
    }
	
	
	
	
 .map-wrapper {
  max-width: 1200px;
  margin: 0 auto;       /* center wrapper horizontally */
  text-align: center;   /* center heading and text */
}

.map-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin: 0 auto;       /* center map horizontally */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
