
.container {
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    padding: 0 20px;
}

/* Profile Section */
.profile {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.profile h1 {
    font-size: 2rem;
    color: #0c3c6d;
}

.profile p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Specialties Section */
.specialties {
    flex: 1;
    display: flex;
    background-color: #132b49;
    padding: 20px;
    color: #fff;
    flex-direction: column;
    justify-content: space-evenly;
    max-width: 400px;
    margin-bottom: 20px;
}

.specialty-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.specialty-item i {
    font-size: 1.8rem;
    color: #f0c142;
    margin-right: 15px;
}

.specialty-item p {
    font-size: 1rem;
}

/* Bio Section */
.bio-container {
    margin: 5rem auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    padding: 20px;
}

.bio-container img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bio-content {
    flex: 1;
    padding: 20px;
}

.bio-content h1 {
    font-size: 2rem;
    color: #0c3c6d;
    margin-bottom: 15px;
}

.bio-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.bio-button {
    background-color: #c2a033;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.bio-button:hover {
    background-color: #a6902c;
}

/* Why Us Section */
.content-box {
    flex: 1 1 45%;
    /* Two items per row */
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.icon-box i {
    font-size: 2rem;
    color: #0c3c6d;
}

h5 {
    color: #0c3c6d;
    font-size: 1.2rem;
}

.text-center {
    text-align: center;
}

.btn-warning {
    background-color: #c6a64a;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
}

.btn-warning:hover {
    background-color: #a17a2b;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bio-container {
        flex-direction: column;
        text-align: center;
    }

    .bio-container img {
        margin: 0 auto 20px;
    }

    .container {
        flex-direction: column;
    }

    .content-box {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {

    .bio-content h1,
    .profile h1 {
        font-size: 1.6rem;
    }

    .bio-content p,
    .profile p {
        font-size: 0.9rem;
    }

    h5 {
        font-size: 1rem;
    }
}



/* --------------------->>>>>>>>> contact us <<<<<<<<--------- */


.form-control {
    border: none; /* Remove the border */
    border-bottom: 1px solid #0c3c6d; /* Use the custom color */
    border-radius: 0; /* Remove the border radius */
    background-color: transparent; /* Make the background transparent */
    padding: 0; /* Remove padding */
    box-shadow: none; /* Remove box shadow */
  }

  .form-control:focus {
    outline: none; /* Remove the outline on focus */
    box-shadow: none; /* Remove any shadow on focus */
    border-bottom: 1px solid #0c3c6d; /* Use the custom color on focus */
  }

  .bg-custom {
    background-color: #0c3c6d; /* Custom background color */
  }

  .text-custom {
    color: #0c3c6d; /* Custom text color */
  }

  .border-custom {
    border-color: #0c3c6d; /* Custom border color */
  }

  .row-equal-height {
    display: flex;
  }

  .row-equal-height > .col-md-6 {
    display: flex;
    flex-direction: column;
  }

  .row-equal-height > .col-md-6 > .p-4 {
    flex: 1;
  }

  /*-------------->>>>>>>>> footer <<<<<<<<<----------*/

  .footer {
    background-color: #1b3b58;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }
  .footer a {
    color: white;
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }
  .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
    }
  }