* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: serif;
}

body {
  padding-top: 140px;
}

/* RTL */
body.rtl {
  direction: rtl;
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f7931e;
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1001;
}

.top-item {
  background: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

/* Header */
.header {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: #1e3a8a;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
}

.logo h2 {
  color: #1e3a8a;
  font-size: 20px;
}

.logo p {
  font-size: 12px;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
}

/* Nav */
nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  gap: 2rem;
  font-family: Arial, Helvetica, sans-serif;
}

nav a.active {
  color: #334155;
  border-bottom: 2px solid #d4af37;
}

.call-btn {
  background: #1e3a8a;
  color: #fff;
  border: none;
  font: 14px;
  padding: 8px 16px;
  border-radius: 6px;
}

/* Hero */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(10, 35, 90, 0.85), rgba(10, 35, 90, 0.85)),
    url(assets/photo-1512453979798-5ea266f8880c.jpg) center/cover;
  text-align: center;
  color: #fff;
  padding: 120px 20px;
}

.badge {
  background-color: #f59e0b33;
  padding: 8px 18px;
  border: 1px solid rgb(251 191 36 / var(--tw-text-opacity, 1));
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 25px;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}

.ae-small {
  font-size: 70%;
  letter-spacing: 0.5px;
  font-family: Arial, Helvetica, sans-serif;
}

.hero h1 {
  font-size: 52px;
}

.hero h1 span {
  color: #4f9cff;
}

.hero p {
  margin: 25px 0;
  font-size: 18px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
}

.btn.primary {
  background: #f7931e;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
nav a {
  position: relative;
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #d4af37;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* No underline for Home by default */
nav a.active::after {
  width: 0%;
}
/* Remove underline effect from Call Us */
nav a.call-link::after {
  display: none;
}
