
body {
    margin: 0;
    padding: 0;
}


.navbar {
    width: 100%;
    background-color: rgba(237, 246, 249, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.10); /* Optional shadow */
    padding: 0;
}

.nav-container {
    max-width: 1100px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-brand {
    margin-left: 10px;
}

.btn-primary {
    font-family: "Mulish", sans-serif;
    width: 100px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 15px;
    --bs-btn-color: rgba(0, 0, 0, .5);
    --bs-btn-hover-color: rgba(0, 0, 0, .5);
    --bs-btn-active-color: rgba(0, 0, 0, .5);
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-bg: var(--secondary-color);
    --bs-btn-disabled-border-color: none;
    --bs-btn-disabled-color: var(--primary-color);
}

.custom-login {
    color: var(--accent-color);
    min-width: 130px;

    --bs-btn-color: rgba(0, 0, 0, .5);
    --bs-btn-hover-color: rgba(0, 0, 0, .5);
    --bs-btn-active-color: rgba(0, 0, 0, .5);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: none;
    --bs-btn-disabled-color: var(--secondary-color);
}

.custom-login-big {
    color: var(--accent-color);
    width: 280px;
    height: 50px;
    font-size: 1.2rem;

    --bs-btn-color: rgba(0, 0, 0, .5);
    --bs-btn-hover-color: rgba(0, 0, 0, .5);
    --bs-btn-active-color: rgba(0, 0, 0, .5);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: none;
    --bs-btn-disabled-color: var(--secondary-color);
}

.nav-link, .nav-link:focus {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    color: rgba(0, 0, 0, .5);
    font-size: 15px;
    margin-left: 10px;
    margin-right: 10px;
}

.nav-link:hover {
    color: rgba(var(--primary-color), .6) !important; 
}

.nav-link:active,
.nav-link.show,
.nav-link.active {
    color: var(--primary-color) !important;
}
/* Uni color coded */

/* Home page styling-start */
.homeSection{
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.landing-overlay{
    background: linear-gradient(rgba(0, 109, 119, .6),rgba(131, 197, 190, .4));
    width: 100%;
}



.rolling-news {
    height: 35px;
    top: 60px;
    background-color: rgba(var(--primary-color), 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    z-index: 1;
    display: flex; /* Use flexbox for proper alignment */
    align-items: center; /* Vertically center the text */
    overflow: hidden; /* Prevent overflow */
    width: 100%; /* Ensure it spans full width */
  }
  
  .news-items {
    font-size: medium;
    display: flex; /* Ensure the items are in a row */
    white-space: nowrap; /* Prevent the text from wrapping */
    animation: ticker 60s linear infinite; /* Apply animation */
    color:var(--accent-color);
  }
  
  @keyframes ticker {
    0% {
      transform: translateX(100%); /* Start from the right outside the screen */
    }
    100% {
      transform: translateX(-100%); /* Move to the left outside the screen */
    }
  }
  



.home-container{
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: start;
}

.title-container{
    max-width: 70%;   
}

.title-text{
    font-family: "Mulish", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 4.5rem;
    color: var(--accent-color);
}

.subtitle-container{
    max-width: 75%;
}
.subtitle-text{
    font-family: "Nunito Sans", sans-serif;
    color: var(--accent-color);
    font-size: 1.2rem;
}
/* Home page section styling-end */

.featureSection{
    background-color: transparent;
}

.featureContainer{
    background-color: var(--accent-color);
    min-height: 300px;
    border-radius: 16px;
    box-shadow: 2px 12px 12px rgba(0, 0, 0, .2);
}

/* color uni code */

/* Loan-status section styling -start */
.loanSection{
    height: auto;
    background-color: transparent;
}

.loan-overlay{
    background: linear-gradient(rgba(131, 197, 190, .2),rgba(0, 109, 119, .2));
    width: 100%;
}


.loan-container{
    flex-direction: column;
    align-items: center;
    height: auto;
}

.loan-title{
    font-family: "Mulish", sans-serif;
    font-weight: 700;
}

.loan-subtitle{
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    max-width: 60%;
}

.chart-container{
    gap: 32px;
}

.loan-pie-chart{
    min-width: 35%;
    height: 300px;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23.76px;
}

.pie-chart-container{
    background-color: transparent;
    margin-bottom: 20px;

}

.pie-label{
    width: fit-content;
    background-color: transparent;
    color:var(--accent-color);
    font-size: small;
    
}

.circle-dot{
    border-radius: 50%;
    height: 10px;
    width: 10px;
    background-color: var(--secondary-color);
    margin-right: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.nra-label-color{
    background-color: var(--secondary-color);
}
.ta-label-color{
    background-color: var(--accent-color);
}
.tatonra-label-color{
    background-color: #9E9E9E;
}

.loan-line-chart{
    min-width: 60%;
    height: 300px;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23.76px;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff50;
    padding: 10px 0;
    color: var(--accent-color);
  }
  
  .stats-label {
    width: 10%;
    font-size: 14px;
    text-align: center;
  }
  
  .stats-name {
    width: 30%;
    font-size: 14px;
    text-align: left;
  }
  
  .progress-bar-container {
    width: 40%;
    background-color: #ffffff50;
    height: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background: linear-gradient(to right, #ffffff, #00B4B4);
    border-radius: 5px;
  }
  
  .stats-value {
    width: 80px;
    margin-left: 10px;
    border: .8px solid var(--accent-color); 
    border-radius: 8px;
    font-size: 11px;
    text-align: center; 
    padding-left: 10px;
    padding-right:10px;
    padding-top: 4px;
    padding-bottom: 4px; 
  }


.loan-stats{
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}

.individual-stat{
    width: 200px;
    height: 90px;
    background-color: transparent;
}

.stat-card{
    padding: 10px;
    align-items: center;
    height: inherit;
    display: flex;
    flex-direction: row;
    border-radius: 16px;
    background-color: var(--primary-color);
    justify-content: center;
    gap: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.icon {
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
.icon img{
    height: auto;
    width: 30px;
}

  .text {
    max-width: 70%;
    text-align: start;
  }
  
  .title {
    font-size: 12px;
    margin: 0;
    font-weight: bold;
    color: var(--accent-color);
  }
  
  .count {
    font-size: 18px;
    margin: 5px 0 0;
    font-weight: bold;
    color: var(--secondary-color);
  }

.loan-dept-chart{
    padding-left: 50px;
    padding-right:50px;
    width: 100%;
    height: 350px;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23.76px;
    /* overflow: scroll; */
}

.custom-dropdown{
    background-color: transparent;
    color: grey;
    font-size: small;
    border-color: var(--accent-color);
    border-radius: 7px;
}


  .dropdown-item{
    font-size: 12px;
  }

  .dropdown-menu {
    min-width: auto; 
  }

.chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    position: relative;
  }
  
  .label-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between !important;
  }

  .bar-width{
    width: 40px;
    height: 100%;
    background-color: transparent;
    align-content: end;
    padding-left: 5px;
    padding-right: 5px;
  }

  .bar_dte,.bar_dpi,.bar_dce,.bar_panchayat,.bar_kottackal,.bar_vaidya,.bar_dhse,.bar_vhse,.bar_farm,.bar_homeo {
    width: 30px;
    background: linear-gradient(to top, #ffffff, #00B4B4);
    border-radius: 5px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .bar-label {
    background-color: transparent;
    width: 40px;
    min-width: 40px;
    margin-top: 5px;
    font-size: 8px;
    color: #ffffff;
    text-align: center;
  }

/* Loan-status section styling -end */


/* Departments section styling start */
.deptSection{
    /* min-height: 109vh; */
    background-color: transparent;
}

.table-responsive {
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table > :not(caption) > * > * {
    padding: 1rem .75rem;
}

.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: var(--primary-color);
    --bs-table-border-color: #4d5154;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: var(--bs-table-color);
}

.page-info{
    color: transparent;
    font-size: small;
}

.table-nav-button{
    width: fit-content;
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: var(--secondary-color);;
}

tfoot td {
    background-color: var(--primary-color) !important; 
    padding: 10px;
}
  
tfoot .btn {
    min-width: 40px; 
}

/* Departments section styling end */


/* Login section styling start */
.loginSection{
    background-color: transparent;
}

.login-container{
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between !important;
}

.form-title{
    width: 100%;
    align-content: center;
    font-family: "Nunito Sans", sans-serif;
}

.form-title h5{
    font-size: medium;

}

.login-procedure{
    background-color: var(--primary-color);
    border-radius: 16px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}

.login-procedure-title{
    font-family: "Mulish", sans-serif;
    color: var(--accent-color);
    font-size: larger;
    font-weight: bold;
}

.underline{
    max-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.procedure-container{
    font-size: 15px;
    align-items: center;
    padding: 14px;
    max-width: 95%;
    min-height: 90px;
    background-color:var(--accent-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    margin-bottom: 10px;
}

.procedure-list {
    list-style: none; /* Removes the bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}
  

/* .procedure-container:hover {
    cursor: grab;
    transform: scale(1.02);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
} */

.login-form{
    background-color: var(--accent-color);
    border-radius: 16px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background-size: cover;
    background-repeat: no-repeat;
}


.form-fix {
    display: block;
    width: 100%;
    font-size: .8rem;
    background-color: transparent;
    background-clip: none;
    border: black;
    border-radius: 5px
}

.form-control{
    padding: .75rem .75rem;
    font-size: 0.9rem;
    font-weight: 400;
    
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select, .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.form-login-btn{
    width: 100%;
    margin:0;
    height: 45px;
}

.forget-pass-button{
    color: var(--accent-color);
    font-size: .8rem;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Login section styling end */

/* Help section styling start */

.helpSection{
    align-content: center;
    background-color: transparent;
}

.help-title{
    font-weight: 900;
}

.accordion{
    width: 100%;
    background: var(--accent-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow:  0 0 4px rgba(0,0,0,0.2);
}
.accordion .accordion-content{
    margin: 10px 0;
    border-radius: 4px;
    background: rgba(0, 109, 119, .4) ;
    border: 1px solid rgba(0, 109, 119, 1) ;
    overflow: hidden;
}
.accordion-content:nth-child(2){
    background: rgba(0, 109, 119, .4) ;
    border-color: rgba(0, 109, 119, 1) ;
}
.accordion-content:nth-child(3){
    background: rgba(0, 109, 119, .4) ;
    border-color: rgba(0, 109, 119, 1) ;
}
.accordion-content:nth-child(4){
    background: rgba(0, 109, 119, .4) ;
    border-color: rgba(0, 109, 119, 1) ;
}
.accordion-content.open{
    padding-bottom: 10px;
}

.faq-container{
    flex-direction: column;
}


.accordion-content header{
    display: flex;
    min-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.1s linear;
}
.accordion-content.open header{
    min-height: 35px;
}
.accordion-content header .title{
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.accordion-content header i{
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.accordion-content .description{
    height: 0;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    padding: 0 15px;
    transition: all 0.1s linear;
}

.custom-footer{
    background-color: var(--primary-color) !important;
}

.footer p{
    color: var(--accent-color);
}

.footer a:hover {
    color: black; /* Slightly lighter red for hover effect */
    text-decoration: underline;
}

.password-container {
    position: relative;
    width: 100%;
    margin: auto;
  }

  .password-container input {
    padding-right: 40px; /* Space for the eye icon */
    
  }

  .password-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: gray;
    font-size: large;
  }

  .main-content{
    background-color: var(--accent-color) !important;
  }

  .featureAlign{
    height: auto;
  }

  .featureListing{
    height: 275px;
    width: 220px;
    background-color: var(--accent-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  


.featureListing:hover {
    transform: scale(1.025) !important; 
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15) !important; 
}


  .feature1{
    background-color: var(--secondary-color);
  }
  .feature2{
    background-color: var(--accent-color);
  }

  .icon-wrapper2 {
    margin: 0 auto 10px;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .icon-wrapper2 i {
    color: var(--accent-color);
  }

  .icon-wrapper {
    margin: 0 auto 10px;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon-wrapper i {
    color: #333;
  }

  .featureListing p{
    font-size: 14px;
  }
  

  @media (max-width: 1700px){
    .title-text{
        font-size: 2.75rem;
    }
    .subtitle-text{
        font-size: 1rem;
    }
  }
  
@media (max-width: 1400px){
    .title-text{
        font-size: 45px;
    }
    .subtitle-text{
        font-size: 1rem;
    }
    .title-container{
        max-width: 60%;   
    }
    .loan-dept-chart{
        padding-left: 60px;
        padding-right:60px;
        /* overflow: scroll; */
    }
    .custom-login-big{
        color: var(--accent-color);
        width: 200px;
        height: 40px;
        font-size: 1rem;}
} 

@media (max-width: 1200px){
    /* .featureListing{
        height: 250px;
        width: 200px;
        background-color: var(--accent-color);
      } */
    .title-text{
        font-size: 42px;
    }
    .subtitle-text{
        font-size: 14px;
    }
    .title-container{
        max-width: 70%;   
    }
    .loan-dept-chart{
        padding-left: 50px;
        padding-right:50px;
        /* overflow: scroll; */
    }
    .news-items {
        font-size: small;
    }
    .forget-container{
        height: auto !important;
    }
    
} 

@media (max-width: 992px){
    /* .featureListing{
        height: 175px;
        width: 150px;
        background-color: var(--accent-color);
      } */
    .feature-hold{
        flex-direction: column !important;
    }
    .title-text{
        font-size: 40px;
    }
    .title-container{
        max-width: 100%;
    }
    .loan-subtitle{
        font-size: 12px;
        max-width: 90%;
    }
    .login-container{
        gap: 20px;
        justify-content: center !important;
    }


    .answer-container,.faq-container {
        min-width: 100%;
        width: 100%;
    }    
    .loan-dept-chart{
        padding-left: 20px;
        padding-right:20px;
        /* overflow: scroll; */
    }
} 

@media (max-width: 768px){
    .title-text{
        font-size: 36px;
    }
    .subtitle-text{
        font-size: 12px;
    }
    .chart-container{
        flex-wrap: wrap;
        align-items: center !important;
    }
    .loan-pie-chart,.loan-line-chart{
        width: 100%;
        margin-left: 5%;
        margin-right: 5%;
    }
    .loan-line-chart{
        width: 100%;
    }
    .loan-dept-chart{
        padding-left: 15px;
        padding-right:15px;
        /* overflow: scroll; */
    }

    .faq-container{
        display: flex;
        flex-direction: column !important;
        flex-wrap: wrap;
    }
    
    .faq-over {
        width: 100% !important;
        height: 200px !important;
    }
    .faq-image {
        width: 100% !important;
        height: 200px !important;
        background-position: center !important;
    }
   .rolling-news{
    height: 27px;
   }
} 

@media (max-width: 576px){
    .title-text{
        font-size: 32px;
    }
    .loan-stats{
        justify-content: center;
    }
    .loan-dept-chart{
        overflow: scroll;
    }
   
    .news-items {
        font-size: small;
    }
    .line-chart-title{
        font-size: small;
    }
} 
@media (max-width: 476px){
    .featureAlign{
        height: auto;
      }
    .title-text{
        font-size: 26px;
    }
} 
