/* =================================================
   Job Role: Web Developer & Media Graphic Designer
   Website Designed By Abdul Rahman Raza
   Official Website www.designerich.info
=================================================== */


    body {font-family:Montserrat, sans-serif;}
    h1 { text-align:center; margin:40px 0;}
    .container { display:flex; flex-wrap:wrap; gap:20px; justify-content:center;  padding:20px 0;}
    .left,.right { flex:1 1 400px; padding:2rem 0rem;}
    select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    -webkit-appearance: none; /* remove default */
    -moz-appearance: none;
    appearance: none;
}

    .info-card { background:#222; padding:15px; border-radius:6px; line-height:1.6; }
    .map-container { width:100%; min-height:400px; border-radius:10px; overflow:hidden; box-shadow:0 4px 10px rgba(0,0,0,.4); }
    .map-container iframe { width:100%;  min-height:400px; border:0; }
	
	
	
	
	
	
	
  .form-container {
      
      width: 100%;
      padding: 75px;
      background: #111;
      color: #fff;
      box-shadow: 0 0 25px rgba(0,0,0,0.5);
    }

    h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 25px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr; /* two equal columns */
      gap: 15px 30px;
    }

.form-grid input,
.form-grid select {
  width: 100%;
  padding: 12px;
  background:#000;
  color: #fff;
   font-family:Montserrat, sans-serif;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  height: 48px; /* uniform height */
}

.form-grid textarea {
  width: 100%;
   font-family:Montserrat, sans-serif;
  padding: 12px;
  color: #fff;
   background:#000;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  height: 48px; /* force same height */
  resize: none; /* prevents dragging bigger */
}



    .form-actions {
      margin-top: 20px;
      text-align: left; /* button aligned left */
    }

    button {
      padding: 12px 20px;
	  font-family:Montserrat, sans-serif;
      background: #fff;
      color: #000;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: #fff;
      color: #111;
    }

    .msg {
      margin-top: 10px;
    }	
	
	
	
	
  .bannered {
      position: relative;
      width: 100%;
      min-height: 62svh; /* ✅ safer viewport units */
      background: url('../images/backgrounds/banner-02.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;
      }
    }
	
	
	
	
	
	
	