/* styles.css */
*{
    padding: 0%;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.logo img{
    width: 100px !important;
    height: auto;
}

.btn-custom {
    background-image: url('/images/btn-bg.png');
    width: 110px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin: 0 5px;
    height: 60px;
    text-decoration: none;
    font-size: 14px;
}

.btn-login {
    background-image: url('/images/btn-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin: 0 5px;
    height: 60px;
    text-decoration: none;
    font-size: 14px;
}
.custom-nav-link{
    color: black !important;
    font-weight: bold;
}

/* .navbar-collapse {
    transition: max-height 1s ease;
}
.navbar-toggler.collapsed .menu-icon-image {
    transition: transform 0.5s ease;
    transform: rotate(90deg);
} */

.nav-item .nav-link.active, .nav-item .nav-link.active:hover {
    color: rgb(128, 135, 20) !important;
}

.btn-custom select{
    outline: none;
    padding: 10px;
}

.hero_section h1 {
    
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero_section img {
    max-width: 100%;
    height: auto;
}

.Home_Content_Section .content-section {
    margin-bottom: 40px;
}

.Home_Content_Section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.Home_Content_Section p{
    font-size: 16px;
    text-align: justify;
}
.notify-form input{
    outline: none;
    border: 1px solid #c56615 !important;
    margin: auto;
}
.notify-form button{
    background-image: url('/images/btn-bg.png');
    background-color: transparent;
    width: 100px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin: 0 5px;
    height: 60px;
    font-size: 14px;
    font-weight: 600;
}
/* Start About */
.about-heading {
    font-size: 2.5rem;
    color: #333;
}

.about-detail {
    font-size: 1rem;
    color: #666;
    text-align: justify;
}
/* End About */

/*Start Team */

.team-intro {
    font-size: 16px;
    color: #666;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* End Team */

/* Start Contact */
.contact-heading {
    font-size: 25px;
    color: #333;
    font-weight: 500;
}

.contact-heading label {
    font-size: 16px;
    color: #666;
}

.btn-custom1 {
    background-color: #ff6600;
    color: white;
    border: none;
}

.btn-custom1:hover {
    background-color: #e65c00;
}

.form-control {
    border: 1px solid red; /* Changed to red */
    border-radius: 5px;
    box-shadow: none;
}

.form-control:focus {
    border-color: rgb(174, 7, 7); /* Darker red for focus state */
    box-shadow: none;
}

/* End Contact */
/* start Login */
.form-signin {
    width: 100%;
    max-width: 450px;
    padding: 15px;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0px 5px 10px 0px #888888
}
/* End Login */
/*Start Footer */
footer{
    margin-top: auto;
    
}

.footer-container {
    background-image: url('/images/wave.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh;
}
/* End Footer */

@media (max-width: 640px){
    .logo img{
        width: 80px;
        height: auto;
    }

}
/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 999999;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 55px;
    height: 55px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 2px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 2px solid rgba(15, 36, 84, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 55px;
    height: 55px;
    top: -2px;
    left: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #F99023;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}