* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5f5f5;
}

.header {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Roboto', sans-serif;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
  padding: 0 20px;
}

.header-item {
  display: flex;
  align-items: center;
  flex-grow:0;
  min-width: auto;
  width: auto;
}

.header-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.header-item h5 {
  margin: 0;
  font-size: 18.5px;
  font-weight: 700;
  color: #333;
}

.header-item p {
  margin: 5px 0 0;
  font-size: 17.5px;
  color: #555;
}

.header-item a {
  color: inherit;
  text-decoration: none;
}

.email-link,
.phone-link,
.location-link {
  color: inherit;
  text-decoration: none;
}

.email-link:hover,
.phone-link:hover,
.location-link:hover {
  color: #1a5a89;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-item {
    justify-content: center;
  }

  .header-icon {
    margin-right: 10px;
  }
}

/* Navbar */
.navbar {
  background-color: #f3f3f3;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.navbar ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.navbar li {
  position: relative;
}

.navbar li a {
  text-decoration: none;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 5px;
  font-size: 17px;
  display: inline-block;
}

.navbar li a:not(.contact-btn):hover::after,
.navbar li a:not(.contact-btn).active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #1a5a89;
  bottom: -8px;
  left: 0;
}

.navbar li a:hover {
  color: #1a5a89;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #f3f3f3;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  z-index: 1000;
  min-width: 180px;
  width: max-content;
  list-style: none;
  text-decoration: none;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  border-bottom-color: transparent !important;
}

.navbar .dropdown-menu li {
  width: 100%;
}

.navbar .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-menu li a:hover {
  background-color: #d0d7dc;
  color: #0a1f50;
}

.navbar .dropdown-menu li a::after {
  display: none !important;
  content: none !important;
}

.contact-btn {
  background-color: #418bdc;
  display: inline-grid;
  place-items: center;
  height: 45px;
  min-width: 150px;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  padding-top: 12px;
}

.contact-btn::after {
  display: none !important;
}

.contact-btn:hover {
  background-color: #2f74c4;
}

.navbar li.logo {
  margin-left: -20px;
}

.navbar li.logo img {
  height: 55px;
}

.navbar li.logo a::after {
  content: none !important;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  vertical-align: middle;
  color: #02070a;
  user-select: none;
  padding-top: 10px;
}

.dropdown-arrow:hover {
  color: #1a5a89;
}

/* Hamburger Nav for Mobile */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1a1a1a;
  padding: 15px 20px;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1001;
}

.nav-mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-mobile-header .logo img {
  height: 50px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: static;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0;
    margin-left: 10px;
    z-index: 1001;
  }

  .nav-mobile-header {
    display: flex;
  }

  .navbar ul {
    display: none !important;
  }

  .navbar li.logo {
    margin: 0;
  }

  .navbar li.logo img {
    height: 50px;
  }
}

.pcis-sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  background-color: rgba(5, 41, 73, 0.95);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 0 30px;
  visibility: hidden;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.pcis-sidenav.open {
  width: 300px;
  visibility: visible;
  opacity: 1;
}

.pcis-close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.pcis-logo {
  width: 150px;
  margin-bottom: 60px;
  display: block;
}

.pcis-nav-link {
  padding: 12px 0;
  font-size: 20px;
  text-decoration: none;
  color: white;
  width: 100%;
  text-align: center;
  transition: background 0.3s;
}

.pcis-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(229, 229, 229);
}

.pcis-dropdown {
  width: 100%;
}

.pcis-dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.pcis-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  padding-top: 5px;
}

.pcis-dropbtn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(229, 229, 229);
}

.pcis-dropdown-content a {
  color: white;
  text-decoration: none;
  padding: 8px 0;
  font-size: 18px;
  text-align: center;
}

.pcis-dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.pcis-contact-btn {
  background-color: #3471b3;
  color: white;
  padding: 12px 25px;
  margin: 30px 0;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s;
}

.pcis-contact-btn:hover {
  background-color: #3e638b;
}

.pcis-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 100px;
}

.pcis-social-icons a {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.696);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.pcis-social-icons a:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.1);
}

.pcis-social-icons i {
  display: none;
}

.pcis-social-icons a img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.pcis-social-icons a:hover img {
  filter: brightness(1) invert(0);
}

body.pcis-sidenav-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0.9;
  z-index: 199;
}

@media (min-width: 769px) {
  .navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

#side-socials {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 5px 0;
  z-index: 9999;
}

#side-socials a {
  color: white;
  font-size: 13px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

#side-socials a:hover {
  transform: scale(1.1);
}

.facebook-awesome-social {
  background-color: #3b5998;
}

.linkedin-awesome-social {
  background-color: #0077b5;
}

.instagram-awesome-social {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%, #285AEB 90%);
}

.email-awesome-social {
  background-color: #37a5f5;
}

.pcis-footer {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #275c94;
  color: #fff;
  width: 100%;
  padding: 40px 20px 20px;
  margin-top: 0;
}

.pcis-footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.pcis-footer-logo-img {
  height: 60px;
  margin-bottom: 15px;
}

.pcis-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 100px;
}

.pcis-footer-links,
.pcis-footer-contact,
.pcis-company-links,
.pcis-follow-us {
  flex: 1;
  min-width: 220px;
  padding: 0 15px;
}

.pcis-footer-heading {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pcis-footer-list {
  list-style: none;
  padding: 0;
}

.pcis-footer-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.pcis-footer-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #fefeff;
  font-weight: bold;
}

.pcis-footer-list a {
  color: #f3f5f9;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s;
  display: inline-block;
  padding: 3px 0;
}

.pcis-footer-list a:hover {
  color: #fff;
  transform: translateX(5px);
}

.pcis-contact-item {
  display: flex;
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 17px;
  color:  #f3f5f9;
  align-items: flex-start;
}

.pcis-contact-icon {
  margin-right: 12px;
  color: #fff;
  width: 20px;
  margin-top: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.pcis-contact-item a {
  color: #ecf5ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pcis-contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  color:#275c94;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 20px;
}

.footer-social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: rgb(154, 190, 221);
}

.pcis-footer-bottom {
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #cce4ff;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pcis-footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .pcis-footer-links,
  .pcis-footer-contact,
  .pcis-company-links,
  .pcis-follow-us {
    padding: 0;
    text-align: center;
  }

  .pcis-contact-item {
    justify-content: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .pcis-footer-list li {
    padding-left: 0;
  }

  .pcis-footer-list li::before {
    position: static;
    margin-right: 8px;
  }
}

