/*=============================================================================
  1. RESET
=============================================================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*=============================================================================
  2. BASE / TYPOGRAPHY
=============================================================================*/
html,
body {
  background-color: #ffffff;
  color: #302f2f;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: #05336f;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

h1 { font-size: 2em; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1em; }
h5 { font-size: 0.8em; }
h6 { font-size: 0.6em; }

p {
  font-size: 1em;
  margin-bottom: 15px;
  color: #161515;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.25em;
  transition: color 0.7s;
}

a:hover {
  color: #0056b3;
}

ul, ol {
  list-style: none;
}

li {
  font-size: 0.85em;
  margin-bottom: 0.5rem;
}

.highlight-light {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/*=============================================================================
  3. CONTAINERS & COMPONENTS
=============================================================================*/
.container-fluid {
  width: 100%;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.box {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 5% auto;
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  overflow: hidden;
}

.box img {
  width: 80%;
  height: auto;
}

/*=============================================================================
  4. BUTTONS
=============================================================================*/
button {
  background-color: #f3f3f3;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

/*=============================================================================
  5. IMAGES & MEDIA
=============================================================================*/
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*=============================================================================
  6. NAVIGATION
=============================================================================*/
.nav {
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  color: #05336f;
  justify-content: center;
  align-items: center;
  margin: 1% auto;
  padding: 0.5%;
}

.nav li a {
  color: inherit;
  padding: 0.5em 1em;
  text-decoration: none;
  transition: color 0.3s;
}

.nav li a:hover {
  color: #d7f5e0;
}

.icon {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(70, 69, 69, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(52, 40, 153, 0.1);
  list-style: none;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
  display: block;
}

.dropdown-menu li {
  margin: 0.5% 0;
}

.dropdown-menu a {
  color: #ffffff;
  font-size: 1em;
  transition: color 0.3s;
}

.dropdown-menu a:hover {
  color: #a09797;
}

/*=============================================================================
  7. SECTIONS
=============================================================================*/
.header, .main, .service, .about {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header .consched,
.header .conlogo,
.header .concontact,
.header .conad {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2%;
  height: 85px;
}

.main .conmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main .conmenu .box {
  width: 90%;
  height: 60px;
  margin: 0.2%;
}

.contitle {
  width: 100%;
  text-align: center;
}

/* Showcase / Service Cards */
.conshowcase .box {
  width: 100%;
  background-color: #0c2846;
  padding: 0.5%;
  border-radius: 15px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
}

.box-servicecard {
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
  background-color: #000;
}

.box-servicecard img,
.box-servicecard .service-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.box-servicecard .showcase-print {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1px 5px;
  border-radius: 8px;
  color: #000;
  text-align: center;
  font-size: clamp(0.85em, 3vw, 1.5em);
  line-height: 1.3;
  width: 80%;
  white-space: normal;
  overflow-wrap: break-word;
}

/*=============================================================================
  8. SCROLL CONTAINER
=============================================================================*/
.scroll-container {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  width: 100%;
  position: relative;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-container.active {
  cursor: grabbing;
}

.scroll-container .col-3 {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 10px;
  scroll-snap-align: start;
}

.scroll-container .col-3 .box-servicecard,
.scroll-container .col-3 .box {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1%;
}

.scroll-container::before,
.scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none;
  z-index: 2;
}

.scroll-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
}

.scroll-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
}

@media (max-width: 576px) {
  .scroll-container .col-3 {
    width: 80%;
  }
}

/*=============================================================================
  9. SITEMAP
=============================================================================*/
.sitemap {
  display: flex;
  flex-wrap: wrap;
  margin: 5% auto;
  padding: 5%;
}

.sitemap-col {
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
}

.sitemap li {
  margin-bottom: 0.5rem;
}

.sitemap .sitemap-link {
  margin: 0;
  line-height: 1.2;
  font-size: 0.8em;
}

.sitemap .sitemap-link a {
  color: #05336f;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap .sitemap-link a:hover {
  color: #29ce5e;
}

/*=============================================================================
  11. FOOTER & SOCIAL ICONS
=============================================================================*/
.footer,
.conclient,
.conart,
.consitemap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

#sitemap-heading {
  text-align: center;
}

.consocial-container,
.consocial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.consocial a {
  text-decoration: none;
}

.consocial i {
  color: black;
  transition: color 0.3s;
  font-size: 1.5rem;
}

.consocial i:hover {
  color: blue;
}

/*=============================================================================
  12. MEDIA QUERIES
=============================================================================*/
@media (max-width: 768px) {
  .consched {
    display: none !important;
  }

  .conmenu .box,
  .nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .icon {
    display: flex;
    font-size: 1.5rem;
    margin-left: auto;
    cursor: pointer;
  }

  .nav li a:not(.icon) {
    display: none;
  }

  .nav.responsive {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .nav.responsive li a {
    display: block;
  }

  .nav.responsive .dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    display: none;
  }

  .nav.responsive .dropdown-menu.active {
    display: block;
  }

  footer.footer {
    display: none;
  }
}

@media (max-width: 576px) {
  .nav > li > a {
    font-size: 1em;
  }

  .header,
  .conmenu .box,
  .consched,
  .conlogo,
  .concontact,
  .conad {
    padding: 0.5%;
    height: auto;
  }
}
