/* heading font size goes here */
h1{
    font-size: 35px;
}
h2{
    font-size: 30px;
}
h3{
    font-size: 25px;
}
h4{
    font-size: 22px;
}
/* end heading style here */

/* header area goes here */
/* header area */
.header-back {
    background-color: #008000 !important; /* classic green */
}

.header-navbar-fonts {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Logo text styling */
.header-navbar-fonts h3 {
    font-size: 28px;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Navbar links */
.header-navbar-fonts ul li a {
    font-size: 18px;
    color: white !important;
    transition: all 0.3s ease;
    padding: 10px 15px;
}

/* Hover underline */
.header-navbar-fonts ul li a:hover {
    border-bottom: 2px solid white;
    text-decoration: none;
}

/* Fix active transform (with correct unit) */
.active a:active {
    transform: translateY(-1px);
}

/* Mobile responsive tweaks */
@media (max-width: 576px) {
    .header-navbar-fonts h3 {
        font-size: 20px;
    }

    .header-navbar-fonts ul li a {
        font-size: 16px;
        padding: 8px 10px;
    }
}
/* header area go to end here */


/* sidebar area goes here */
.sidebar {
    padding: 0;
    margin-top: 1px;
    height: auto; /* Adjusted to auto */
    min-height: 100vh; /* Ensures sidebar takes at least full viewport height */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: #fff;
}

.sidebar-header{
    background: #2c3e50;
    font-size: 22px !important;
}

.sidebar ul{
    background-color: #ffffff;
}

.sidebar ul li{
    border-bottom: 1px solid rgb(192, 190, 190);
}

.sidebar ul li a{
    font-size: 16px !important;
    color: black;
}

.sidebar ul li a:hover{
    background: #3e5770;
    padding-left: 15px;
    font-size: 14px;
    color: #ffffff;
}

/* sidebar hide and show toggle buttons */
.close-btn {
    background-color: transparent;
    color: white;
    border: none;
}

.show-btn {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: rgb(214, 209, 209);
    width: 60px !important;
    color: rgb(121, 117, 117);
    border-radius: 5px;
    border: 1px solid rgb(11, 132, 148);
}

.show-btn:hover{
    background-color: #2c3e50;
    color: white;
    transition: all 1s;
    border: 1px solid white;
}

.show-btn i{
    font-size: 25px !important;
    width: 30px !important;
}

.show-sidebar{
    transition: all .3s;
    transform: translate(0) !important;
    height: auto; /* Ensures sidebar adjusts height */
}
/* sidebar area go to end here */

/* all page style goes here */
.home-div{
    /*background-image: url(../Images/banner.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    width: 100%;
    height: auto; 
}

.in-ad-ap{
    z-index: 10 !important;
    height: 120px !important;
    background-color: #ff0000; 
    
}

.in-ad-ap h3{
    margin-top: 25px;
    padding-top: 2%;
    border-style: solid;
    height: 80%;
}

.paragraph{
    height: 250px;
    padding: 70px;
    font-size: 25px;
    background: rgb(196, 196, 196);
}

.faculty{
    width:100%;
    padding-right:15px;
    padding-left:15px;
    margin-right:auto;
    margin-left:auto;
}

.academic-area-headings{
    width: 100%;
    background-color: #dad4d4ab;
}

.academic-area-headings h4{
    font-family: sans-serif;
    color: rgb(73, 71, 71);
    font-size: 35px;
    margin-left: 110px;
}

.dean-message-heading{
    color: #5e0209;
    font-size: 30px;
}

.admin-dashboard{
    margin-top: 1px !important;
    background: #2c3e50 !important;
    border-radius: 3px;
}

/* all page style go to end here */

/* login page style goes here */
.login-background {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.overlay {
    background-color: #000000ab;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-attachment: fixed;
}

.login-div {
    background: #ff0000;
    margin: 25px auto;
    border-radius: 100px 5px !important;
    padding-bottom: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.login-padding {
    padding: 15px 30px 20px 30px;
}

.logo-div {
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.login-padding h2 {
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 24px;
    color: white;
}

.login-padding label {
    color: white;
    font-size: 14px;
}

.btn-white {
    margin-top: 5px;
    border: 1px solid white;
    color: white;
    padding: 10px;
    transition: 0.3s;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Responsive design */
@media (max-width: 576px) {
    .login-div {
        margin: 20px auto;
        border-radius: 40px 10px !important;
        padding: 10px;
    }

    .login-padding {
        padding: 10px 20px;
    }

    .login-padding h2 {
        font-size: 20px;
    }

    .btn-white {
        font-size: 14px;
        padding: 8px;
    }

    .form-control {
        font-size: 14px;
    }
}
/* login page style ends here */


/* table style goes here */
.table-elements tr, td, th{
    font-size: 13px;
    border: 1px solid rgb(194, 193, 193);
    padding-left: 10px !important;
}

.table-one{
    background: #eb1811b6;
}

.table-one-tr tr:hover{
    background: #eb3a34b6;
    color: white;
}
.table-two{
    background: #51b5e4;
}

.table-two-tr tr:hover{
    background: #51b5e4;
    color: white;
}
.table-three{
    background: #2c3e50 !important;
}
.table-three-tr tr:hover{
    background: #3e5770;
    color: white;
}
.table-four{
    background: #e70db8b6;
}
.table-four-tr tr:hover{
    background: #e238bdb6;
    color: white;
}
.table-five{
    background: #3e9225fd;
}
.table-five-tr tr:hover{
    background: #3e9225e1;
    color: white;
}
.table-six{
    background: #5e020af5;
}
.table-six-tr tr:hover{
    background: #5e020ae0;
    color: white;
}
.table-tr-head{
    height: 45px !important;
    padding: 10px !important;
    margin-top: 5px !important;
}

.tr-height{
    padding: 100px !important;
}

.table-font-for-transcript td, th{
    font-size: 16px !important;
}
/* table style goes here */

/* media query goes here */
/*tablets*/

/*desktop*/
@media (min-width: 768px){
    .button-show {
        display: none;
    }
}
/*phone*/
@media (max-width: 768px){
    .sidebar{
        transform: translate(-100%);
        transition: all .3s;
    }

    .show-sidebar{
        position: sticky !important;
    }

    .page-content-index{
        transition: .3s;
    }
}

@media only screen and (max-width: 600px) {
    .paragraph{
        padding: 25px !important;
        text-align: justify;
        height: 150px !important;
        font-size: 18px !important;
    }
    .in-ad-ap{
        height: 280px !important;
    }
    .card-margin{
        margin-bottom: 15px !important;
    }
}

@media only screen and (max-width: 660px) {
    .paragraph{
        padding: 25px !important;
        text-align: justify;
        height: 150px !important;
        font-size: 18px !important;
    }
    .in-ad-ap {
        font-size: 10px !important;
        height: 285px !important;
    }
    .card-margin{
        margin-bottom: 15px !important;
    }
}

@media only screen and (max-width: 805px) {
    .paragraph{
        padding: 25px !important;
        text-align: justify;
        height: 150px !important;
        font-size: 18px !important;
    }
    .in-ad-ap {
        font-size: 10px !important;
        height: 285px !important;
    }
    .card-margin{
        margin-bottom: 15px !important;
    }
}

@media only screen and (max-width: 992px) {
    .paragraph{
        padding: 25px !important;
        text-align: justify;
        height: 150px !important;
        font-size: 18px !important;
    }
    .in-ad-ap {
        height: 110px !important;
    }
    .in-ad-ap h3{
        padding-top: 10px;
        font-size: 22px !important;
    }
    .card-margin{
        margin-bottom: 15px !important;
    }
}

@media only screen and (max-width: 768px) {
    .paragraph{
        padding: 25px !important;
        text-align: justify;
        height: 150px !important;
        font-size: 18px !important;
    }
    .in-ad-ap {
        height: 250px !important;
    }
    .in-ad-ap h3{
        padding-top: 10px;
        font-size: 22px !important;
    }
    .card-margin{
        margin-bottom: 15px !important;
    }
}
input[type="date"]::-webkit-datetime-edit, input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-clear-button {
    color: #fff;
    position: relative;
}
  
input[type="date"]::-webkit-datetime-edit-year-field{
    position: absolute !important;
    border-left:1px solid #8c8c8c;
    padding: 2px;
    color:#000;
    left: 56px;
}
  
input[type="date"]::-webkit-datetime-edit-month-field{
    position: absolute !important;
    border-left:1px solid #8c8c8c;
    padding: 2px;
    color:#000;
    left: 26px;
}
  
input[type="date"]::-webkit-datetime-edit-day-field{
    position: absolute !important;
    color:#000;
    padding: 2px;
    left: 4px;
}

/*CARD*/
.card {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
    }
.card h5 {
    font-size: 1.3rem;
    font-weight: bold;
        }
.card p {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
        }
.card ul {
    list-style: none;
    padding: 0;
    font-size: 1.3rem;
    font-weight: bold;
        }


/* ---------- PHONES ---------- */
@media (max-width: 600px) {
    .in-ad-ap {
        height: 280px !important;
        font-size: 10px !important;
    }

    .in-ad-ap h3 {
        font-size: 18px !important;
    }
}

/* Date Input Styling */
input[type="date"].form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 8px;
  color: #212529;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* Focus state */
input[type="date"].form-control:focus {
  border-color: #007bff;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Minimal override of Chrome spin/clear */
input[type="date"].form-control::-webkit-inner-spin-button,
input[type="date"].form-control::-webkit-clear-button {
  display: none;
}

/* Optional: calendar icon hover effect */
input[type="date"].form-control::-webkit-calendar-picker-indicator:hover {
  opacity: 0.8;
}
/* Date ends here
/*CARD*/
.card {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
    }
.card h5 {
    font-size: 1.3rem;
    font-weight: bold;
        }
.card p {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
        }
.card ul {
    list-style: none;
    padding: 0;
    font-size: 1.3rem;
    font-weight: bold;
        }