/* ============================
   GLOBAL STYLES 
============================ */
body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
/*   background-image: url('/images/BackP.svg'); /* Replace with your image file */
/*  background-size: cover; /* Makes the image cover the whole area */
/*  background-position: center; /* Keeps the image centered */
/*  background-repeat: no-repeat; /* Prevents tiling */
/*  background-attachment: fixed; /* Optional: for a subtle parallax effect */
  
  height: 100%;
  font-weight: 300;
  transition: background-color 0.3s, color 0.3s;
}

::selection {
  background: #508990;
  color: #fff;
}

body.dark-mode {
  color: #eee;
  background-color: #000;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* ============================
   HEADER 
============================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 20px;
  max-width: 1700px;
  transition: background-color 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  flex-direction: column;
}

body.dark-mode header {
  background-color: #121212;
}

/* LOGO */
.logo img {
  max-width: 350px;
  height: auto;
  transition: opacity 0.4s ease;
}

.logo-dark {
  display: none;
}

body.dark-mode .logo-light {
  display: none;
}

body.dark-mode .logo-dark {
  display: inline;
}

/* ============================
   FOOTER 
============================ */
#

/* ============================
   HOME BANNER 
============================ */
.home-banner {
  text-align: center;
  padding: 40px 20px;
  background-color: #003366;
  color: white;
}

.home-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.home-banner p {
  font-size: 18px;
  margin: 5px 0;
}

/* ============================
   SERVICES 
============================ */
.services {
  text-align: center;
  margin: 40px 20px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-item {
  display: inline-block;
  width: 30%;
  text-align: center;
  margin: 20px;
}

.service-item img {
  width: 100px;
  height: 100px;
}

.service-item h3 {
  font-size: 24px;
  margin-top: 10px;
}

.service-item p {
  font-size: 16px;
  margin-top: 5px;
}

/* ============================
   ABOUT US 
============================ */



/* ============================
   RESPONSIVE 
============================ */
@media (max-width: 1000px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .logo img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {

   header {
    margin-top: 15px;
  }
  
  #site-footer {
    padding: 15px;
   
  }

  #site-footer h5 {
    font-size: 0.85em;
    padding: 10px;
  }


  .intro-text,
  .ltb123-right {
    flex: 1 1 100%;
    padding: 20px;
  }

  .intro-text {
    font-size: 16px;
  }

  .intro-title {
    font-size: 24px;
  }

  .ltb123-right h2 {
    font-size: 24px;
  }

  .ltb123-contact-info {
    gap: 15px;
  }


}

@media (max-width: 450px) {


  .logo img {
    max-width: 250px;
  }
   header {
    margin-top: 10px;
  }
}
