.new-link {
    position: relative;
    display: inline-block;
  
    color: #555;
    text-decoration: none;
    padding-right: 25px; /* space for badge */
}

.new-badge {
    position: absolute;
    top: -15px;
    right: -20px;
    width: 45px;
    height: auto;

    /* Blink animation */
    animation: blink 1s infinite;
}

/* Smooth blink */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}



.container1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
  background: white;
  border-radius: 5px;
  box-sizing: border-box;
}

.carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.item {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    border: none;
    font-size: 26px;
    padding: 5px;
    cursor: pointer;
    border-radius: 10%;
    z-index: 10;
    opacity: 0.75;
	margin-left:0px;
}
.arrow:hover { opacity: 1; }

.left { left: 0px; }
.right { right: 0px; }

/* Fade edges */
.fade {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
   
}

.fade-right {
    right: 0;
    
}




.footer1 {
  background: #0B4A53;
  color: #fff;
  padding: 25px 0;
  font-family: Arial, sans-serif;
}

/* Grid Layout */
.footer-grid1 {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  padding: 0 20px;
}

/* Footer Sections */
.footer-section1 h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-section1 p,
.footer-section1 li {
  color: white;
  line-height: 1.7;
  font-size: 15px;
}

.footer-section1 ul {
  padding: 0;
  list-style: none;
}

.footer-section1 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section1 a:hover {
  color: #fff;
}

/* Social Media Icons */
.social-icons1 {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.icon1 {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Icon Hover Animation */
.icon1:hover {
  background: #fff;
  color: #003366;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Footer Bottom */
.footer-bottom1 {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  color: #d0d0d0;
}
