h1{
  font-size: 45px;
    font-family: sans-serif;
}
h2{
  font-size: 30px;
    font-family: sans-serif;
}
p{
  font-size: 18px;
    font-family: sans-serif;
}
.top-bar {
    background-color: #51bed4;
    color: white;
    font-size: 0.9rem;
    padding: 0.8rem 4rem;
}
.top-bar a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}
.top-bar a:hover {
    text-decoration: underline;
}   
.header-main {
  padding: 1rem 1rem;
}

.logo-circle {
  background-color: #51bed4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  font-size: 1.3rem;
  user-select: none;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #000;
  padding: 1rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: #51bed4;
}
.banner-section {
  position: relative;
  background: url('Images/banner-2.jpg') no-repeat center center;
  background-size: cover;
  min-height: 60vh;
  /* padding: 90px 0; */
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.banner-section::before {
    content: "";
    position: relative;
    inset: 0;
    background: linear-gradient(#aaebffba, #466468a6);
    z-index: 0;
}

.banner-section > .container {
  position: relative;
  z-index: 1;
}

.button-banner a{
    padding-bottom: 12px;
    font-weight: 500;
}
.btn-outline-info{
    background-color: #51bed4 !important;
    color: #fff;
    font-weight: 500;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #399db1;
    margin: 10px 0;
}
.text-info{
    color: #399db1 !important;

}
.bg-info, .btn-info{
    background-color: #013252 !important;
}
.card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, 0.3); /* Bootstrap primary shadow */
    z-index: 2;
}
.list-of-journals-sec button.btn {
    font-weight: 600;
    padding: 8px 0;
}
.bg-darkblue{
   background-color: #57e3cfbd; 
}
.bg-purple{
   background-color: #8727aabf !important; 
}
.card-title{
    color: #399db1;
}
ul.line-height {
    line-height: 30px;
}
ul.line-height li a, footer p {
    color: #bababa !important;
    text-transform: lowercase;
}
footer h6{
    font-size: 22px;
}
/* CSS added in Blade code for bg image for testimonial */
/* .testimonial-area {
    background: linear-gradient(rgb(0 0 0 / 19%), rgb(0 0 0 / 19%)), url(Images/testimonial-bg.jpg) center center / cover no-repeat;
    background-color: #00000087;
    padding: 80px 0px 80px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 15;
} */
.conference-sec .card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  margin: 10px;
}

.conference-sec .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.conference-sec .card-body {
  padding: 25px;
}

.conference-sec .btn-info {
  background-color: #399db1;
  border: none;
  transition: all 0.3s ease;
}

.conference-sec .btn-info:hover {
  background-color: #2f8495;
  transform: scale(1.05);
}
.about-sec {
    padding: 100px 0px 100px;
}
section.features-area.pt-100.pb-70 {
    padding: 50px 0px 80px;
}
.features-item {
    background-color: #f3fcfd;
    padding: 35px 20px;
    margin-bottom: 30px;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.features-item:hover {
    background-color: #accdf7;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.features-item {
    background-color: #f3fcfd;
    padding: 35px 20px;
    margin-bottom: 30px;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.features-item .icon {
    margin-bottom: 20px;
    position: relative;
}
.features-item .icon {
    object-fit: cover;
    display: inline-block;
    text-align: center;
    color: #0fe7f9;
    background-color: #ffffff;
    border-radius: 50px;
    border: 1px dashed #0fe7f9;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 15px;
}
/* Fix for navbar on small devices */
@media (max-width: 991.98px) {
  .top-bar{
    display: none !important;
  }
    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 15px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-collapse {
        background-color: #ffffff;
        padding: 10px 0;
    }
}

@media (max-width: 575.98px) {
  .banner-section h1 {
    font-size: 19px;
  }
}