/* ==========================================================================
   Base Styles & Typography
   ========================================================================== */

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

a {
  color: var(--color-2); /* Assuming --color-2 is your primary accent color */
  text-decoration: none;
}

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */

.bg-dark {
  background-color: #222;
  color: #fff;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: #fff;
}

.bg-dark h2 span {
  color: var(--color-2);
}

.divide_line {
  color: var(--color-2);
}

/* ==========================================================================
   Components
   ========================================================================== */

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
    background-color: #042940; /* navy */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  /* background-color: var(--color-3); */
}

.btn:hover {
    background-color: var(--color-3);
}



/* .btn-navy {
  background-color: #042940; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.btn-navy:hover {
  background-color: #6cc3e1;
}

.btn-green {
  background-color: var(--color-2); 
}

.btn-green:hover {
  background-color: #82a42a; 
} 
  */

/* --- Forms --- */
form input,
form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.2s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border: 1px solid var(--color-2); /* green focus */
  box-shadow: 0 0 0 2px rgba(159,193,49,0.2);
}

form button {
  /* Apply button styles directly or add a class like .btn .btn-navy to the button element */
  margin-top: 10px;
}


/* --- Slideshow & Page Hero --- */
.home-slide,
.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-slide {
  height: 100vh;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Common overlay for slides and hero sections */
.slide::before,
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 41, 64, 0.55); /* navy overlay */
  z-index: 1;
}

.slide-container,
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.slider-title,
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.slider-title,
.hero-highlight {
  color: var(--color-2); /* green */
}

.hero-title {
   color: #fff;
}

.slider-tagline,
.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
}

.hero-tagline {
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

/* --- Content Boxes --- */
.service-contact-box {
  background: #f8f9fa;
  border-left: 4px solid var(--color-2);
  padding: 1.5rem;
  margin: 50px 0;
  border-radius: 0.5rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.service-contact-box h2 {
  color: #042940;
}

.service-contact-box p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.top-line {
  background: #FFF; 
  color: var(--color-1);
  padding: 10px 0;
  position: relative;
  z-index: 1001; 
}

.header-logo img {
  height: 120px;
  width: auto;
}



p.header-logo {
  color: #000;
  font-weight: 600;
  font-family: 'Verdana', sans-serif;
  font-size: 1.5rem;
  margin-top: 30px;

}


/* Mobile Phones */
@media (max-width: 577px) {
    .header-logo img {
      height: auto;
      width: 90px! important;
    }

    p.header-logo {
      /* color: #000; */
      font-weight: 600;
      /* font-family: 'Montserrat', sans-serif; */
      font-size: 12px;

}
}


.top-bar > p > a {
  color: #000;

}

.top-bar > p > a > .svg-inline--fa {
  color: var(--color-2);
}


.header-menu {
  background: #FFF;
  color: #000;
  padding: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-menu .menu-col {
  flex: 1;
  padding: 0 20px;
}

.header-menu h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-1);
  border-bottom: 2px solid var(--color-2);
  padding-bottom: 5px;
}

.header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu li {
  margin: 6px 0;
}

.header-menu a {
  color: #000;
}

.header-menu a:hover {
  color: var(--color-2);
}

/* --- Megamenu --- */
.services-megamenu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 1.5rem;
  border-top: 3px solid var(--color-2);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Show on hover of a parent element (e.g., a nav item) */
.nav-item:hover .services-megamenu {
  display: block;
}

.menu-heading {
  font-weight: 600;
  color: #042940;
  margin-bottom: 0.75rem;
}

.services-megamenu a {
  color: #042940;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.services-megamenu a:hover {
  color: var(--color-2);
}

/* --- Quick Contact Form --- */
.quick-contact {
  position: absolute;
  right: 20px;
  top: 70px;
  width: 300px;
  background: #f6f6f6;
  color: #333;
  border-left: 3px solid var(--color-2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1100; /* Above everything */
}


/* ==========================================================================
   Footer
   ========================================================================== */

footer, .footer {
  background-color: #222;
  color: #fff;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .933em;
  letter-spacing: 0;
  color: var(--color-1);
  margin-bottom: 17px;
  text-transform: capitalize;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer img.logo {
  width: 120px;
  height: auto;
}


.button-menu {
  list-style: none;
}

.button-menu .menu-button {
  background-color: var(--color-1);
  color: #fff;
  padding: 0px 11px;
  font-size: 30px;
  border-radius: 10px;
}

.menu-button > a > p,
.menu-button > a > span {
      font-size: 20px;
    display: inline-table;
    padding: 0px;
    vertical-align: middle;
    margin: 0px;
    margin-top: -6px;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* Drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%; /* adjust if you want wider/narrower */
  height: 100%;
  background: #fff;
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
}

/* Close button */
.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  float: right;
  cursor: pointer;
  margin-bottom: 1rem;
}

/* Mobile list styling */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-list h4 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.mobile-menu-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.mobile-menu-list a {
  text-decoration: none;
  display: block;
  color: #333;
}


.testimonial-box {
  border: 1px solid lightgray;
}

.testimonial-title {
  font-weight: 700;
}

.iframe {
  /* position:absolute;
  top:0;
  left:0; */
  width:100%;
  height:100%;
}