/* ===== FOOTER ===== */
:root{
  --iyeg-footer-bg : #003D82;
  --iyeg-footer__title--font-size : 1.25rem;
  --iyeg-footer__title--color : #ffffff;
  --iyeg-footer__title--vbar-color : #ffffff;
  --iyeg-footer__title--font-family : "Inter", sans-serif;


  --iyeg-footer__links--color : rgba(255, 255, 255, 0.7);
  --iyeg-footer__links--hover-color : #ffffff;
  --iyeg-footer__links--font-size : 0.875rem;
  --iyeg-footer__links--font-family : "Inter", sans-serif;
  --iyeg-footer__links--icon-color : #ffffff;
  --iyeg-footer__links--icon-size : 0.7rem;

  --iyeg-footer_copyright--font-size : 0.75rem;
  --iyeg-footer__copyright--font-family : "Inter", sans-serif;

}





.iyeg-footer {
    background-color: var(--iyeg-footer-bg);
    margin-bottom: 0;
    padding-bottom: 2rem;
  }

  .iyeg-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.125rem;
    /*padding: 3.75rem 8%;*/
    /*padding: 6rem 8%;*/
    padding: 6rem 8% 3rem;  /* top | left/right | bottom */
  }
  
  .iyeg-footer-main > div:first-child p:first-of-type {
    color: #ffffff; /* Make text white */
    font-size: 0.9rem; /* Optional: slightly smaller */
    margin-bottom: 0.75rem; /* Adjust space below if needed */
    margin-top: 0; /* Remove any top margin */
    font-weight: 400; /* Optional: normal weight */
    opacity: 0.9;
}
  
  .iyeg-footer-logo {
    /*margin-bottom: 1.5625rem;*/
    margin-bottom: 0.5rem;
    /*height: 2.1875rem;*/
    /*height: 1.8rem;*/
    height: 1.7rem;
    width: auto;
  }
  
  .iyeg-footer-title {
    font-family: var(--iyeg-footer__title--font-family);
    font-weight: 500;
    font-size: var(--iyeg-footer__title--font-size);
    line-height: 100%;
    text-transform: uppercase;
    color: var(--iyeg-footer__title--color);
    border-left: 3px solid var(--iyeg-footer__title--vbar-color);
    padding-left: 0.9375rem;
    margin-bottom: 1.875rem;
    white-space: nowrap;
  }
  
  .iyeg-footer-links { list-style: none; }
  
  .iyeg-footer-links li {
    margin-bottom: 0.9375rem;
    font-family: var(--iyeg-footer__links--font-family);
    font-size: var(--iyeg-footer__links--font-size);
    color: var(--iyeg-footer__links--color);
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  
  
  
  .iyeg-footer-links li a {
  font-family: var(--iyeg-footer__links--font-family);
  font-size: var(--iyeg-footer__links--font-size);
  color: var(--iyeg-footer__links--color);
  text-decoration: none; /* Removes underline */
  display: flex;
  align-items: center;
  gap: 0.625rem; /* Space between icon and text */
  transition: 0.2s ease;
}

/* The Icon Styling */
.iyeg-footer-links li a i {
  font-size: var(--iyeg-footer__links--icon-size); /* Make the caret slightly smaller than text */
  color: var(--iyeg-footer__links--icon-color); /* Caret is green by default */
  transition: transform 0.2s ease;
}

/* Hover Effects */
.iyeg-footer-links li a:hover {
  color: var(--iyeg-footer__links--hover-color);
  padding-left: 5px; /* Subtle slide effect on hover */
}

.iyeg-footer-links li a:hover i {
  transform: translateX(2px); /* Moves caret slightly right on hover */
}

  
  .iyeg-footer-contact {
    /*color: #9fa6b2;*/
    color : var(--iyeg-footer__links--color);
    font-size: 0.875rem; /* create a variable */
    line-height: 1.375rem;
  }


    .iyeg-hq-container {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin-bottom: 1.5rem;
    }
    
    .iyeg-hq-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .iyeg-hq-label {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: 0.875rem; /*  create a variable */
      line-height: 100%;
      /*color: #A4A4A4;*/
      color : var(--iyeg-footer__links--color);
      text-transform: none;
    }
    
    .iyeg-hq-content {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 0.875rem; /*  create a variable */
      line-height: 140%;
      color: #FFFFFF;
      margin: 0;
    }
    
    .iyeg-hq-item:last-of-type .iyeg-hq-content { white-space: nowrap; }
  
  /* ===== COPYRIGHT STRIP ===== */
  .iyeg-copyright-strip {
    /* background: #001a33; */
    /* background: #054c9b; */

    background: rgba(0, 0, 0, 0.3);  

    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    margin: 1.25rem auto 0 auto; 
    max-width: 75rem;
    width: 90%;
  }
  
  .iyeg-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  
  .iyeg-copyright-text {
    color: var(--iyeg-footer__links--color);
    font-family: var(--iyeg-footer__copyright--font-family);
    font-size: var(--iyeg-footer_copyright--font-size);
    opacity: 0.8;
    text-decoration: none;
  }
  
  .iyeg-scienartist-link {
    color: var(--iyeg-footer__links--hover-color);
    font-weight: 600;
    text-decoration: none;
  }
  
  .iyeg-scienartist-link:hover { 
    text-decoration: underline;
  }
  
  .iyeg-footer-social {
    display: flex;
    gap: 0.9375rem;
    align-items: center;
  }
  
  .iyeg-footer-social a {
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    text-decoration: none;
  }
  
  .iyeg-footer-social a:hover {
    color: var(--iyeg-footer__links--hover-color);
    transform: translateY(-3px);
  }



   /* ===== SIMPLE PRELOADER ===== */
.iyeg-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  /* background-color: #003D82; */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.iyeg-preloader--hidden {
  opacity: 0;
  visibility: hidden;
}

.iyeg-preloader__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  /* border: 4px solid rgba(255, 255, 255, 0.2); */
  border-left: 4px solid #E0071D;
  /* border-left: 4px solid #fff; */
  border-radius: 50%;
  animation: iyeg-spin 1s linear infinite;
}

@keyframes iyeg-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#globalFlash {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.flash-message {
  background: #222;
  color: #fff;
  padding: 14px 20px;
  margin-top: 10px;
  border-radius: 6px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
}

.flash-message.show {
  opacity: 1;
  transform: translateY(0);
}

.flash-success { background: #2ecc71; }
.flash-error   { background: #e74c3c; }




  /* Floating Buttons */
  .iyeg-float-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
  }
  
  .iyeg-float-btns__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s;
    outline: none;
  }
  
  .iyeg-float-btns__btn:hover { transform: scale(1.1); }
  .iyeg-float-btns__btn:active { transform: scale(0.92); transition: transform 0.1s; }
  .iyeg-float-btns__btn--whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  .iyeg-float-btns__btn--scroll-top {
    background-color: #e0071d;
    color: #fff;
    display: none;
    /* font-size: var(--iyeg-carousel-icon-size); */
    font-size: 1rem;
    font-weight: 400;
  }