/*
===========================================
VRiba Solutions - Main Styles
===========================================
Additional custom styles for the website
===========================================
*/

/* You can add custom styles here as needed */

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Basic utility classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Add any additional custom styles below */

/* --- Footer Elliptical Gradient (Global - All Pages) --- */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 105, 180, 0.15), rgba(216, 112, 185, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}
