:root{
    --pc :#2980b9  ;
    --sc : #0984e3;
    --tc :#95a5a6 ;
    --dc : #2c3e50;
    --wc : #ecf0f1;
    --twc : #fff;
    --tdc : #34495e;
}

 html {
    scroll-behavior: smooth;
  }
  
  section{
        scroll-margin-top: 40vh ;

  }

body{
  background-color: var(--wc);   
  overflow-x: hidden;    
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
}

#nav_bar{
    position: sticky;
    top: 0;
    background-color: var(--wc);
}

.nav a{
    color : var(--tdc);
}

.nav_cover{
    width: 100%;
    background-color: var(--pc);
    display: flex;
    justify-content: center;
    align-items: center;
    padding:2vh 0vh 2vh 0vh ;
    z-index: 1000;
}

.nav_logo{
    display: none;
}

.dept_name {
  font-size: 1.4rem;
  color: var(--pc);
  font-weight: 700;
} 



.section{
    background-color: red;
    height: 500vh;
}

.dropdown ul{
    background-color: rgba(255, 255, 255,.60);
    backdrop-filter: blur(5px);
    box-shadow: .5vh .5vh 2vh var(--dc) ;
    z-index: 1000;
}

.dropdown ul li a:hover{
background-color: var(--wc);
}



#nav_bar {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hide-navbar {
  opacity: 0;
  transform: translateY(-100%);
}

.show-navbar {
  opacity: 1;
  transform: translateY(0);
}



/* Glass dropdown */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.1); /* transparent glass */
  backdrop-filter: blur(8px);
  border: 1vh solid rgba(255, 255, 255);
  position: relative;
  overflow: hidden;
}


/* Light passing effect behind content */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 10%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(25deg);
  filter: blur(2vh);
  animation: lightPass 2s linear infinite;

  /* send behind content */
  z-index: 0;
  pointer-events: none;
}

/* Ensure dropdown items stay above the light */
.dropdown-item {
  position: relative;
  z-index: 1; /* above the light */
}

/* Animation for light passing */
@keyframes lightPass {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}




.slideshow {
  position: relative;
  height: 50vh;
  overflow: hidden; /* ensures zoomed image doesn't overflow */
}

.slideshow::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url(img/slide2.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transition: transform 1s ease-in-out;
  z-index: -1; /* behind the content */

  /* Color overlay */
  background-color: #00000072; /* dark filter */
  background-blend-mode: overlay; /* blends color with image */
}

.slideshow:hover::before {
  transform: scale(1.2); /* zoom effect on hover */
}


.slideshow_content {
  position: absolute;        
  top: 60%;                   
  left: 50%;                  
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--wc);          
  z-index: 10;                /* on top */
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.3); 
  border-radius: 8px; 
  backdrop-filter: blur(4px);
  overflow: hidden;           /* contain light effect */
}

.slideshow_content::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 15%;                  /* width of light streak */
  height: 200%;
  background: rgba(255, 255, 255, 0.3); /* soft white light */
  transform: rotate(25deg);
  filter: blur(2vh);
  animation: lightPass 5s linear infinite;
  z-index: 0;                  /* above background but below text */
  pointer-events: none;  
}

 .custom-btn {
    border-width: 2px;
    transition: all 0.3s ease;
  }
  .custom-btn:hover {
    background-color: white;
    color: black !important;
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
  }



.navbar-nav > li > a:hover 
{
  color: var(--pc);
  border-bottom: 2px solid var(--pc);
}





.notice_content
{
  background-color: var(--wc);
  padding: 1vw;
  border-radius: 2vh;
  transition: .3s;
    position: relative;
  overflow: hidden; /* keep shine inside */

}

.notice_content h1{
  font: .5rem;
}

.notice_content:hover
{
  transform: scale(1.02);
}


.notice_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%; /* start outside */
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg); /* slanted shine */
  z-index: 1;
}



.notice_content:hover::before {
  animation: shine 1s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}



.welcome
{
  text-align: center;
  background-color : var(--wc);

}

.chairman_info .post
{
  color: var(--sc);
}

.chairman_info span p{
  color: var(--sc);
}

.chairman_info .image
{
  display: inline-block;
  width: 20vh;
  height: 20vh;
  border-radius: 50%;
  background-image: url(img/chairman.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border: 1vh solid var(--pc);
  margin : 5vh;
}

.chairman_info .image img{
  width: 20vh;
}


.welcome-info
{
text-align: center;
background-color: var(--pc);
padding: 2vh;
color : var(--twc);
border-radius: 5vh 5vh 0vh 0vh;

}

.welcome-info h1{

  font-weight: 1000;
  color: var(--twc);
}



.devide{
  display: flex;
  justify-content: center;
  align-items: center;
  margin : 3vh;
}


.devide .bar{
  display: inline-block;
  height: .5vh;
  width: 10vw;
  margin-left: 5vh;
  margin-right: 5vh;
  border-radius: 5vh;
  background-color: white;

}

.devide i{
  animation: star_rotate 10s linear infinite ;
}


@keyframes star_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.about{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  overflow: hidden;
  border-radius: 10vh;
  transition: .4s;
  background-color: var(--wc);
}

.about:hover{
  transform: scale(1.02);
}

.about .about-content h1{
  color: var(--sc);
}

.about .image img
{
  width: 40vw;
  height: 50vh;
  border-radius: 10vh 0vh 0vh 10vh;
  overflow: hidden;

}




/* Light-passing hover template */
.shine {
  position: relative;
  overflow: hidden;              /* keep sweep inside */
  z-index: 0;                    /* create a stacking context */
  --shine-angle: 75deg;          /* tweak if you like */
  --shine-opacity: .45;          /* 0–1 */
  --shine-width: 55%;            /* sweep thickness */
  --shine-duration: 1500ms;       /* animation time */
}

.shine::after {
  content: "";
  position: absolute;
  inset: -10% calc(-1 * var(--shine-width)) -10% calc(-1 * var(--shine-width));
  background: linear-gradient(
    var(--shine-angle),
    transparent,
    rgba(255,255,255,var(--shine-opacity)),
    transparent
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;          /* never block clicks/hover */
  mix-blend-mode: screen;        /* bright white sweep effect */
}

/* trigger on hover + keyboard focus */
.shine:hover::after,
.shine:focus-visible::after {
  animation: shine-sweep var(--shine-duration) ease-out forwards;
}

@keyframes shine-sweep {
  to { transform: translateX(140%) skewX(-20deg); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shine:hover::after,
  .shine:focus-visible::after { animation: none; }
}


/* Dark shine effect for light cards */
.shine-dark-on-light {
  position: relative;
  overflow: hidden;              
  z-index: 0;                    
  --shine-angle: 75deg;          
  --shine-opacity: 0.15;        /* subtle dark overlay */
  --shine-width: 60%;            
  --shine-duration: 1500ms;       
}

.shine-dark-on-light::after {
  content: "";
  position: absolute;
  inset: -10% calc(-1 * var(--shine-width)) -10% calc(-1 * var(--shine-width));
  background: linear-gradient(
    var(--shine-angle),
    transparent,
    rgba(0,0,0,var(--shine-opacity)),
    transparent
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;          
  mix-blend-mode: multiply;      /* dark effect on light background */
  border-radius: inherit;        /* matches parent border radius */
}

/* trigger on hover + keyboard focus */
.shine-dark-on-light:hover::after,
.shine-dark-on-light:focus-visible::after {
  animation: dark-shine-sweep var(--shine-duration) ease-out forwards;
}

@keyframes dark-shine-sweep {
  to { transform: translateX(140%) skewX(-20deg); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shine-dark-on-light:hover::after,
  .shine-dark-on-light:focus-visible::after { animation: none; }
}



.faculty
{
  background-color: var(--wc);
  text-align: center;
    padding: 5vh;


}

.faculty-start
{
  text-align: center;
  background-color: var(--pc);
  color: var(--wc);
  padding: 2vh;
  border-radius: 5vh 5vh 0vh 0vh;
  margin-top : 10vh;
}

.fa-calendar-alt
{
  color : var(--pc);  
}



  footer {
    background: #111827;
    color: #d1d5db;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
  }

  footer .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  footer h3 {
    color: #f9fafb;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
  }

  footer h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #3b82f6;
    margin-top: 6px;
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  footer h3:hover::after {
    width: 80px;
  }

  footer ul {
    list-style: none;
    padding: 0;
  }

  footer ul li {
    margin-bottom: 10px;
  }

  footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
  }

  footer ul li a:hover {
    color: #3b82f6;
    padding-left: 6px;
  }

  footer .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #9ca3af;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  footer .social-icons a:hover {
    color: #3b82f6;
    transform: scale(1.2);
  }

  footer .bottom-bar {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: #9ca3af;
  }

  /* Responsive */
  @media (max-width: 600px) {
    footer {
      text-align: center;
    }
    footer .social-icons {
      margin-top: 10px;
    }
  }

  #facultyRow .faculty-card
{
  transition: .4s;
}

  #facultyRow .faculty-card:hover
  {
    transform: scale(1.03);
  }


.research-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pc), var(--sc), var(--dc));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.research-section::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -20%;
  left: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 70%);
  animation: float 10s infinite linear;
}

@keyframes float {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.research-title {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.research-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.research-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  transform: translateY(0);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.research-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.research-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.research-card p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.btn-explore {
  display: inline-block;
  padding: 10px 20px;
  background: var(--wc);
  color : var(--tdc);

  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: var(--pc);
  color : var(--twc);
  transform: scale(1.05);
}






/* Publications Section */
.publications {
  position: relative;
  overflow: hidden;
}

/* Card Styling */
.pub-card {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pub-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.2);
}

/* Tag Badges */
.pub-tag {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s ease;
}

.pub-card:hover .pub-tag {
  transform: scale(1.1);
}

/* Card Title */
.pub-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.pub-card:hover .card-title {
  color: #ff6b6b;
}

/* Card Text */
.pub-card .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Buttons */
.pub-card .btn {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pub-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pub-card .card-title {
    font-size: 1rem;
  }
  .pub-card .card-text {
    font-size: 0.85rem;
  }
  .pub-card .btn {
    font-size: 0.75rem;
  }
}





.statistics {
  background: linear-gradient(135deg, var(--wc), var(--twc));
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.statistics h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--sc);
  position: relative;
}

.statistics h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--pc);
  margin: 10px auto 0;
  border-radius: 2px;
}

.stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-card .icon {
  font-size: 3rem;
  color: var(--pc);
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.stat-card:hover .icon {
  transform: rotate(20deg) scale(1.2);
}

.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #333;
}

.stat-card p {
  font-size: 1rem;
  color: #777;
}

@media (max-width: 768px) {
  .stat-card {
    padding: 25px 15px;
  }

  .stat-card .icon {
    font-size: 2.5rem;
  }

  .stat-card h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stat-card {
    padding: 20px 10px;
  }

  .stat-card .icon {
    font-size: 2rem;
  }

  .stat-card h3 {
    font-size: 1.8rem;
  }
}


/* Publisher styling */
.publisher {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  font-style: italic;
}

/* See All button */
.btn-see-all {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-see-all:hover {
  background: linear-gradient(45deg, #0056b3, #0099cc);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}





.vision-mission {
  background: linear-gradient(135deg, #f9f9ff, #eef5ff);
}

.vision-card, .mission-card {
  border-radius: 20px;
  border: none;
  position: relative;
  transition: all 0.4s ease-in-out;
  background: white;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.text-gradient {
  background: linear-gradient(45deg, #ff4b2b, #ff416c, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card ul li {
  margin-bottom: 8px;
  list-style: "✅ ";
}

.icon-box {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}




.achievements {
  background: #f8f9fa;
}

.achievements h2 {
  font-size: 2.5rem;
  color: #333;
}

.achievement-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.achievement-card .icon-box {
  font-size: 3rem;
  margin-bottom: 15px;
}

.achievement-card h4 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.achievement-card p {
  font-size: 0.9rem;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

/* Colorful Gradients */
.gradient-1 {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.gradient-2 {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.gradient-3 {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.gradient-4 {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}




.team-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #343a40;
}

.team-btn {
  border: 2px solid #0d6efd;
  background: #fff;
  color: #0d6efd;
  font-weight: 600;
  margin: 0 5px;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.team-btn.active, .team-btn:hover {
  background: #0d6efd;
  color: #fff;
}

.group-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #6610f2;
  position: relative;
}
.group-title::after {
  content:"";
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  display:block;
  margin-top:6px;
  border-radius:2px;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  text-align: center;
  transition: all 0.4s ease;
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.team-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Shine animation */
.shine-dark-on-light {
  position: relative;
  overflow: hidden;
}
.shine-dark-on-light::after {
  content:"";
  position: absolute;
  inset: -10% -50%;
  background: linear-gradient(75deg, transparent, rgba(0,0,0,0.12), transparent);
  transform: translateX(-150%) skewX(-20deg);
  pointer-events: none;
  mix-blend-mode: multiply;
  transition: transform 1s ease;
}
.shine-dark-on-light:hover::after {
  transform: translateX(150%) skewX(-20deg);
}


.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Active button styling */
.team-btn.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}



.research-section {
  font-family: 'Roboto', sans-serif;
}

.research-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border-radius: 12px;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.card-icon {
  font-size: 2rem;
}

.publisher {
  font-size: 0.85rem;
  color: #555;
}

.btn-outline-primary, .btn-outline-success, .btn-outline-warning, .btn-outline-danger {
  transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-success:hover, .btn-outline-warning:hover, .btn-outline-danger:hover {
  transform: scale(1.05);
  text-decoration: none;
}




.bu-research-card {
  
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}

.bu-research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
  background: #f8f9fa;
}

.bu-card-icon {
  font-size: 2.2rem;
  transition: transform 0.4s ease;
}


.bu-publisher {
  font-size: 0.85rem;
  color: #555;
}

.bu-research-title {
  color: #333;
}

.bu-research-subtitle {
  color: #666;
}

.btn-outline-primary, .btn-outline-success, .btn-outline-warning, .btn-outline-danger, .btn-outline-info {
  transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-success:hover, .btn-outline-warning:hover, .btn-outline-danger:hover, .btn-outline-info:hover {
  transform: scale(1.05);
  text-decoration: none;
}


#pubSearch::placeholder {
  color: #6c757d;
  font-style: italic;
}

#pubFilter {
  background-position: right 1rem center;
  background-size: 16px 16px;
  margin: 5vh;
}

@media (max-width: 767.98px) {
  #pubSearch, #pubFilter {
    font-size: 0.95rem;
  }
}




/* Loader wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dc);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid var(--pc); /* change color if you want */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide loader when page is loaded */
body.loaded #loader-wrapper {
  display: none;
}
