body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Image Widget Styling */
.image-widget {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-widget img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


/* Widget Box Styling */
/* Center the right content vertically */
.container-custom .row {
    display: flex;
    align-items: center; /* Vertically center everything */
}

/* Ensure the right content has a height to center the widgets */
.right-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the widgets vertically */
    padding: 20px;
    width: 100%;
}

/* Widget styling */
.widget-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}



.widget-box h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.widget-box p {
    font-size: 0.95rem;
    color: #666;
}

/* Navigation Arrow */
.nav-arrow {
  font-size: 20px;
  color: #16639d;
  cursor: pointer;
  margin-top: 10px;
  
}
.nav-arrow:hover {
    transform: translateX(5px);
}

.nav-arrow a {
    text-decoration: none;
    color: #16639d; /* or whatever color you want */
}

.nav-arrow a:hover {
    color: #16639d; /* darker shade on hover */
}


/* Responsive Adjustments */
@media (max-width: 767px) {
  .container-custom {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .image-box {
    width: 100%;
    height: auto;
    margin-bottom: 0; /* Remove extra gap */
  }

  .right-content {
    width: 100%;
    margin-top: -10px; /* Adjust this to close the gap if needed */
  }

  .widget-box {
    margin-top: 15px;
    width: 100%;
  }
  

  .widget-box:first-child {
    margin-top: 0; /* No gap on first widget */
  }
}

