html, body {
  overflow-x: hidden;
  margin: 0;
}

main.main {
  flex: 1 0 auto;
}

body {
    background-color:#ffffff;
    color:  #000000 !important;
    font-family:'Georgia', serif;
    min-height: 100vh;        /* allow page to grow and window to scroll */
    display: flex;
    flex-direction: column;   /* sticky footer layout */
}

.hero-section {
    background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;  

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;          
    text-align: center;

    padding: 80px 20px 40px;
    min-height: 80vh;
    position: relative;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 3px;
    line-height: 1.2;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
  color: #ffffff;
  font-size: 5rem;
  font-weight: bold;
}

.hero-section p {
  font-size: 2rem;
  color: #ffffff;
}

/* Buttons */
.btn-primary-custom {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  padding: 0.5rem 2rem;      
  background: #fff;
  color: #4a90e2;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;           
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    background-color: #558ac8;
    color: white;
}

.btn-hero-custom {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-hero-custom:hover {
    background-color: #13286b;
    color: white;
}
/* End Buttons */


.section-title {
    color: #0f2f66;
    font-weight: bold;
    margin-bottom: 20px;
}

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* Message Notification */
.message {
  position: fixed;           /* take it out of flow */
  top: 80px;                 /* offset below your nav height */
  left: 50%;                 /* center horizontally */
  transform: translateX(-50%);
  z-index: 1050;             /* make sure it's above nav/content */
  
  max-width: 600px;
  width: calc(100% - 40px);  /* responsive on small screens */
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.message.success {
  background: linear-gradient(135deg, #28a745, #20c997); /* green gradient */
  color: #fff;
  border: 1px solid rgba(0,0,0,0.1);
}


.message.error {
  background: linear-gradient(135deg, #dc3545, #ff6b6b); /* red gradient */
  color: #fff;
}


.message:hover {
  transform: translateX(-50%) scale(1.02); 
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}


.message.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px); 
  pointer-events: none;
}
/* End Message Notification */


.error-message {
    color: red !important;
}

/* Clients Section - Enhanced Responsive */
.clients-section {
  background: #ffffff;
  min-height: 220px;
  padding: 1rem 0 !important;
}

.clients-track {
  min-height: 0px;
  display: flex;
  align-items: center;      
  justify-content: center;  
}

#clientsCarousel {
  width: 100%;             
  max-width: 2000px;       
  margin: 0 auto;
  text-align: center;
}

.client-logo {
  max-height: 80px;
  width: auto;
  opacity: .9;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
  transform: translateY(-2px);
}

#clientsCarousel .carousel-control-prev-icon,
#clientsCarousel .carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 4px rgba(0,0,0,.6));
}

/* Clients Responsive */
@media (max-width: 768px) {
    .client-logo {
        max-height: 60px;
    }
    .clients-track {
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .client-logo {
        max-height: 50px;
    }
    .clients-section h2 {
        font-size: 1.5rem;
    }
}
