* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}
/*
header {
  background: #007ACC;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #007ACC;  /* Maintains your brand color */
}

.logo img {
  height: 50px;
  width: auto;
  max-height: 60px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-monogram {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #007ACC;
  /*color: #FFFFFF;*/
  font-family: 'Segoe UI', sans-serif;
  text-transform: uppercase;
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.15rem;
  /*color: #333;*/
  color: #FFF;
  font-family: 'Segoe UI', sans-serif;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline;
}

.menu a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s, border 0.3s;
}

.menu a.active,
.menu a:hover {
  color: #fff;
  border-bottom: 2px solid #ff9800;
}

.logo-monogram {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #007ACC;
  font-family: 'Segoe UI', sans-serif;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1s ease-in-out forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.logo-monogram:hover {
  color: #ff9800;
  transition: color 0.3s ease;
}



/*
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
*/

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  max-height: 60px;
}
nav .menu {
  display: flex;
  gap: 1.5rem;
}
nav .menu li {
  list-style: none;
}
nav .menu a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s, border 0.3s;
}
nav .menu a.active,
nav .menu a:hover {
  color: #fff;
  border-bottom: 2px solid #ff9800;
}

.icon-banner {
  background: #cce6ff;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #99ccf9;
}
.icon-row {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: center;
}
.icon-row.rtl {
  direction: rtl;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  direction: ltr;
}
.icon-item img {
  max-width: 60px;
  margin-bottom: 0.5rem;
}
.icon-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
}

.hero {
  background: linear-gradient(to right, #cce6ff, #99ccf9);
  text-align: center;
  padding: 5rem 2rem;
  color: #222;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 3rem 2rem;
}
.feature-card {
  background: #fff;
  padding: 1.25rem;
  border-left: 5px solid #ff9800;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about, .services-list, .contact-form {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.services-list .service-item {
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #007ACC;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #bbb;
  border-radius: 4px;
}
.contact-form button {
  padding: 0.75rem;
  background: #007ACC;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #005fa3;
}

.icon-banner {
  background: #e8f2fa;
  overflow: hidden;
  padding: 1.5rem 0;
  border-bottom: 2px solid #99ccf9;
}

.icon-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.icon-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1.5rem;
  text-align: center;
}

.icon-item img {
  width: 50px;
  height: auto;
  margin-bottom: 0.5rem;
}

.icon-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}


footer {
  background: #007ACC;
  color: #ddd;
  text-align: center;
  padding: 1.5rem 0;
}