.navbar {
    background-color: #333; /* Dark background for the navbar */
    padding: 10px 20px; /* Padding for the navbar */
    border-radius: 5px 5px 0px 0px;
}

.navbar-container {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space between Home button and title */
    align-items: center; /* Center items vertically */
   
}

.home-button {
    background-color: #FF6F00; /* Button color */
    color: white; /* Text color for the button */
    padding: 10px 15px; /* Padding for the button */
    text-decoration: none; /* Remove underline */
    font-size: 1.2rem; /* Font size for the Home button */
    border-radius: 5px; /* Rounded corners for the button */
    transition: background-color 0.3s; /* Transition for hover effect */
}

.home-button:hover {
    background-color: #e65c00; /* Darker color on hover */
}

.navbar-title {
    color: white; /* Color for the title */
    font-size: 1.5rem; /* Font size for the title */
    margin: 0; /* Remove margin */
}

/* here we design why choose us section  */


.why-choose-us {
    padding: 60px 20px;
    background-color: #1e2a47;
    color: #fff;
    text-align: center;
    border-radius: 0px 0px 5px 5px;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff7a00;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-box {
    background: #dcdfe3f4;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.reason-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.reason-box p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .reason-box {
        padding: 15px;
    }
}

/* here the end of why choose us section  */


/* start of about us section */
.about-section {
    background-color: #e6c7c7; /* Light background color */
    padding: 20px; /* Padding around the section */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 20px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for 3D effect */
    margin: 20px 0; /* Margin for spacing */
}

.about-section h2 {
    text-align: center; /* Center the title */
    color: #333; /* Dark color for the title */
    margin-bottom: 20px; /* Space below the title */
}

.about-description {
    color: #555; /* Dark grey for text */
    line-height: 1.6; /* Improved line height for readability */
    font-size: 1.2rem; /* Base font size */
    max-width: 800px; /* Maximum width for the paragraph */
    margin: 0 auto;  /* Center the text block */
    text-align: justify; /* Justify text for better appearance */
}

/* end of about us section */


/*star of our team section */
.team-section {
    background-color: #f9f9f9; 
    padding: 20px; 
    border-radius: 10px; 
    margin: 20px 0; 
}

.team-section h2 {
    text-align: center; 
    color: #333; 
    margin-bottom: 20px; 
}

.team-container {
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
}

.team-member {
    text-align: center; 
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px; 
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    width: 22%; 
}

.team-image {
   width: 100%;
   max-height: 300px;
    border-radius: 10px;
    
}

.member-specialty {
    color: #555; 
    margin-top: 5px; 
}






.thank-you-section {
    background-color: #e0f7fa; 
    padding: 20px; 
    border-radius: 10px; 
    text-align: center; 
    margin: 20px 0; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.thank-you-section h2 {
    color: #00796b; 
    margin-bottom: 15px; 
}

.thank-you-message {
    color: #333;
    font-size: 1.1em; 
    margin: 10px 0; 
    line-height: 1.6; 
}
