
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4154f1; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #012970;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 14px;
  padding-bottom: 80px;
}
img{
  max-width: 100%;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* header */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 64px;
    vertical-align: middle;
}

#header {
    padding: 10px 0;
    padding-top:0;
}

.logo span {
    font-size: 25px;
    color: #1761a6;
    line-height: 1;
    padding: 8px 12px;
    margin-left: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    background: transparent;
    display: inline-block;
    border: 2px solid #04549e;
}

.header-navbar {
    background: #04549e;
    color: #fff;
}

.header-navbar #navbarRight .nav-item > a {
    color: #fff;
}

.header-navbar .left-info i {
    margin-right: 5px;
}

.header-navbar .left-info a {
    color: inherit;
}

.header-navbar .subscribe-btn {
    background: transparent;
    color: #fff;
    border-radius: 0;
    padding: 5px 12px;
    transition: .2s ease all;
    font-size: 14px;
    border: 1px solid #fff;
    font-weight: 500;
}

.header-navbar .subscribe-btn:hover {
    background: #fff;
    color: #04549e;
}
#navbarRight .dropdown-menu {
    background: #fff0f0;
}

#navbarRight .dropdown-menu > li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
#navbarRight .dropdown-menu > li > a{
    font-size:14px;
}

#navbarRight .dropdown-menu > li > a:hover {
    background: #222222;
    color: #fff;
}
.navbar-toggler-icon {
    background: none;
}

.navbar-toggler-icon i {
    font-size: 32px;
    color: #fff;
}

.navbar-toggler {
    border-color: #fff;
    padding: 5px 8px;
}
.cus-btn{
    color: #fff;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border: 2px solid #04549e;
    transition: .2s ease all;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.btn-style1 {
    background: #04549e;
}

.btn-style1:hover {
    background: transparent;
    border-color: #04549e;
    color: #04549e;
}

 .notification-box .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
  }

.btn-style2 {
    background: #222;
    border-color: #222;
}
.my-account-btn{
    width:50%;
}

.btn-style-login {
    background: #04549E;
    border-color: #04549E;
}

.btn-style-login:hover{
    background: #212a33;
    border-color: #212a33;
    color:#fff;
}

.btn-style2:hover {
    background: transparent;
    border-color: #222;
    color: #222;
}

.banner-box {
    height: 200px;
}

.banner-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}

.front-page {
    padding: 0px 0;
    padding-top: 15px;
}

.list-style1 {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hd-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
/* 
.list-style1 > li {
    position: relative;
}

.list-style1 > li:before {
    content: "\F6B9";
    font-family: 'bootstrap-icons';
    font-weight: normal;
    font-style: normal;
    transform: rotate(46deg);
    display: inline-block;
    font-size: 20px;
    color: #686363;
    position: absolute;
    left: 0;
} */


/* mentors list container css */


.mentors-list-container {
     /* margin-top:10px;  */
       margin-bottom:10px;  
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    height: 80px;
}

.mentors-list-container h3 {
    font-size: 18px;
    display: flex;
    text-align: center;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-top: none;
    margin-top: 0px;
    background: #04549e;
    color: #ffff;
    height: 100%;
}

.mentors-list-container .swiper {
    padding: 15px 0;
}

.mentors-list-container .swiper-slide {
    display: flex;
    justify-content: center;
}

.mentors-list-container .mentor-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 12px;
    min-width: 200px;
    width:100%;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

.mentors-list-container .mentor-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid #fff1f1;
    transition: transform 0.4s, border-color 0.4s;
}

.mentors-list-container .mentor-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mentors-list-container .mentor-card:hover img {
    transform: scale(1.1);
    border-color: #04549e;
}

.mentors-list-container .mentor-name {
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 3px;
    color: #012970;
}

.mentors-list-container .mentor-exp {
    font-size: 0.8em;
    margin-bottom: 2px;
    color: #000;
}

.mentors-list-container .mentor-type {
    font-size: 0.8em;
    color: #000;
}

.mentors-list-container .mentors-slider .monitor-slide-nav {
    position: relative;
}

.mentors-list-container .mentors-slider .swiper-button-next,
.mentors-slider .swiper-button-prev {
    color: #ffffff;
    background: #04549e;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin:20px -10px 0 -10px;
}

.mentors-list-container .mentors-slider .swiper-button-next:after,
.mentors-slider .swiper-button-prev:after {
    color: #fff;
    font-size: 15px;
}

.mentors-list-container .mentors-slider .monitor-slide-nav {
    position: relative;
    display: flex;
}



/* mentors list container css end  */


.scholar-profile-cat .scholars-auth {
    display: flex;
    padding-left: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.hd-btns .btn-wrapper{
    width: 25%;
}
.btn-wrapper {
    flex-basis: auto;
    cursor: pointer;
}

.scholar-profile-cat .scholars-auth .thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.widget-container {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px 15px;
    background: #fff1f1;
    margin-bottom: 20px;
}

.scholar-profile-cat .scholars-auth .cat-cont .auth-name {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.scholars-auth .icon-with-text {
    display: flex;
    font-size: 14px;
    color: #7c7676;
}

.scholars-auth .icon-text-list {
    padding: 0;
    display: flex;
}

.icon-with-text i {
    margin-right: 5px;
}
.view-all-projects{
    background: #04549e;
    padding: 5px;
    border-radius: 4px;
    font-size:15px;
    text-align:center;
    margin-bottom:8px;
}
.view-all-projects:hover{
    background: #000; 
}


.view-all-projects a{
 color:#ffff;
}

.projects h2{
    font-size:18px;
}
.projects h2 a{
    color:#013079;
}


.scholars-auth .icon-with-text:not(:last-child) {
    padding-right: 5px;
    border-right: 1px solid #ddd;
    margin-right: 5px;
}
/* .subscribe-btn {
    margin-bottom: 30px;
} */
.main-wrapper {
    position: relative;
}
/* .front-page .logo {
    position: absolute;
    top: 15px;
    left: 15px;
} */
.view-all-wrap {
    text-align: right;
}

.view-all-wrap a {
    text-decoration: underline;
}

/* .front-page .main-wrapper {
    margin-top: -73px;
} */

.post-cat-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 35px 0;
    justify-content: space-between;
}

.post-cat-item {
    width: calc(50% - 20px);
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    padding-top: 0;
}

.post-cat-item .cat-title {
    font-size: 20px;
    margin-left: -21px;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-top: none;
    margin-top: 0px;
}

.post-cat-item .post-list {
    padding-left: 15px;
}

.post-cat-item .post-list > li {
    margin-bottom: 5px;
}

.post-cat-item .post-list > li > a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.post-cat-item .post-list > li > a:hover {
    text-decoration: underline;
}
footer#footer {
    padding-top: 1rem;
    background: #222;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom:0.8rem;
    z-index:99;
}


.footer-menu {
    list-style: none;
}
.footer-subscribe-button{
    padding: 8px 12px 8px 12px;
    border: 1px solid #fff;
    color:#fff;
}

.footer-subscribe-button:hover{
    color:#05559F;
    border: 1px solid #05559F;
}

.footer-menu > li:not(:last-child) {
    padding-right: 8px;
    border-right: 1px solid #ddd;
    padding-left: 8px;
}

.footer-menu > li > a {
    color: #fff;
    display: inline-block;
    transition: .2s ease all;
}

.footer-menu > li:last-child {
    padding-left: 8px;
}

.footer-menu > li > a:hover {
    opacity: 0.8;
}
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.search-form{
    max-width: 500px;
    width: calc(100% - 260px);
    position: relative;
    background: #dfecf3;
    border-radius: 50px;
}

.search-form input[type="text"] {
    padding: 8px 16px;
    width: calc(100% - 60px);
    border-radius: 50px 0px 0 50px;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 44px;
    height: 36px;
}

.search-form button {
    position: absolute;
    right: 0;
    border-radius: 0px 50px 50px 0px;
    min-width: 60px;
    height: 100%;
    background: #04549e;
    border: 1px solid transparent;
    color: #fff;
}

.search-form input[type="text"]:focus {
    outline: none;
}


.suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

.suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
/* .search-form.active-search input[type="text"] {
    width: 300px;
    padding: 5px 24px;
    border: 1px solid #ddd;
} */

/* subscribe form */

.subscribe-form .cus-btn {
    display: inline-block;
}

.form-label {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1;
    color: #012970;
    font-weight:430;
    
}

.form-select{
    font-size:14px !important;
}

.form-control {
    font-size: 14px;
    color: #8c8c8c;
}

.reg-form-wrap {
background: #f5f5f9;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #cbcbcb;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-view-wrap {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    padding: 0;
    /* gap: 15px; */
}

.profile-view-wrap .left-col {
    flex-basis: auto;
    width: 50%;
    padding: 15px;
}

.profile-view-wrap  .right-col {
    flex-basis: auto;
    width: 50%;
    padding: 0px;
    height: 100%;
    border-left: 1px solid #ddd;
}

.profile-view-wrap .member-details {
      display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.profile-view-wrap .member-details .thumb-img {
   height: 100px;
    min-width: 120px;
    width: 120px;
    /* border: 1px solid #04549e; */
}

.profile-view-wrap .member-details .thumb-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.profile-view-wrap  .member-bio {
    padding: 15px;
    width: 100%;
    position: relative;
}



.member-bio .icon-text-list {
    display: flex;
    list-style: none;
    padding: 0;
}

.member-bio .icon-text-list .icon-with-text {
    margin-right: 5px;
    padding-right: 5px;
    border-right: 1px solid #ddd;
}

.member-bio .edit-profile{
    position: absolute;
    right: 0;
    width:180px;
    display:flex;
    justify-content:space-between;

}

.member-bio .edit-profile>a{
    color:#012970

}

.member-bio .icon-text-list .icon-with-text:last-child {
    margin: 0;
    border: none;
    padding: 0;
}
.mem-post-tabber {
    background: #04549e;
}

.mem-post-tabber .nav-link {
    border-radius: 0;
    background: transparent;
    color: #fff;
}

.mem-post-tabber .nav-link.active {
    background: #222;
}

div#documentAccordion .accordion-button {
    padding: 8px 12px;
    font-size: 14px;
}

.headingAccordianConatainer .mailTitle{
    width: 145px;
}

.headingAccordianConatainer .badge{
    background: #04549e;
}

div#documentAccordion {
    margin-bottom: 20px;
}

div#documentAccordion .content {
    padding: 15px 0;
}



.profile-view-wrap #v-pills-tabContent {
    height: calc(100% - 36px);
    position: relative;
}

.profile-view-wrap #v-pills-tabContent .tab-pane .btn-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
}

.profile-view-wrap #v-pills-tabContent .tab-pane {
    position: relative;
    height: 100%;
    padding: 20px 15px;
}

.subsCriberModal .modal-header{

    background-color: #04549e;
    color: #fff;

}

.subsCriberModal .subscribeBtn{
    background-color: #04549e;
    color: #fff;
}

/* login */
.login-form {
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 5px;
}
.login-wrap {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* post listing */

.listing-wrapper {}

.listing-wrapper .post-item {
    display: flex;
    align-items: anchor-center;
}

.listing-wrapper .post-item .post-thum {
    height: 60px;
    min-width: 60px;
    margin-right: 10px;
}

.listing-wrapper .post-item .post-thum img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}

.listing-wrapper .post-item .content h2 {
    font-size: 18px;
}
.listing-wrapper .post-item .content h2 a,
.scholar-profile-cat .scholars-auth .cat-cont .auth-name a {
    color: inherit;
}

.meta-text-list {
    display: flex;
    list-style: none;
    padding: 0;
    font-size: 12px;
    margin-bottom: 0;
    color:#000;
}

.detail-page .thumbnial-wrap img{
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;

}

.detail-page .thumbnial-wrap {
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.meta-text-list .icon-with-text:not(:first-child) {
    border-left: 1px solid #ddd;
    padding-left: 10px;
    margin-left: 10px;
}

.listing-wrapper .post-item:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.detail-page .meta-text-list {
     font-size: 14px;
    margin: 10px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.detail-content p {
    text-align: justify;
}

/* profile page */





/* profile page author css */

.profile-banner {
  position: relative;
}

.profile-banner .profile-baner-bg {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
    background-color: #04549e;
  background-blend-mode: overlay;
}

.profile-banner .profiler-details-wrap {
  margin-top: -120px;
  padding: 0 24px 24px 24px;
}

.profile-banner .profiler-details-wrap .profile-image {
  height: 160px;
  width: 160px;
  overflow: hidden;
  border-radius: 999px;
  border: 5px solid #fff;
}

.profile-banner .profiler-details-wrap .profile-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profile-banner .profile-content-box {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  margin-top: 20px;
  position:relative;
}


.organization-des {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.profile-banner .profile-content-box .left-box {
  flex-grow: 1;
}

.profile-banner .profile-content-box .right-box {
  /* flex-grow: 1; */
}

.profile-banner .profile-content-box .right-box .profile-btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space:nowrap;
}

.profile-banner .profile-content-box .right-box .profile-btn-wrap>.pr-btn {
  padding: 5px 10px;
  background: transparent;
  color: #04549e;
  border: 1px solid #04549e;
  border-radius: 9999px;
  /* min-width: 150px; */
  text-align: center;
  transition: .2s ease all;
  font-size: 14px;
}

.profile-banner .profile-content-box .right-box .profile-btn-wrap>.pr-btn i {
  margin-right: 5px;
}

.profile-banner .profile-content-box .right-box .profile-btn-wrap>.pr-btn:hover {
  color: #fff;
  background: #04549e;
  border-color: #04549e;
}

.profile-banner .profile-content-box .auth-name {
  font-size: 22px;
  color: #241a1a;
  margin-bottom: 0;
}
.profile-banner .publication-tag {
    display: flex;
    align-items: center;
}

.profile-banner .publication-tag>ul>li {
    display: inline-block;
}

.profile-banner .publication-tag>ul>li>a {
    color: #4c4747;
    padding: 5px 7px;
    font-size: 14px;
    position: relative;
}
.profile-banner .publication-tag > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0;
}

/* pagignation css  */

.pagination .page-item.active .page-link {
    background-color: #04549e !important;
    border-color: #04549e !important;
    color: #fff !important;
}
.pagination .page-link{
    color:#04549e !important;
}

/* pagignation css end */

.view-all-projects {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom:20px;
}


@media(max-width:1200px){
    .scholars-auth .icon-text-list {
    flex-wrap: wrap;
}

.scholars-auth .icon-with-text {
    font-size: 12px;
}
}

@media(max-width:991px){
    footer#footer .copyright {
    flex-direction: column;
}

footer#footer .copyright .footer-subscribe-button {
    display: inline-block;
    max-width: 280px;
    margin: 0 auto;
    margin-bottom: 20px;
    order: 1;
}

.footer-menu {
    justify-content: center;
    order: 3;
   padding:0;
}

footer#footer .copyright > p {
    order: 2;
}
body{
  padding-bottom:180px;
}

.login-wrap {
    height: calc(100vh - 440px);
}
.hd-top-wrap {
    justify-content: center !important;
    margin-top: 20px;
}

.hd-top-wrap .logo > span {
    display: none;
}

.hd-top-wrap .logo {
    position: absolute;
    top: 10px;
    left: 15px;
}

.logo img {
    max-height: 46px;
}
}

@media(max-width:767px){
    footer#footer .container {
    flex-wrap: wrap !important;
    justify-content: center !important;
}
.reg-form-wrap .submit-btn-box{
    margin-bottom:45px;
}

footer#footer {
    text-align: center;
}

.footer-menu {
    flex-wrap: wrap;
    justify-content: center;
}
.hd-top-wrap {
    flex-wrap: wrap;
    justify-content: center !important;
}

.logo {
    width: 100%;
    margin-bottom: 15px;
}

.search-form {
    width: 100%;
}
.profile-view-wrap .left-col {
    width: 100%;
}

.profile-view-wrap .right-col {
    width: 100%;
    padding-top: 50px;
    height: auto;
}

.profile-view-wrap {
    flex-direction: column;
}
body{
  padding-bottom:220px;
}
}

@media(max-width:500px){
    .post-cat-item {
    width: 100%;
}
}