/* --------------------------Header---------------------------- */
.stickynavbar {
  background-color: #fff !important;
  z-index: 99;
  padding-top: 0 !important;
  box-shadow: 0 0 8px grey;
}
.sticky {
/*  position: fixed!important;*/
  top: 30px;
  width: 100%;
  padding-bottom: 0 !important;
}
.menubar {
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}
#header .logo, #footer .logo{
  margin:0;
}
#header .logo a {
  padding:0;
  font-size:30px;
  font-weight:bold;
  margin-top: 0;
}
.logo a.custom-logo-link {
  color:#000000;
}
.logo a {
  color: #000;
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: "Lobster";
}
.logo p {
  color: #000;
  margin-bottom: 0;
  font-size: 14px;
}
.scrolled {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background:#fff;
}
#masthead.scrolled {
  background: #ccc;
}
div#mySidenav {
  display: block;
}
/* ------------- Topbar ---------------- */
.main-navigation .current_page_item > a, 
.main-navigation .current-menu-item > a, 
.main-navigation .current-menu-ancestor > a, 
.main-navigation .current_page_ancestor > a {
  color: #261F35;
}
/*search bar*/
.search-input-wrapper {
    background: #F9F9FF;
    border: 1px solid #E2E5FF;
    border-radius: 8px;
    padding: 8px 8px 8px 15px;
}
.search-input-wrapper .search-field {
    width: 100%;
    border: none;
    font-size: 16px;
    outline: none;
    font-weight: 400;
    font-family: 'Inter';
    color: #B9B9DF;
    padding: 0px 5px 0px 20px;
    background: transparent;
}
.search-input-wrapper .search-field::placeholder{
  color: #B9B9DF;
}
.search-input-wrapper .search-submit {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    left: 25px;
}
.search-submit i {
    font-size: 16px;
    color: #7921DE;
}
a.tbr-btn.btn {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans';
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
    background: linear-gradient(257.87deg, #1B0C31 10.63%, #341344 95.22%);
}
.topbr-login-inn a {
    background: linear-gradient(257.87deg, #6B20DE 10.63%, #9E21DD 95.22%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans';
}
/*a.tbr-btn.btn:hover {
    background: #7921DE;
}*/
a.myaccount-link:hover {
    background: #000000;
    color: #ffffff;
}
/*----------------Menu bar-----------*/
.main-navigation a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-navigation a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #bc90ee, #FFF);
  top: 0;
  left: -100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, left 0.4s ease-in-out;
}

.main-navigation a:hover::before {
  opacity: 1;
  left: 0;
  transition: opacity 0.4s ease-in-out, left 0.4s ease-in-out;
  animation: gradientAnimation65 2.2s linear infinite;
}

@keyframes gradientAnimation65 {
  0% { left: 0; }
  50% { left: 100%; }
  100% { left: 0; }
}



@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

ul.list_nav {
  margin: 0 auto;
  text-align: center;
  display: block;
}
.main-navigation ul{
  list-style: none;
  margin: 0;
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
}
.main-navigation li{
  position: relative;
  display: inline-block;
}
.main-navigation ul li.menu-item-has-children > a:after {
  content: '\f107'; /* Font Awesome down arrow */
  font-family: 'FontAwesome';
  float: right;
  padding: 2px 3px;
}
.main-navigation li:last-child{
  border-right: none;
}
.main-navigation a {
    display: block;
    text-decoration: none;
    padding: 0;
    color: #28183A;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans';
}
.main-navigation a:hover,.main-navigation a:focus,.main-navigation a:active{
  color: #7921DE;
  font-weight: 600;
}
.main-navigation ul ul li a:hover{
  color: #ffffff;
}
/* Smooth background color transition on hover */
/* Base style for submenu items */
.main-navigation ul ul li {
  position: relative;
  padding: 12px 18px;
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

/* Hover effect with glow and scale */
.main-navigation ul ul li:hover {
  background: linear-gradient(135deg, #6A1B9A, #8E24AA);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(123, 31, 162, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Submenu container */
.main-navigation ul ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #F6F6F6;
  min-width: 215px;
  z-index: 9999;
  border-radius: 15px;
  padding: 12px 0;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Show submenu with animation */
.main-navigation ul li:hover > ul {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.main-navigation ul ul ul{
  left: 100%;
  top: 0;
}
.main-navigation ul ul a{
  text-transform: none;
  font-weight: 400;
  color: #28183A;
  font-size: 14px;
  line-height: 1.5;
}
.main-navigation ul ul li,
.menubar.scrolled .main-navigation ul ul li{
  float: none;
  display: block;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.main-navigation ul ul li:last-child{
  border-bottom: 0;
}
.main-navigation ul li:hover > ul{
  display: block;
}
.main-navigation .menu > ul > li.highlight{
  background-color: #ffffff;
}
.main-navigation .menu > ul > li.highlight:hover{
  background: transparent;
}
.menubar.scrolled .menu > ul > li:hover > a:after,
.menubar.scrolled .menu > ul > li.current_page_item > a:after,
.menubar.scrolled .menu > ul > li.current-menu-item > a:after{
  height: 2px;
}
.menu > ul > li.exoplanet-search:after{
  background: transparent !important;
}
/* .main-navigation ul ul li:hover > a{
  color: #000000;
} */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation{
  margin: 0 0 15px;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous{
  float: left;
  width: 50%;
}
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  float: right;
  text-align: right;
  width: auto;
}


/*---------------- Footer Section ----------------------*/
div#footer {
    background-size: cover;
    background-repeat: no-repeat;
}
p.ftr1-txt {
    color: #5C4968;
    font-size: 16px;
    font-weight: 400;
}
h4.ftr1-form-head{
  font-size: 20px;
  font-weight: 700;
  color: #28183A;
}
/*input[type="email"].ftr-mail {
    border-radius: 10px;
    color: rgba(38, 28, 45, 0.3);
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 400;
    background: #F5F5F5;
    border: none;
    width: 100%;
}
input[type="email"].ftr-mail::placeholder{
  color: rgba(38, 28, 45, 0.3);
}
input[type=submit].ftr-bbtn.btn {
    background: none;
    font-family: 'FontAwesome';
    background: linear-gradient(257.87deg, #6B20DE 10.63%, #9E21DD 95.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: absolute;
    right: -10px;
}*/
.footer-newsletter-form {
  position: relative;
}

.footer-newsletter-form {
  position: relative;
  max-width: 100%;
}

input[type="email"].ftr-mail {
  border-radius: 10px;
  color: rgba(38, 28, 45, 0.8);
  font-family: 'FontAwesome';
  font-size: 16px;
  font-weight: 400;
  background: #F5F5F5;
  border: none;
  width: 100%;
  padding: 18px 20px;
  box-sizing: border-box;
}

input[type="email"].ftr-mail::placeholder {
  color: rgba(38, 28, 45, 0.3);
}

input[type="submit"].ftr-bbtn.btn {
  font-family: 'FontAwesome';
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(257.87deg, #6B20DE 10.63%, #9E21DD 95.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  padding: 12px 3px;
  border-radius: 10px;
  position: absolute;
  right: 8px;
  top: 8px;
  /*transform: translateY(-50%);*/
  text-transform: capitalize;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}
.wpcf7 form {
  position: relative;
  min-height: 60px;
}


.footer-form {
    position: relative;
}
.copyright {
    background: #F5F5F5;
}
.footer-cols {
    padding-top: 20px;
    padding-bottom: 20px;
}
 ul#menu-footer-community li a:hover, ul#menu-footer-download li a:hover,ul#menu-footer-about li a:hover, ul#menu-footer-explore li a:hover, a.phone-ftr:hover, a.ftr-adrs:hover, a.phone-ftr:hover, p.ftr1-mail a:hover, p.ftr-mail a:hover, ul#menu-footer-company li a:hover, ul#menu-footer-services li a:hover{
  color: #7921DE;
}
.container.footer-cols h3 {
    font-size: 20px;
    font-weight: 700;
    color: #28183A;
    font-family: 'Play';
    padding-top: 0px;
}
ul#menu-footer-about li a,ul#menu-footer-explore li a,ul#menu-footer-community li a,ul#menu-footer-download li a{
    font-size: 16px;
    font-weight: 400;
    color: #5C4968;
    line-height: 50px;
}
#footer .copyright p {
    color: #28183A;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Be Vietnam Pro';
}
.ftr-socialbox i {
    font-size: 18px;
    color: #ffffff;
    padding: 10px 12px;
    width: 40px;
    height: 40px;
    background: #181332;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 8px;
}
a.ftr-facebook i {
    padding: 10px 15px;
}
#footer .copyright a {
  cursor: pointer;
}
#footer ul li{
  list-style:none;
  margin: 3px 0;
}
#footer ul {
    margin-left: 0;
    padding: 10px 0px;
}
div#footer_box {
    position: relative;
}
span.wpcf7-spinner{
  display: none;
}
aside#block-14 {
    margin-bottom: 10px;
}
.widget_recent_entries img {
  width: 100px;
}
/*-------------------------- Calendar widget --------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 1.75em;
  table-layout: fixed;
  width: 100%;
}
.widget.widget_calendar table {
  margin: 0;
}
.widget.widget_calendar td, .widget.widget_calendar tr, .widget.widget_calendar th {
  border: 1px solid #fff;
  color: #000000;
}
#footer .widget.widget_calendar td, #footer .widget.widget_calendar tr, #footer .widget.widget_calendar th {
    color: #000;
    padding: 2px;
}
.widget_calendar td,
.widget_calendar th {
  line-height: 1.5625;
  padding: 0;
  text-align: center;
}
.widget_calendar caption {
  font-weight: 900;
  margin-bottom: 0em;
  color: #000;
  padding-left: 15px;
  caption-side: top;
}
.widget_calendar tbody a {
  background-color: #bbb;
  color: #000;
  display: block;
  font-weight: 700;
}
.widget_calendar tbody a:hover,
.widget_calendar tbody a:focus {
  background-color: #686868;
  color: #fff;
}
.widget th,
.widget td {
  padding: 0.5384615385em;
}

/* ---------- Return to Top ------------ */

#return-to-top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background: #000000;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}
#return-to-top i {
  color: #fff;
  position: relative;
  top: 12px;
    left: 12px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 3px 7px;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}