/* Header */
.main-header {
  background: #ffffff !important;
  padding: 12px 0 8px 0;
  border-bottom: 10px solid #1D9E75 !important;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 5px 15px rgba(29, 158, 117, 0.3);
}

/* Container */
.header-container {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Section */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-link img {
  width: 80px;
  height: auto;
}

.site-title {
   font-size: 30px;
   font-weight: 700;
   color: #1D9E75;
 }

 .highlight {
   font-size: 32px;
   font-weight: 800;
   color: #1D9E75;
 }

/* Menu + Icons */
.menu-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Nav Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding: 10px 18px;
  background: #eee;
  border-radius: 10px;
  transition: 0.3s;
  display: block;
}

.nav-menu ul li a:hover {
  background: #1D9E75;
  color: #fff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:nth-child(1) { background: #1877f2; }
.social-icons a:nth-child(2) { background: #ff0000; }
.social-icons a:nth-child(3) { background: #25d366; }

.social-icons a:nth-child(4) { background: #1D9E75; }

.social-icons a:hover {
  transform: scale(1.1);
}

.login-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

/* Quick Menu - Always Visible */
.quick-menu {
  display: flex !important;
  gap: 10px;
}

.quick-menu a {
  width: 45px;
  height: 45px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #1D9E75;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.quick-menu a:hover {
  background: #17785a;
  transform: scale(1.1);
}

.quick-menu a i {
  color: #fff;
}

/* Responsive - Desktop */
@media(min-width: 993px) {
  .nav-menu { display: flex !important; }
  .social-icons { display: flex !important; }
}

/* Responsive - Tablet/Mobile */
@media(max-width: 992px) {
  .site-title { font-size: 22px; }
  .highlight { font-size: 26px; }
  .logo-link img { width: 60px; }
  .nav-menu ul li a { padding: 8px 14px; font-size: 16px; }
  .nav-menu { display: none !important; }
  .social-icons { display: none !important; }
}

/* Responsive - Mobile */
@media(max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo-link {
    flex-direction: column;
    gap: 8px;
  }

  .site-title { font-size: 24px; }
  .highlight { font-size: 28px; }

  .menu-icons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .quick-menu {
    justify-content: center;
    display: flex;
  }

  .quick-menu a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Very Small Mobile */
@media(max-width: 480px) {
  .site-title { font-size: 20px; }
  .highlight { font-size: 24px; }
  .logo-link img { width: 50px; }
  .quick-menu a { width: 44px; height: 44px; font-size: 18px; }
}
