
  /* © 2025 MediVue Pty Ltd. All rights reserved.
  Unauthorized reproduction or distribution is prohibited. */


:root {
  --aqua-blue: #00CFFF;
  --sky-blue: #2CAECF;
  --teal-blue: #007B8F;
  --dark-indigo: #2B3A6F;
  --navy-blue: #0A1D3C;
  --midnight-blue: #1C2A55;
  
  /* Additional neutral colors for context */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #212529;
}

/* Base Styles */
body {
  
  padding-top: 80px;
  /* Set Montserrat as the default font for all text */
  font-family: 'Montserrat', sans-serif; 
  color: var(--text-dark);

}

/* Helper to ensure elements don't interfere with padding/border inside specified width/height */
.selector-for-some-widget {
  box-sizing: content-box;
}


/* --- NAVBAR STYLING (Now Light Background, Dark Text) --- */

.navbar-custom {
  /* Changed background to white for black text visibility */
  background-color: var(--white) !important; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-brand {
  color: var(--text-dark) !important; 
  font-weight: 700; /* Bolder font for brand */
}

.navbar-custom .navbar-brand img {
  filter: none;
}

.navbar-custom .navbar-nav .nav-link {
  /* Start text as dark color */
  color: var(--text-dark) !important; 
  margin: 0 5px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.navbar-custom .navbar-nav .nav-link:hover {
  /* Highlight on hover */
  color: var(--aqua-blue) !important; 
}

.navbar-custom .navbar-nav .nav-link.active {
  font-weight: bold;
  /* Highlight active link with Aqua Blue */
  color: var(--aqua-blue) !important; 
  border-bottom: 2px solid var(--aqua-blue);
}

/* Button Styling in Navbar (Get Started) */
.navbar-custom .btn {
  border: 1px solid var(--aqua-blue);
  text-decoration: none;   
  color: var(--aqua-blue);
  background-color: transparent;
  padding: 5px 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-custom .btn:hover {
  background-color: var(--aqua-blue);
  color: var(--midnight-blue); /* Dark text on light background */
  border-color: var(--aqua-blue);
}

/* Toggler Icon for Mobile Menu (Dark color for light background) */
.navbar-toggler {
  border-color: var(--text-dark) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


/* Fullscreen Hero Section */
.hero-section {
  position: relative;
  width: 100vw;              /* full screen width */
  height: 80vh;             /* full screen height */
  background: linear-gradient(180deg, #080F8E 0%, #0C0F60 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Transparent overlay fills almost entire hero area */
.overlay-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  width: 95vw;        /* covers nearly the full width */
  height: 70vh;       /* covers nearly the full height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}

/* Text styling */
.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.6;
  max-width: 1000px;
  color: white;
}

/* The problem section */

.feature-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.icon-large {
  font-size: 2.5rem;
  color: #080F8E; 
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}






/* --- soltion SECTION STYLING --- */

/* Section subtitle color */
/* Subtitle text color */
.section-subtitle {
  
  color: #5B8CAF;
  font-size: 1rem;      /* matches card paragraph size */
  line-height: 1.6;     /* same vertical spacing for readability */
  font-weight: 400; 
}

/* Card styling */
.solution-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Icon styling (no square) */
.icon-outline {
  color: #0b2bbf;
  font-size: 2rem;
  line-height: 1;
}

/* Responsive layout */
@media (max-width: 768px) {
  .solution-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-outline {
    margin-bottom: 10px;
  }
}


/* How MediVue Helps Section */
.benefit-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Circular icon container */
/* .icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(11, 43, 191, 0.08); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.icon-outline {
  color: #0b2bbf;
  font-size: 1.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 1rem;
  }
}

/* Who We Serve Section */
.section-subtitle {
  color: #5B8CAF;
  font-size: 1rem;
  line-height: 1.6;
}

/* Card styling */
.serve-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.icon-serve {
  font-size: 1.8rem;
  color: #0b2bbf;
}

/* Text inside card */
.serve-text {
  color: #6c757d; /* Light blue text color */
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .serve-card {
    text-align: center;
  }

  .icon-serve {
    margin-bottom: 10px;
  }

  .d-flex.align-items-center {
    justify-content: center;
  }
}

/* Our Values Section */
#values .section-subtitle {
  color: #5B8CAF;
  font-size: 1rem;
  line-height: 1.6;
}

/* Value Card styling */
.value-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.icon-value {
  font-size: 2rem;
  color: #0b2bbf;
}

/* Text consistency */
.value-card p {
  color: #6c757d; /* consistent with other card descriptions */
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .value-card {
    margin-bottom: 1rem;
  }
}



/* --- OUR STORY/ABOUT SECTION STYLING --- */

#our-story {
  background-color: var(--white);
}

#our-story .display-6 {
  color: var(--navy-blue);
}

#our-story .btn-outline-primary {
  color: var(--teal-blue);
  border-color: var(--teal-blue);
  transition: all 0.3s ease;
}

#our-story .btn-outline-primary:hover {
  background-color: var(--teal-blue);
  color: var(--white);
}



/* Contact Section Styling */
.contact-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Info cards (Email + LinkedIn) */
.info-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Outline icon styling — consistent with other sections */
.icon-outline-contact {
  font-size: 2rem;
  color: #0b2bbf;
  line-height: 1;
}

/* Contact links */
.info-card a:hover {
  color: #0b2bbf;
}

/* Primary button styling */
/* Force Send Message button color */
#contacts .btn-primary {
  background-color: #0b2bbf !important;  /* deep blue */
  border: none !important;
  color: #ffffff !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

#contacts .btn-primary:hover {
  background-color: #080f8e !important;  /* slightly darker hover */
  color: #ffffff !important;
}


/* Responsive layout */
@media (max-width: 992px) {
  .info-card {
    text-align: center;
    flex-direction: column;
  }

  .icon-outline-contact {
    margin-bottom: 8px;
  }
}


/* --- FOOTER STYLING --- */

footer {
  background-color: var(--midnight-blue) !important;
  color: var(--light-gray) !important;
}

footer p, footer .nav-link {
  color: var(--sky-blue) !important;
}

footer .nav-link:hover {
  color: var(--aqua-blue) !important;
}


/* === SCROLL ANIMATION (fade + float up) === */
.fade-up {
  opacity: 0;
  transform: translateY(60px);     /* start slightly below */
  transition: all 0.8s ease-out;   /* smooth animation */
  will-change: opacity, transform;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);        /* move to natural position */
}


