.header {
  background-color: #e74c3c; /* Example header color */
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  gap: 20px;
}

.header-right {
  display: flex;
  gap: 20px;
}

.navigation {
  background-color: #d35400; /* Example nav color */
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navigation a {
  color: white;
  text-decoration: none;
}

.navigation a:hover {
  text-decoration: underline;
}

.navigation a.active {
  background-color: #c0392b; /* Example active link background color */
  color: white;
  /* Add other active state styles as needed */
}


/* contact page style*/

  /* Custom styles for contact.php to match the image */
  .contact-info {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
}

.contact-info div {
    padding: 10px;
}

.contact-info i {
    font-size: 24px; /* Adjust as needed */
    margin-bottom: 5px;
}

.enquiry-form {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
}

.enquiry-form h2 {
    color: #e74c3c;
    text-align: left;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 3px rgba(231, 76, 60, 0.3);
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.icon-border{
        border: 2px solid #e74c3c;
        border-radius: 50%;
        padding: 10px;
        color: #e74c3c;
}