
body{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    border-bottom:1px solid rgb(219, 218, 218);
    /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); */
    padding: 1rem 6rem;
    position: sticky;
}
footer{
    margin-top: 3rem;
    padding: 2rem 3rem;
    border-top:1px solid rgb(219, 218, 218);
}

footer a{
    text-decoration: none;
    color: #768693;
    font-size: 1rem;
    
}
footer div{
    line-height: 2rem
}

.ftr-flex{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* gap:4rem; */
}
.logo-flex{
    display: flex;
    justify-content: left;
    gap: 1rem;
    margin: 1rem ;
}
.img1 {
    
    filter: saturate(0%);
    transition: filter 0.3s ease;
}

.img1:hover {
    filter: saturate(100%);
}

.ftr-div{
    background-color:#F1F1F1;


}

.ftr-div p{
    color: #768693;
    padding: 2rem 2.5rem;
}
footer a:hover{
    color: #EB9421;
    text-decoration: none;
}
/* Add these styles to your existing CSS */

/* #tabsection styling */
#tabsection {
    margin-top: 3rem; /* Adjust the margin-top as needed */
}

/* Nav tabs styling */
.nav-tabs {
    margin-left: 2.5rem;
    width: fit-content;
    background-color: #F1F1F1; /* Background color for the tabs */
    padding: .6rem; /* Add padding to the tabs container */
    border-radius: 2rem; /* Optional: Add border-radius for rounded corners */
}
.nav-link{
    /* width: 5rem; */
    color:black;
    transition: background-color 0.5s ease, color 0.3s ease;
    border-radius: 1.5rem !important;
    
}
.nav-link:hover{
    color: #EB9421;
    border:none;
    
}
/* Active tab styling */
.nav-tabs .nav-link.active {
    background-color:#EB9421; /* Background color for the active tab */
    border-bottom: none; /* Remove bottom border for active tab */
    color:white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow for depth */
    border-radius: 1.5rem !important;
}

/* Tab content container styling */
.tab-content {
    background-color: white; /* Background color for the tab content */
    padding: 2rem; /* Add padding to the tab content container */
    
}

/* Form styling within tabs */
.form-group {
    margin-bottom: 1.5rem; /* Adjust the margin between form groups */
}

/* Optional: Adjust form control styling */
.form-control {
    width: 100%; /* Make form controls full width within the container */
}

.bt{
    padding: .5rem 3rem;
    background-color: #EB9421;
    border: none;
    color: black;
    transition: background-color 0.5s ease, color 0.3s ease;
}
.bt:hover{
    background-color: #EB9421 !important;
}

form input{
    border: none !important;
    border-top: 1px solid  #F1F1F1 !important ;
    border-left: 1px solid  #F1F1F1 !important ;
    border-right: 1px solid  #F1F1F1 !important ;
    border-bottom: 2px solid  #EB9421 !important ;
    border-radius: none !important;
    outline: none !important;
    font-size: .8rem !important;
    color:#768693 !important;
}

form select{
    outline: none !important;
    border: none !important;
    border-top: 1px solid  #F1F1F1 !important ;
    border-left: 1px solid  #F1F1F1 !important ;
    border-right: 1px solid  #F1F1F1 !important ;
    border-bottom: 2px solid  #EB9421 !important ;
    font-size: .8rem !important;
    color:#768693 !important;

}
@media (max-width: 767px) {
    .nav-tabs {
        width: 20rem; /* Set the width to auto on smaller screens */
        
        
      
    }
    .nav-link{
        margin-top: .6rem;
    }
    .ftr-div p{
       
        padding: 2rem 1rem;
    }
    .nav-tabs {
        margin-left: 0rem;
    }
    .tab-content {
        background-color: white;
        padding: 0rem;
    }
    
    header{
        
        padding: 1rem 1rem;
      
    }
    footer {
                
        padding: 2rem 1rem;
    }


}
@media (min-width: 767px) and (max-width: 1200px) {
    .nav-tabs {
        margin-left: 0.3rem;
    }
    header{
        
        padding: 1rem 2rem;
      
    }
    footer {
                
        padding: 2rem 1rem;
    }

    
    .ftr-div p {
        padding: 2rem 1.5rem;
    }
}