*{
    font-family: sans-serif;
}
.top-bar {
    background: #19829d;
    color: #ffffff;
    padding: 10px 0;
}
.top-bar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}
.top-bar a:hover {
    text-decoration: underline;
}
.searchbar {
    position: relative;
    width: 100%;
    max-width: 400px; /* Max width set kiya taaki resize pe control rahe */
}

.searchbar input {
    border: 1px solid #ffffff;
    border-radius: 25px;
    width: 80%;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    padding-left: 15px !important;
}

.searchbar input::placeholder {
    color: #dddddd;
}

.searchbar button {
    position: absolute;
    right: 0%;  /* Right side se 5px ka gap diya */
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

.searchbar .fa-search {
    font-size: 18px;
    color: #ffffff;
}

.login-button button {
    background: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    color: #000;
    width:100%;
}
.login-button button:hover {
    background: #ffca2c;
}
.main-header .nav-item a:hover{
    color: #19829d;
}



.background-image img{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the background covers the entire area */
}
.background-image h1{
    color: var( --bs-link-color);
    margin-top: 150px;
    font-weight: bolder;
}
.background-image p{
    color: white;
}


.why-choose-us h6{
    color: #19829d;
}
.why-choose-us h2{
    font-weight: 600;
}
.why-choose-us a{
  text-decoration: none;
}
.choose-images img{
    border-radius: 8px;
}

.about-why-choose-us{
    background-color: #e8e3e3;
}
.about-why-choose-us p{
    color: rgb(62, 61, 61);
}

.about-content {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px; /* Optional: Adds some spacing inside the div */
    border-radius: 5px; /* Optional: Rounds the corners slightly */
}


.apply-form{
    width: 100%;
    border-radius: 9px;

}
.form{
	float: left;
}

.apply-form label {
	font-size: 16px;
    font-weight: 500;
    padding: 11px;
    padding-bottom: 10px;
}

.apply-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 2px groove #8080803b;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	margin-bottom: 20px;
	border-top: none;
	border-right: none;
	border-left: none;
}
button{
	margin-top: 10px;
    background-color: #19829d;
    font-size: 16px;
    color: white;
    padding: 7px;
    width: 112px;
    border-radius: 6px;
    border: none;
}
.icon-circle{
    width: 65px;
    height: 65px;
    margin-left: 40%;
    border: 1px solid;
    border-radius: 50%;
    background-color: #19829d;
    border: none;
    text-align: center;
}

.about-content {
    transition: background-color 1s, color 1s; /* Adds transition for background-color and color */
    padding: 15px; /* Some padding to make hover effect look better */
    border-radius: 8px; /* Optional: rounded corners */
}

.about-content:hover {
    background-color: #19829d;
    color: white;
    transition-delay: 0.5ms;
}

.about-content:hover h5,
.about-content:hover p {
    color: white; /* Ensure text and paragraph both turn white */
}
.services-content {
    border: 1px solid white;
    background: linear-gradient(to bottom, white 50%, #19829d 50%);
    background-size: 100% 200%; /* Double the height for animation */
    background-position: top; /* Start from top */
    transition: background-position 0.2s ease-in-out, color 0.2s ease-in-out; /* Smooth transition */
}

.services-content:hover {
    background-position: bottom; /* Move background to bottom */
    color: white; /* Change text color */
}

.services-content i {
        font-size: 2.5rem;
        color: #19829d;
        transition: color 0.3s ease; /* Smooth transition effect */
    }
    .services-content:hover i {
        color: #fff; /* Change icon color to white on hover */
    }

.blog-btn{
        border: 1px solid;
        padding: 7px;
        border-radius: 32px;
        font-size: 12px;
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 10px;
        background-color: white;
        text-decoration:none;
        color:black;
}
.blog-btn:hover{
        background-color: #19829d;
        color: white;
}


footer{
    background-color: #19829d;
    color: white;
}

.footer-login-btn{
     margin-top: 7px;
     border-radius: 5px;
     background-color: white;
     border: none;
     font-size: 11px;
     padding: 8px;
     font-weight: bolder;
     width: 100px;
     color: black;
}
.footer-login-btn a{
    text-decoration: none;
}
.top-bar {
    background-color: #19829d;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* Ya jo bhi background color chahiye */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.fixed-header + .content {
    margin-top: 80px; /* Header ki height ke barabar */
}

