<style>
    :root { --primary: #00AEEF; --dark: #1a1a1a; }
    body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--dark); }
    .navbar { background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    .navbar-brand img { height: 55px; width: auto; }
    .hero {
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), 
                  url('https://forestpackage.com/wp-content/uploads/2023/02/retail-packaging.jpg') center/cover no-repeat fixed;
      min-height: 70vh;
      color: white;
      text-shadow: 0 1px 4px rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
    }
    .service-hero {
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), 
                  url('https://forestpackage.com/wp-content/uploads/2023/02/retail-packaging.jpg') center/cover no-repeat;
      min-height: 70vh;
      color: white;
      text-shadow: 0 1px 4px rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
    }
    .btn-primary { background-color: var(--primary) !important; border: none; }
    .btn-primary:hover { background-color: #0099d6 !important; }
  </style>
  
  
 <style>
  /* Navbar base styles */
#mainNavbar {
  transition: all 0.3s ease;
  background-color: #ffffff !important; /* solid white */
  opacity: 0.9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* very light initial shadow */
  z-index: 1030;
}

/* Logo size transition */
.logo {
  height: 70px;           /* large size at top */
  width: auto;
  transition: height 0.3s ease;
}

/* Shrunk state when scrolled */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); /* stronger shadow when scrolled */
}

.navbar.scrolled .logo {
  height: 50px;           /* smaller logo when scrolled */
}

/* Optional: make navbar slightly elevated look when over images */
.navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}
</style>

<style>
/* Push hero text down on mobile */
@media (max-width: 768px) {
    .hero,
    .service-hero {
        padding-top: 100px;
        align-items: flex-start;
    }
}
</style>

<style>
/* SLIM HERO FORM STYLES */
.hero-form {
    margin-top: 24px;
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-form-row {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-form-row {
        flex-direction: column;
        gap: 10px;
    }
}

.hero-form-row input[type="text"],
.hero-form-row input[type="email"],
.hero-form-row input[type="tel"] {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    min-width: 0;
}

.hero-form-row input[type="text"]:focus,
.hero-form-row input[type="email"]:focus,
.hero-form-row input[type="tel"]:focus {
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.4);
}

.hero-form-row input::placeholder {
    color: #888;
}

.hero-form-row button,
.hero-form-row button[type="submit"],
.hero-form-row input[type="submit"] {
    padding: 14px 28px !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #fff !important;
    background-color: #00AEEF !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: auto !important;
}

.hero-form-row button:hover,
.hero-form-row button[type="submit"]:hover,
.hero-form-row input[type="submit"]:hover {
    background-color: #0099d6 !important;
    transform: scale(1.02);
}

.hero-form-row button:active,
.hero-form-row button[type="submit"]:active {
    transform: scale(0.98);
}

/* Also style .btn-primary in hero form */
.hero .btn-primary,
.service-hero .btn-primary {
    background-color: #00AEEF !important;
    color: #fff !important;
}

.hero .btn-primary:hover,
.service-hero .btn-primary:hover {
    background-color: #0099d6 !important;
}
</style>



<style>
/* FORCE ALL BUTTONS TO BE VISIBLE */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #00AEEF !important;
    border: none !important;
    color: #fff !important;
    padding: 0.625rem 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn:hover,
.btn-primary:hover {
    background-color: #0099d6 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Card button styles */
.card .btn,
.card .btn-primary {
    position: relative;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #00AEEF !important;
    border: none !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    text-align: center !important;
    vertical-align: middle !important;
    margin-top: 1rem !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

/* Ensure buttons inside card-body are visible */
.card-body .btn,
.card-body .btn-primary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #00AEEF !important;
    color: #fff !important;
}

/* Text links that look like buttons */
a.btn,
a.btn-primary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #00AEEF !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
}

a.btn:hover,
a.btn-primary:hover {
    background-color: #0099d6 !important;
    color: #fff !important;
    text-decoration: none !important;
}
</style>
