* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin-top: 50px; /* adjust up/down by ±2px for fine-tuning if needed */
}
.logo-link, .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none; /* Remove underline */
}
.logo-link:visited { color: inherit; }

.logo-link:visited {
  color: inherit;
}


.lines-decor {
  height: 129px;        /* or adjust to match header height */
  opacity: 0.22;        /* 25% transparency */
  object-fit: contain;
}

.main-logo {
  height: 60px;        /* your existing logo height */
  object-fit: contain;
}


/* Top Bar */
.top-bar {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* make children fill the height */
  padding: 0 0px;
  background-color: white;
  /*border-bottom: 1px solid #eee;*/
}


.top-nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: stretch;  /* stretch each item */
  height: 100%;
}

.top-nav-links li {
  height: 100%;
  display: flex;
}
.top-nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-weight: 500;
  text-decoration: none;
  color: black;
}


.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 128px;              /* wider width */
  height: 100%;

  padding-left: 36px;        /* more left space */
  padding-right: 20px;

  background-color: #e30613;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
  color: black;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  background-color: #e30613;
}
.contact-btn:hover {
  color: black !important;
}
.contact-btn:visited,
.contact-btn:focus {
  color: white;
}
/* Main Nav */
.main-nav {
  background-color: white;
  border-bottom: 1px solid #eee;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 10px 30px;
  align-items: center;
}

.menu li {
  position: relative;
  z-index: 10;
}

.menu li a {
  text-decoration: none;
  color: black;
  font-weight: normal;
}

.menu li a.active {
  color: orange;
}
.menu li.dropdown {
  position: relative;
}
.menu li.dropdown:hover .services-dropdown {
  display: grid;
}

.menu li.dropdown:hover .sectors-dropdown {
  display: grid;
}


/* Dropdowns remain the same */


/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%-16px);
  z-index: 9999;
  background: #ff1e1e;
  border-radius: 16px;
  padding: 30px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Add these to your dropdown CSS */
.dropdown-content .item a {
  display: block;
  color: inherit;
  background: none;
  text-decoration: none;
  font: inherit;
  padding: inherit;
  border-radius: inherit;
  transition: inherit;
}

.dropdown-content .item a:hover, 
.dropdown-content .item a:focus {
  background: rgba(255,255,255,0.1); /* or whatever highlight you use */
  color: #ff3333; /* your hover color */
}

/* Remove default focus ring unless wanted */
.dropdown-content .item a:focus {
  outline: none;
}


.menu li.dropdown:hover .services-dropdown {
  display: grid;
}

.menu li.dropdown:hover .sectors-dropdown {
  display: grid;
}

/* SERVICES DROPDOWN */
.services-dropdown {
  
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px;
  
  
  position: absolute;
  
  
  
  display: none;
  
  position: absolute;
  top: 100%;
  left: calc(50% - 85px);
  transform: translateX(-58%);
  z-index: 9999;

  background: rgba(255, 0, 0, 0.95);
  border-radius: 20px;
  padding: 30px;

  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  width: 850px;
  max-width: calc(100vw - 32px); /* Optional safety */
}


/* SECTORS DROPDOWN */
.sectors-dropdown {
  
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px; /* row-gap, column-gap */
  padding: 30px;
  
  
  
  transform: translateX(-50%);
  
  border-radius: 20px;
  
  
  position: absolute;
  top: 100%;
  left: calc(50% - 170px);
  transform: translateX(-58%);
  z-index: 9999;

  background: rgba(255, 0, 0, 0.95);
  border-radius: 20px;
  padding: 30px;

  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  width: 850px;
  max-width: calc(100vw - 32px); /* Optional safety */
}



.services-dropdown div,
.sectors-dropdown div {
  color: white;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  line-height: 1.4;
}

.services-dropdown .item span {
  display: inline-block;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.sectors-dropdown .item span {
  display: inline-block;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.services-dropdown .item span {
  display: inline-block;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.services-dropdown .item span:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: black;
}
.sectors-dropdown .item span:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: black;
}
.sectors-dropdown .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Footer Styling */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 40px 60px;
  border-top: 1px solid #eee;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 220px;
}

.footer-column.left ul {
  list-style: none;
  padding: 0;
}

.footer-column.left ul li {
  margin-bottom: 10px;
}

.footer-column.left ul li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.footer-column.left ul li a.active {
  color: orange;
  font-weight: bold;
}

.footer-column.center h4,
.footer-column.right h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column.center p {
  margin-bottom: 5px;
  color: #333;
}

.footer-column.center a {
  text-decoration: none;
  color: #000;
}

.footer-column.right .footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-contact-btn {
  display: inline-block;
  background: red;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 2px;
}

.blog-article {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  max-width: 794px;    /* A4 width in px at 96dpi */
  min-height: 1123px;  /* A4 height in px at 96dpi */
  margin: 40px auto;
  box-shadow: 0 8px 32px rgba(34,54,65,0.16), 0 1.5px 8px rgba(34,54,65,0.08);
  padding: 60px 60px 40px 60px;
  font-family: 'Wix Madefor Text', Arial, sans-serif;
  display: block;
  position: relative;
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;   /* Subtle light background */
}


@media (max-width: 850px) {
  .blog-article {
    max-width: 98vw;
    min-height: unset;
    padding: 24px 6vw;
    border-radius: 8px;
  }
}

.blog-meta {
  display: flex;
  align-items: center;
  color: #757575;
  font-size: 16px;
  margin-bottom: 18px;
}

.blog-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
}

.blog-dot {
  margin: 0 7px;
}

.blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.blog-updated {
  color: #757575;
  font-size: 14px;
  margin-bottom: 18px;
}

.blog-content h2 {
  font-size: 1.18rem;
  margin-top: 22px;
  margin-bottom: 4px;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 6px;
}

.blog-content ul, .blog-content ol {
  margin-left: 18px;
  margin-bottom: 10px;
}

.blog-content ul li, .blog-content ol li {
  margin-bottom: 7px;
  line-height: 1.6;
}

.blog-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .blog-article {
    padding: 18px 7vw;
  }
}
