:root {
  --primary: #3b3ba0;
  --secondary: #467946;
  --accent: #E9FCE9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
}

/* HEADER */
.header {
  background: var(--primary);
  color: #fff;
  position: relative;
  top: 0;
  z-index: 1000;
}

.top-bar {
  max-width: 1400px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
  width: 70px;
  border-radius: 50%;
  image-rendering: auto;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  position: relative;
  color: #fff;

}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* BROCHURE BUTTON */
.brochure-btn {
  background: var(--secondary); /* 30% */
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
}


/* COMPANY INFO */
.company-info {
  text-align: center;
  padding: 10px 20px 25px;
}

.company-info #arab { 
  font-size: 50px;

}

.company-info h1 {
  color: black;
  font-size: 40px;
  margin-top: 20px;
}



.company-info p {
  font-size: 25px;
  opacity: 1;
  margin-top: 20px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.light-bg {
  background: var(--accent);
}

.container {
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 30px;
}

.container p {
  text-align: center;
  font-size: 19px;
  margin-bottom: 19px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.service-overlay {
  background: rgba(59, 59, 160, 0.5);
  color: white;
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-overlay h3 {
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

}

/* ADDRESS */
.address-box {
  text-align: center;
  font-size: 16px;
}

/* FOOTER */
.footer {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
}

/* MOBILE UX */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .company-info h1 {
    font-size: 19px;
  }

  .company-info #arab { 
  font-size: 28px;

}

.company-info p {
  font-size: 15px;
  opacity: 1;
  margin-top: 20px;
}
}
