@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;500&display=swap');


/* Global Body Styles */
body {
  margin: 0;
  padding: 0;
  zoom: 0.7;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600 !important;
}

p{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500 !important;
}

/* Custom Navbar Overrides */
.navbar {
  background: #00152d !important;
  /* flat navy background */
  padding: 10px 10px !important;
  margin: 0;
  border-bottom: 1px solid #ccc;
}


/* Ensure no gap from header elements */
.top-bar,
.navbar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Prevent margin collapse between header and logo background */
.logo-background {
  margin-top: 0 !important;
  padding-top: 1px;
  /* This prevents collapse; adjust if needed */
}

/* Brand / Logo */
.navbar-brand {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  text-transform: none;
  font-weight: 500;
  color: #fff !important;
  padding: 0.5rem 0;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

/* Navigation Menu as a List */
.navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: auto;
  /* push items to the right */
  padding: 0;
  list-style: none;
}

.navbar-nav .nav-item {
  margin: 0 15px;
}

.navbar-nav .nav-link {
  text-transform: none;
  font-weight: 400;
  font-size: 1.35rem;
  padding: 0.5rem 0.75rem;
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffcc00 !important;
}


/*-----------About Us Dropdown-------------- */
.navbar .dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
  /* Adjust if needed */
  color: #ffcc00 !important;
  font-size: 1.35rem; /* Increase font size for dropdown text */
}

/* Optional: keep parent link styling when hovering over the entire About Us block */
.navbar .dropdown:hover>a.nav-link {
  color: #002147;
  /* Keep consistent with your design */
  color: #ffcc00 !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  /* Ensure it spans the full viewport width */
  height: 100vh;
  /* Ensure it spans the full viewport height */
  transform: scale(1.4286);
  /* Compensate for zoom: 0.7 (1 / 0.7 = 1.4286) */
  transform-origin: top left;
  /* Ensure scaling starts from the top-left corner */
  z-index: 1040;
  /* Ensure it appears above other elements */
}

/* Leave a Review Button Styling */
#leaveReviewBtn {
  font-size: 1rem !important;
  padding: 0.5rem 1rem !important;
  background: #ffcc00 !important;
  color: #002147 !important;
  border: none !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  margin-left: 1rem !important;
  transition: background 0.3s ease !important;
}

#leaveReviewBtn:hover {
  background: #e6b800;
}

.star-rating {
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 20px;
}

.star {
  color: #ccc;
  transition: color 0.2s;
}

.star.selected {
  color: gold;
}


/* Default Not Found Page Styles */
.not-found-page {
  text-align: center;
  padding: 60px 20px;
}

.not-found {
  display: inline-block;
  text-align: left;
  margin-top: 10px;
  width: 100%;
}

.not-found .btn {
  background: #002147;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.not-found .btn:hover {
  background: #001f3f;
}


.not-found-page .logo-wrapper {
  margin-bottom: 30px;
}

.not-found-page .logo-404 {
  max-width: 200px;
}

.not-found-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.not-found-page p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.not-found-page .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  background: #002147;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.not-found-page .btn:hover {
  background: #001f3f;
}


/* ---------------------------------------------------
   Footer — Overall
   --------------------------------------------------- */
   .site-footer {
    background: #00152d;
    color: #ffffff;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
  }
  
  /* Top row flex container */
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Each column in top row */
  .footer-col {
    flex: 1 1 150px;
    margin: 0.5rem;
    box-sizing: border-box;
  }
  
  /* 1. Logo */
  .footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-icon {
    max-width: 100px;
    height: auto;
  }
  
  /* 2. Navigation lists */
  .footer-col h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
  }
  
  /* Colors from logo: red, yellow, green, blue */
  .nav-main h4       { color: #D32F2F; } /* red */
  .nav-services h4   { color: #388E3C; } /* green */
  .nav-solutions h4  { color: #FBC02D; } /* yellow */
  .quick-call h4     { color: #1976D2; } /* blue */
  
  /* List styling */
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col li {
    margin-bottom: 0.4rem;
    
  }
  .footer-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
  }
  .footer-col a:hover {
    text-decoration: underline;
  }
  
/* ─────────────────────────────────────────────────────────────────────────────
   Shared “outlined” button style for Win + Submit
   ───────────────────────────────────────────────────────────────────────────── */
   .quick-call-btn {
    display: inline-block;
    background-color: #002147;      /* solid blue */
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;           /* fully rounded */
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
    cursor: pointer;
  }
  
  .quick-call-btn:hover {
    background-color: #1565C0;      /* slightly darker on hover */
  }
 
  /* Optional: ensure they don’t stretch full‑width */
  .quick-call {
    text-align: center;
  }
  
   /* Tweak quick-call positioning so it doesn’t stretch full-width */
   .quick-call .form-message {
     margin-top: 0.5rem;
   }
   
   .quick-call-btn {
     /* remove any width:100% that you may have added */
     width: auto;
     margin-top: 0.5rem;
   }
     
  /* 6. Quick Call form */
  .quick-call {
    text-align: left;
  }
  .quick-call-subtext {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  #callbackForm input[type="text"],
  #callbackForm input[type="tel"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 3px solid #f3f3f3;
    border-radius: 4px;
    font-size: 0.9rem;
    box-sizing: border-box;
  }
  .quick-call-btn {
    width: 100%;
    padding: 0.6rem;
    background-color: #ffffff;
    color: #00152d;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .quick-call-btn:hover {
    background-color: #f0f0f0;
  }
  
  /* Tagline */
  .footer-tagline {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    line-height: 1.4;
    font-size: 1rem;
  }
  .footer-tagline p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }
  
  /* Bottom */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    font-size: 0.85rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
      text-align: center;
    }
    .footer-col ul {
      display: inline-block;
      text-align: left;
    }
    #callbackForm input, .quick-call-btn {
      font-size: 1rem;
    }
  }
  
  /* ─── Footer Logo Contact Info ─────────────────────────────────────────────── */
.footer-contact {
  margin-top: 1rem;
  text-align: center;
}

.footer-contact p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff;            /* ensure high contrast on dark bg */
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Override the logo-wrap to stack vertically */
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* (Optional) add a little breathing room between logo & contact */
.footer-logo-wrap .footer-contact {
  margin-top: 1rem;
}

.footer-contact .footer-phone {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff; /* ensure high contrast on dark bg */
}

.footer-contact .footer-phone a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact .footer-phone a:hover {
  text-decoration: underline;
}