@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #161616;
}

/* ---------------------- Common CSS Section Start ---------------------- */
:root {
  --themeColor: #a38eff;
  --darkColor: #070707;
  --semiDarkColor: #000000;
  --baseColor: #2e2e2e;
  --themeLight: #e3e3e3;
  --themeTextColor: #a1a0a0;
  --themeWhite: #ffffff;
  --tabColorOne: #1d1d1d;
  --tabBodyColorOne: #262626;
  --accordionArea: #070707;
  --overlayColor: #111111e2;
  --gradientColor: linear-gradient(90deg, rgba(110, 255, 255, 1) 0%, rgba(165, 139, 255, 1) 100%);
}

.common-btn {
  width: 180px;
  height: 50px;
  background: var(--gradientColor);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
}

.common-btn a {
  text-decoration: none;
  font-weight: 500;
  color: var(--darkColor);
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

.section-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

.section-head .icon {
  width: 60px;
  height: 60px;
  margin-right: 40px;
}

.section-head .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-head .section-title {
  color: var(--themeColor);
  text-transform: uppercase;
  position: relative;
}

.section-head .section-title::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #353535;
  border-radius: 50px;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.section-head .section-title::after {
  content: "";
  width: 20%;
  height: 5px;
  background-color: #9986ed;
  border-radius: 50px;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.tab-list {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.tab-list li {
  width: 50%;
  height: 80px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--semiDarkColor);
  box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.51);
  border-radius: 15px;
  text-align: center;
  color: var(--themeLight);
}

.tab-list li.active {
  height: 90px;
  border-radius: 15px 15px 0 0;
  box-shadow: none;
  background: var(--tabBodyColorOne);
}

.tab-list li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--themeColor);
}

.tab-content {
  width: 100%;
  height: auto;
  padding: 20px;
  background: var(--tabBodyColorOne);
  border-radius: 0 0 15px 15px;
}

/* ---------------------- Common CSS Section End ---------------------- */

/* ---------------------- Loading CSS Section Start---------------------- */
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

@keyframes loading-item {
  0% {
    transform: rotate(0deg)
  }

  50% {
    transform: rotate(180deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.loading-item div {
  position: absolute;
  animation: loading-item 1s linear infinite;
  width: 128px;
  height: 128px;
  top: 36px;
  left: 36px;
  border-radius: 50%;
  box-shadow: 0 6.4px 0 0 #a38eff;
  transform-origin: 64px 67.2px;
}

.loading-inner {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}

.loading-item {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.loading-item div {
  box-sizing: content-box;
}

/* ---------------------- Loading CSS Section End---------------------- */

/* ---------------------- Header CSS Section Start ---------------------- */
.navbar {
  width: 100%;
  height: 80px;
  padding: 0;
  margin: 0;
  background: var(--baseColor);
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transition: all 0.5s;
}

.navbar.active {
  box-shadow: 0px -3px 18px 0px rgba(94, 94, 94, 0.473);
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0px);
  transition: all 0.8s;  
}

.navbar .nav-menu {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .nav-menu .brand-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .nav-menu .brand {
  width: 72px;
  height: 72px;
}

.navbar .nav-menu .brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar .nav-menu .brand-info .author {
  padding-left: 10px;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
}

.navbar .nav-menu nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar .nav-menu nav ul li {
  display: inline-block;
  padding-left: 15px;
  transition: all 0.8s;
}

.navbar .nav-menu nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: var(--themeColor);
  position: relative;
  transition: all 0.8s;
}

.navbar .nav-menu nav ul li a:hover, 
.navbar .nav-menu nav ul li a.active {
  color: var(--themeWhite);
}

.nav-btn {
  color: var(--themeColor);
  display: none;
}

.navbar .hamburger{
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.navbar .hamburger .line {
  width: 28px;
  height: 2px;
  border-radius: 50px;
  background-color: var(--themeColor);
  display: block;
  transition: all 0.3s ease-in-out;
}

.navbar .hamburger:hover {
  cursor: pointer;
}

.navbar #hamburger-1 .line:nth-child(2) {
  width: 20px;
}

.navbar #hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.navbar #hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navbar #hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------------------- Header CSS Section End   ---------------------- */

/* ---------------------- Responsive Header CSS Section Start ---------------------- */
#custom-nav {
  width: 300px;
  height: calc(100% - 80px);
  background: var(--darkColor);
  border-right: 1px solid var(--themeColor);
  position: fixed;
  left: -300px;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  transition: all 0.5s;
}

#custom-nav.active {
  left: 0;
  transition: all 0.5s;
}

#custom-nav .custom-nav-inner ul {
  padding: 0;
  margin: 40px 0 20px 0;
  list-style: none;
  transition: all .5s;
}

#custom-nav .custom-nav-inner ul li {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  transition: all .5s;
}

#custom-nav .custom-nav-inner ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: var(--themeLight);
  transition: all .5s;
}

#custom-nav .custom-nav-inner ul li:hover {
  background: var(--gradientColor);
}

#custom-nav .custom-nav-inner ul li:hover a {
  color: var(--darkColor);
}

#custom-nav .custom-nav-inner ul li .icon {
  width: 30px;
  height: 30px;
}
#custom-nav .custom-nav-inner ul li .icon img {
  width: auto;
  height: 100%;
}

#custom-nav .common-btn {
  margin: 0 auto;
}

#custom-nav .legal {
  margin-top: 20px;
  text-align: center;
  color: var(--themeTextColor);
}
/* ---------------------- Responsive Header CSS Section End ---------------------- */

/* ---------------------- Banner CSS Section Start ---------------------- */
#banner {
  padding: 160px 0;
}

#banner .img-box {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 20px solid var(--themeColor);
  box-shadow: 0px 27px 24px 0px rgba(0, 0, 0, 0.35);
}

#banner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#banner .banner-info {
  width: 100%;
  padding-left: 40px;
}

#banner .banner-info h2 {
  color: var(--themeLight);
  line-height: 60px;
}

#banner .banner-info h6 {
  color: var(--themeColor);
}

#banner .banner-info h5 {
  color: var(--themeWhite);
}

#banner .banner-info p {
  color: var(--themeTextColor);
  margin-block: 30px;
}

#banner .banner-info .button-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

#banner .banner-info .button-group .common-btn i {
  padding-left: 10px;
}
/* ---------------------- Banner CSS Section End---------------------- */

/* ---------------------- About CSS Section Start ---------------------- */
#about {
  padding: 160px 0;
  background: var(--darkColor);
}

#about .about-info {
  text-align: justify;
  color: var(--themeTextColor);
  font-size: 16px;
}

#about .get-in-touch .box-label {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

#about .get-in-touch .box-label .icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

#about .get-in-touch .box-label .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#about .get-in-touch .box-label .label-info {
  width: calc(100% - 60px);
  font-size: 16px;
  color: var(--themeColor);
}

#about .get-in-touch .box-label .label-info a {
  font-size: 16px;
  text-decoration: none;
  color: var(--themeColor);
}

/* ---------------------- About CSS Section ---------------------- */

/* ---------------------- Education CSS Section Start ---------------------- */
#education {
  padding: 100px 0;
}

#education .edu-box {
  width: 100%;
  height: 180px;
  padding-top: 10px;
}

#education .edu-box .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 25px;
  left: 15px;
}

#education .edu-box h3 {
  color: var(--themeLight);
}

#education .edu-box p {
  font-size: 16px;
  color: var(--themeTextColor);
}

#education .edu-box h4 {
  color: var(--themeColor);
}

#education .edu-box .grade {
  font-size: 24px;
  font-weight: 500;
  color: var(--themeColor);
}

#education .edu-box:nth-child(odd) {
  width: 50%;
  padding: 0px 30px 0 0px;
  text-align: right;
  position: relative;
}

#education .edu-box:nth-child(odd)::before {
  content:"";
  width: 2px;
  height: 170px;
  background: var(--themeLight);
  position: absolute;
  right: 0;
  bottom: -10px;
}

#education .edu-box:nth-child(odd)::after {
  content:"";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--themeLight);
  position: absolute;
  right: -16px;
  top: -5px;
}

#education .edu-box:nth-child(even) {
  width: 50%;
  padding: 0px 0px 0 30px;
  text-align: left;
}
/* ---------------------- Education CSS Section ---------------------- */

/* ---------------------- Research CSS Section Start ---------------------- */
#research {
  padding: 100px 0;
  background: var(--darkColor);
}

#research .tab-content .team-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--themeLight);
  text-transform: uppercase;
}

#research .tab-content .team-img {
  width: 360px;
  height: 360px;
  border-radius: 10px;
  margin: 10px auto;
} 

#research .tab-content .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#research .tab-content .advisor-info .advisor-name {
  color: var(--themeLight);
  font-weight: 600;
}

#research .tab-content .advisor-info .advisor-title {
  color: var(--themeColor);
  font-size: 18px;
  font-weight: 300;
}

#research .tab-content .advisor-info .advisor-descroption{
  color: var(--themeTextColor);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

#research .tab-content .advisor-info .box-label {
  display: flex;
  justify-content:flex-start;
  align-items: center;
}

#research .tab-content .advisor-info .box-label .icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  margin-block: 20px;
}

#research .tab-content .advisor-info .box-label .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#research .tab-content .advisor-info .box-label .label-info {
  font-size: 20px;
  font-weight: 500;
  color: var(--themeColor);
}

#research .tab-content .advisor-info .box-label .label-info a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--themeColor);
}

#research .tab-content .interst-info .img-box {
  width: 100%;
  height: 250px;
  background: var(--themeWhite);
  overflow: hidden;
  margin-block: 10px;
  position: relative;
  z-index: 0;
  transition: all 0.3s;
}

#research .tab-content .interst-info .img-box .overlay {
  width: 100%;
  height: 100%;
  background: var(--overlayColor);
  color: var(--themeColor);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
}

#research .tab-content .interst-info .img-box .overlay .interest-in {
  color: var(--themeWhite);
  text-transform: uppercase;
  font-size: 20px;
}

#research .tab-content .interst-info .img-box :hover.overlay {
  opacity: 1;
  transition: all 0.3s;
}

#research .tab-content .interst-info .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#research .tab-content .interst-info .interested ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#research .tab-content .interst-info .interested ul li{
  color: var(--themeTextColor);
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#research .tab-content .interst-info .interested ul li .icon {
  width: 20px;
  height: 20px;
}


/* ---------------------- Research CSS Section End ---------------------- */

/* ---------------------- Publications CSS Section Start ---------------------- */
#publications {
  padding: 100px 0;
}

#publications .tab-content .publications-info ol {
  padding: 0;
  margin: 0;
  padding-left: 10px;
}

#publications .tab-content .publications-info li {
  text-align: justify;
  color: var(--themeTextColor);
  font-size: 16px;
  padding: 0 5px 0 20px;
  margin: 0 0 20px 0;
}

#publications .tab-content .publications-info li span {
  color: var(--themeColor);
  font-weight: 500;
  margin-bottom: 20px;
}

/* ---------------------- Publications CSS Section End ---------------------- */

/* ---------------------- Activities CSS Section Start ---------------------- */
#activities {
  padding: 100px 0;
  background: var(--darkColor);
}

#activities .tab-content .activities-info ol {
  padding: 0;
  margin: 0;
  padding-left: 10px;
}

#activities .tab-content .activities-info li {
  text-align: justify;
  color: var(--themeTextColor);
  font-size: 16px;
  padding: 0 5px 0 20px;
  margin-bottom: 20px;
}

#activities .tab-content .activities-info li span {
  color: var(--themeColor);
  font-weight: 500;
  margin-bottom: 20px;
}

/* ---------------------- Activities CSS Section End ---------------------- */

/* ---------------------- Others CSS Section Start ---------------------- */
#others {
  padding: 100px 0;
}

#others .accordion-area {
  background: transparent;
  /* padding: 0 20px; */
  border-radius: 15px;
  /* background-color: var(--darkColor); */
  /* box-shadow: 0px 0px 27px -14px rgba(0,0,0,0.50); */
}

#others .accordion-area .accordion-header {
  padding: 15px;
  cursor: pointer;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--themeColor);
  transition: all 0.5s;
}

#others .accordion-area .accordion-header::before {
  content: "×";
  color: var(--themeColor);
  padding-right: 40px;
  font-size: 28px;
  font-weight: 300;
  width: 20px;
  display: inline-block;
  transition: all 0.5s;
  position: relative;
  top: 2px;
}

#others .accordion-area .accordion-header.collapsed::before {
  content: "+";
  width: 20px;
  display: inline-block;
  font-size: 28px;
  transition: all 0.5s;
  position: relative;
  top: 2px;
}

#others .accordion-area .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0px 8px 19px -9px rgba(0, 0, 0, 0.40);
  margin-bottom: 8px;
  background-color: var(--accordionArea);
  border-left: 7px solid var(--themeColor);
}

#others .accordion-area .card .card-body {
  padding-top: 0;
  padding-left: calc(20px + 12px + 12px);
  color: var(--themeTextColor);
  font-size: 14px;
}

#others .accordion-area .card .card-body p {
  text-align: justify;
}

#others .accordion-area .card .card-body ol {
  
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

#others .accordion-area .card .card-body ol li.skills {
  padding: 0 0 0px 20px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}

#others .accordion-area .card .card-body ol li.skills ul {
  padding: 0 18px;
  margin: 0;
  list-style: square;
}

#others .accordion-area .card .card-body ol li.skills ul li{
  font-size: 14px;
  font-weight: 400;
}

#others .accordion-area .card .card-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#others .accordion-area .card .card-body ul li {
  padding-block: 5px;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

#others .accordion-area .card .card-body ul li .icon {
  width: 20px;
  height: 20px;
}

#others .accordion-area .card .card-body ul li ion-icon, #others .accordion-area .card .card-body ul li i {
  padding-inline: 10px 5px;
}
/* ---------------------- others CSS Section End ---------------------- */

/* ---------------------- Footer CSS Section Start ---------------------- */
footer {
  padding: 100px 0;
  background: var(--darkColor);
}

footer .footer-info {
  width: 100%;
}

footer .footer-info h3 {
  color: var(--themeLight);
  text-transform: uppercase;
  line-height: 40px;
}

footer .footer-info h6 {
  color: var(--themeColor);
}

footer .footer-info h5 {
  color: var(--themeWhite);
  font-weight: 300;
}

footer .footer-info .get-in-touch {
  margin-top: 20px;
}

footer .footer-info .get-in-touch .box-label {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

footer .footer-info .get-in-touch .box-label .icon {
  width: 24px;
  height: 24px;
}

footer .footer-info .get-in-touch .box-label .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .footer-info .get-in-touch .box-label .label-info {
  width: calc(100% - 24px);
  color: var(--themeTextColor);
  text-align: left;
}

footer .footer-info .get-in-touch .box-label .label-info a {
  text-decoration: none;
  color: var(--themeTextColor);
  text-align: justify;
}

footer .quick-link h4 {
  color: var(--themeColor);
  text-transform: uppercase;
}

footer .quick-link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer .quick-link ul li {
  padding-bottom: 12px;
  padding-left: 30px;
}

footer .quick-link ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--themeTextColor);
  font-size: 16px;
  position: relative;
}

footer .quick-link ul li a::before {
  content: "←";
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s;
}

footer .quick-link ul li a:hover {
  color: var(--themeColor);
}

footer .quick-link ul li a:hover::before{
  left: -20px;
  opacity: 1;
  transition: all 0.5s;
}

footer .location {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;  
}

footer .location iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

footer .follow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

footer .common-btn a {
  text-decoration: none;
  color: var(--darkColor);
}

footer .social-site {
  display: flex;
  justify-content: flex-start;
  align-items: center;  
  margin-top: 20px;
}

footer .social-site .find-here {
  font-size: 18px;
  font-weight: 500;
  color: var(--themeLight);
  margin-right: 20px;
  text-wrap: nowrap;
}

footer .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .social-link a {
  text-decoration: none;
  text-transform: uppercase;
  padding-inline: 15px;
  color: var(--themeColor);
}

footer .social-link a i {
  display: none;
}


/* ---------------------- Footer CSS Section End ---------------------- */

/* ---------------------- Legal CSS Section Start ---------------------- */
#legal {
  background: var(--baseColor);
}

#legal .legal {
  width: 100%;
  height: 50px;
  color: var(--themeTextColor);
  display: flex;
  justify-content: center;
  align-items: center;
}

#legal .scroll-top {
  width: 30px;
  height: 50px;
  padding-bottom: 20px;
  border: 2px solid var(--themeColor);
  border-radius: 50px;
  font-size: 24px;
  color: var(--themeColor);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
  transition: .5s;
}

#legal .scroll-top:hover {
  background: var(--gradientColor);
  border: none;
  color: var(--darkColor);
  transition: .5s;
}

/* ---------------------- Legal CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* =========================== Untitle Page End =========================== */

/* ---------------------- Responsive CSS Start ---------------------- */
@media (max-width: 1400px) {
  .navbar .nav-menu .brand-info .author {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  nav{
    display: none;
  }

  .nav-btn {
    display: block;
  }
  
}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
  #banner .inside-banner {
    gap: 20px;
  }

  #banner .banner-info {
    text-align: center;
    padding-left: 0px;
  }

  #banner .banner-info .button-group {
    justify-content: center;
  }

  #about {
    padding: 100px 0;
  }

  #about .get-in-touch {
    margin-top: 40px;
  }

  #education .edu-box p {
    font-size: 14px;
  }

  #education .edu-box h3 {
    font-size: 24px;
  }

  #education .edu-box h4 {
    font-size: 18px;
    line-height: 10px;
  }

  #research .tab-content .advisor-info {
    margin-top: 40px;
  }

  footer .social-site {
    gap: 20px;
  }

  footer .location {
    margin-top: 20px;
  }

  .get-cv .common-btn {
    margin: 20px auto 0 auto;
  }

  footer .social-site {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }

  #others .accordion-area .card .card-body ol {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
  }

  footer .quick-link {
    margin-top: 20px;
  }

  footer .social-link a span {
    display: none;
  }

  footer .social-link a i {
    display: block;
  }

  footer .follow {
    flex-direction: column;
    margin: 10px auto;
  }
}

@media (max-width: 576px) {

  .navbar .nav-menu .brand {
    width: 50px;
    height: 50px;
  }

  .navbar .nav-menu .brand-info .author {
    font-size: 24px;
  }

  #banner, #about, #education, #research, #publications, #activities, #others, footer {
    padding: 50px 0;
  }

  #banner .img-box {
    width: 360px;
    height: 360px;
  } 

  #about .get-in-touch .box-label .icon {
    margin-right: 0px;
  }

  #education .edu-box .grade {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  #education .edu-box h3 {
    font-size: 18px;
  }

  #education .edu-box p {
    font-size: 12px;
  }

  footer .social-site {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  .tab-list li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--themeColor);
  }

  .navbar .nav-menu .brand-info .author {
    font-size: 20px;
  }

  #banner .img-box {
    width: 300px;
    height: 300px;
    border: 5px solid var(--themeColor);
  } 

  #banner .banner-info h2 {
    color: var(--themeLight);
    line-height: 40px;
  }

  #banner .banner-info h5 {
    font-size: 16px;
    font-weight: 300;
  }

  #banner .banner-info p {
    font-size: 14px;
    margin-block: 10px;
  } 

  #banner .banner-info .button-group {
    margin-top: 20px;
  }

  #about .about-info {
    text-align: justify;
    color: var(--themeTextColor);
    font-size: 16px;
  }

  #education .edu-box h3 span {
    display: block;
    font-size: 12px;
    color: var(--themeTextColor);
    margin-top: 5px;
  }

  #research .tab-content .team-img {
    width: 300px;
    height: 300px;
  }

  #research .tab-content .advisor-info .box-label .label-info a{
    font-size: 16px;
    font-weight: 400;
  }

  #publications .tab-content .publications-info li {
    text-align: left;
  }

  #activities .tab-content .activities-info li {
    text-align: left;
  }

  #others .accordion-area .accordion-header {
    font-size: 16px;
  }

  #others .accordion-area .card .card-body ul li {
    font-size: 16px;
  }

  footer .social-site .find-here {
    margin-right: 0;
  }

  footer .social-site {
    flex-direction: column;
  }


  
}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */