@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Duru+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    min-height: 100vh;
}

h1,
h2 {
    color: #143658;
}

a {
    text-decoration: none;
}

.justified {
    text-align: justify;
}

/* header styling */

.quick-links-top {
    height: 48px;
    background-color: #143757;
    border-bottom: 2px solid #374d63;
}

.quick-links-top .container {
    height: 100%;
}

.quick-links-top .col {
    border-left: 1px solid #374d63;
}

.quick-links-top a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.quick-links-top p,
.quick-links-top a {
    font-size: 13px;
    color: #eee;
    margin-top: 12px;
}

@media only screen and (max-width: 992px) {
    .quick-links-top {
        display: none;
    }
}

/* navigation bar */

.navigation {
    height: 50px;
    background: #232323;
}

.brand {
    position: absolute;
    float: left;
    line-height: 48px;
    text-transform: uppercase;
    font-size: 1em;
    width: 40%;
    margin-top: 1px;
}

@media only screen and (max-width: 1192px) {
    .brand {
        font-size: 0.9em;
        width: 80%;
    }
}

@media only screen and (max-width: 480px) {
    .brand {
        font-size: 0.8em;
        margin-top: 3px;
    }
}

@media only screen and (max-width: 400px) {
    .brand {
        font-size: 0.6em;
    }
}

.brand a,
.brand a:visited {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

nav {
    float: right;
    width: 50%;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a,
nav ul li a:visited {
    display: block;
    padding: 0 10px;
    line-height: 48px;
    color: #eee;
    background: #232323;
    text-decoration: none;
    font-size: 0.75em;
}

nav ul li a {
    background: transparent;
    color: #FFF;
}

nav ul li a:hover,
nav ul li a:visited:hover {
    background: #143757;
    color: #ffffff !important;
}

.navbar-dropdown li a {
    background: #143757;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a {
    padding: 10px 15px;
    color: #999 !important;
    line-height: 20px;
}

.navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
}

/* Mobile navigation */

.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}

@media only screen and (max-width: 992px) {
    .nav-mobile {
        display: block;
    }

    .brand {
        margin-left: 1.5rem;
    }

    nav {
        float: none;
        width: 100%;
        padding: 50px 0 15px;
    }

    nav ul {
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a {
        padding: 15px;
        padding-left: 30px;
        line-height: 20px;
        background: #262626;
    }

    nav ul li ul li a {
        padding-left: 30px;
    }

    .navbar-dropdown {
        position: static;
    }

    .nav-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    .nav-main {
        position: absolute;
        right: 0;
        top: 0;
    }

   

    @media screen and (min-width:992px) {
        .nav-list {
            display: block !important;
        }
    }

    #navbar-toggle {
        position: absolute;
        left: 18px;
        top: 15px;
        cursor: pointer;
        padding: 10px 35px 16px 0px;
    }

    #navbar-toggle span,
    #navbar-toggle span:before,
    #navbar-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 3px;
        width: 30px;
        background: #ffffff;
        position: absolute;
        display: block;
        content: '';
        transition: all 150ms ease-in-out;
    }

    #navbar-toggle span:before {
        top: -10px;
    }

    #navbar-toggle span:after {
        bottom: -10px;
    }

    #navbar-toggle.active span {
        background-color: transparent;
    }

    #navbar-toggle.active span:before,
    #navbar-toggle.active span:after {
        top: 0;
    }

    #navbar-toggle.active span:before {
        transform: rotate(45deg);
    }

    #navbar-toggle.active span:after {
        transform: rotate(-45deg);
    }
}


/* image slider carousel*/

#carousel {
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
}

.carousel-item {
    height: 90vh;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1192px) {
    #carousel {
        max-height: 60vh;
        overflow: hidden;
    }

    .carousel-item {
        height: 60vh;
    }
}

@media screen and (max-width:992px) {
    #carousel {
        max-height: 50vh;
        overflow: hidden;
    }

    .carousel-item {
        height: 50vh;
    }
}


@media screen and (max-width:576px) {
    #carousel {
        max-height: 35vh;
        overflow: hidden;
    }

    .carousel-item {
        height: 35vh;
    }
}


/* about section index */

.about-index img {
    height: 210px;
    width: 200px;
}

@media screen and (max-width:992px) {
    .about-index img {
        height: 140px;
        width: 140px;
    }
}

.about-index h1 {
    font-family: "Duru Sans", sans-serif;
    font-weight: 400;
    position: relative;
    padding-left: 50px;
    display: inline-block;
}

.about-index h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
}

.about-index h2 {
    font-family: "Baskervville", serif;
    font-weight: 400;
}

.about-index p {
    text-align: justify;
}

@media (max-width: 768px) {

    .about-index h1 {
        position: static;
        padding-left: 0px;
    }

    .about-index h1::before {
        content: none;
    }
}

@media (max-width: 576px) {
    .about-index h1 {
        text-align: center;
    }
}


/* index about section tab */

.responsive-tabs {
    padding: 1rem 0;
}

.responsive-tabs .nav-tabs {
    display: none;
}

.tab-data a {
    color: #143658;
}

.nav-tabs .nav-link.active {
    background-color: #143658 !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 15px;
    transition: all 0.2s ease-in-out;
}

.nav-tabs .nav-link:hover {
    opacity: 0.8;
}

.tab-data .card-body {
    background-color: #f8f9fa;
}

.tab-content ul li {
    background-color: #f8f9fa;
}

.tab-pane .card-header {
    background-color: #143658;
}

.tab-pane .card-header:hover {
    background-color: #1a3a5a;
}

.tab-pane .card-header h5 a {
    color: #fff;
}

@media (min-width: 768px) {
    .responsive-tabs .nav-tabs {
        display: flex;
        justify-content: space-around;
    }

    .responsive-tabs .card {
        border: none;
    }

    .responsive-tabs .card .card-header {
        display: none;
    }

    .responsive-tabs .card .collapse {
        display: block;
    }
}

@media (max-width: 767px) {
    .responsive-tabs .tab-pane {
        display: block !important;
        opacity: 1;
    }
}

/* notice and circular section*/

.index-notifications .notice h3 {
    color: #fff;
    background-color: rgb(148, 77, 255);
}

.index-notifications .circular h3 {
    color: #fff;
    background-color: rgb(255, 117, 26);
}

.index-notifications .notice,
.index-notifications .circular {
    cursor: pointer;
}

marquee {
    max-height: 240px;
}

/* links and information section*/

.index-link-info {
    background-color: #143658;
    min-height: 50vh;
}


.index-management {
    min-height: 100vh;
}

.index-management .img-container {
    position: relative;
    overflow: hidden;
}

.index-management .member-img {
    transition: transform 0.3s ease;
}

.index-management .img-container:hover .member-img {
    transform: scale(1.2);
}

.profile-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.img-container:hover .profile-link {
    opacity: 1;
    transform: translateY(0);
}

a.btn {
    background-color: #143658;
    color: #fff;
    font-size: 14px;
}

a.btn:hover {
    background-color: #2d4f74;
    color: #eee;
}

/* contact us section */

.form-control:focus {
    outline: #143658;
    box-shadow: none;
    border-color: transparent;
}

::placeholder {
    color: #cacaca;
}

.form-control {
    border: 1px solid #eee;
    transition: border-color 0.2s ease;
}

.form-control:hover,
.form-control:focus {
    border-color: #ccc;
}

/* information index page */

.box {
    /* width: 100%; */
    position: relative;
    height: 10rem;
    margin-top: 2rem;
    display: grid;
    place-content: center;
    color: white;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle),
            #213,
            #112 5%,
            #112 60%,
            #213 95%);
    border: solid 5px transparent;
    border-radius: 2em;
    --gradient-border: conic-gradient(from var(--border-angle),
            transparent 25%,
            rgb(0, 64, 119),
            #888888 99%,
            transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    -webkit-animation: bg-spin 3s linear infinite;
    animation: bg-spin 3s linear infinite;
}

@-webkit-keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.box:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

.index-link-info i {
    position: absolute;
    font-size: 5rem;
    opacity: 0.05;
    top: 2rem;
    left: 1.2rem;
}


/* footer */

.footer-media-link a {
    border: 2px solid #fff;
}

.footer-media-link i {
    color: #fff;
}

.footer-media-link .fbook:hover i,
.footer-media-link .insta:hover i {
    color: #5697d4;

}

.footer-media-link .fbook:hover a,
.footer-media-link .insta:hover a {
    background-color: #fff;
}


/* page heading section */

.page-heading {
    /* background-color: #143658; */
    background: url('../images/other/heading-image.jpg');
    background-size: cover;
    color: #fff;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.page-heading i {
    position: absolute;
    font-size: 5rem;
    opacity: 0.1;
}

/* contact us */

section.contact-page-sec {
    padding: 60px 0;
    min-height: 75vh;
}

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: #143658;
    border-radius: 8px;
    padding: 30px 0px;
}

.contact-info-item:hover {
    background: #163d64;
}

.contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
}

.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #999999;
    font-size: 14px;
    display: inline-block;
    width: 100%;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}

/* no content page */

.no-content-page {
    min-height: 25vh;
}


/* members */

.image-container img {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

/* table */

table tr {
    height: 50px;
}

tr:nth-child(even) {
    background-color: #14375707;
}

table tr td,
table tr th {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-wrap: wrap;
}

table tr td {
    color: #777;
}

table tr th {
    background-color: #143757;
    color: #ddd;
}


@media only screen and (max-width: 576px) {
    .table-container {
        overflow-x: auto;
    }
}

/* alert message */

#msg {
    display: none;
}

/* result */
#result-container {
    display: none;
}

.result-marks tbody th {
    padding-left: 20px;
    font-weight: 500;
    font-size: 13px;
    color:#143658;
}

/* contact us link handle in navigation part */

#link-top-contact-us {
    display: none;
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
    #link-top-contact-us {
        display: inline-block;
    }

    #main-nav-contact-us {
        display: none;
    }
}