

.contact-header {
    background-color: #EC1D26;
    color: #fff;
    padding: 32px 0 18px 0;
    text-align: center;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 70vh;
    padding-top: 32px;
}

.contact-card {
  max-width: 650px; /* Increased from 520px */
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 40px 32px 32px 32px;
  border: 1px solid #eee;
}


.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 8px;
    color: #222;
}

.contact-card p {
    text-align: center;
    color: #888;
    margin-bottom: 28px;
    font-size: 1.08rem;
}

/* .form-label {
    font-weight: 500;
    margin-bottom: 4px;
    color: #222;
}

.form-control {
    border-radius: 8px;
    font-size: 1.08rem;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    box-shadow: none;
} */

.btn-contact {
    background-color: #EC1D26;
    color: #fff;
    font-weight: 500;
    font-size: 1.08rem;
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
    border: none;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: #ffffff;
    color: white;
}

.serching {
    width: 250px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .serching:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  

/* Get in Touch Section */
.getintouch-section {
    background: #fafafa;
}

.getintouch-card {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    padding: 38px 22px 28px 22px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.getintouch-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(38, 44, 122, 0.10);
}

.getintouch-icon i {
    color: #EC1D26;
    transition: color 0.2s;
}

.getintouch-card:hover .getintouch-icon i {
    color: #1793c6;
}

.getintouch-btn {
    background-color: #EC1D26;
    color: #fff;
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    margin-top: 10px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(38, 44, 122, 0.08);
}

.getintouch-btn:hover {
    background-color: #EC1D26;
    color: rgb(255, 255, 255);
    box-shadow: 0 4px 16px rgba(38, 44, 122, 0.12);
}

@media (max-width: 900px) {
    .getintouch-card {
        margin-bottom: 18px;
    }
}

@media (max-width: 600px) {
    .getintouch-section {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .getintouch-card {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 18px 8px 18px 8px;
        max-width: 98vw;
    }

    .contact-section {
        padding-top: 18px;
    }
}



/* new ---------------- */
 .form-wrapper {
    max-width: 520px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease;
  }

  .form-floating > .form-control,
  .form-floating > .form-control:focus {
    background-color: #fff;
    border: 2px solid #dee2e6;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: none;
  }

  .form-floating > .form-control:focus {
    border-color: #e60023;
    box-shadow: 0 0 8px rgba(230, 0, 35, 0.3);
  }

  .form-floating > label {
    color: #666;
    transition: all 0.3s ease-in-out;
  }

  .form-floating > .form-control:focus ~ label {
    color: #e60023;
  }

  .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #e60023;
  }

  .btn-contact {
    background-color: #e60023;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .btn-contact:hover {
    background-color: #c9001f;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(230, 0, 35, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }