/* ---------- BASIC HEADER ---------- */
.mc-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  position: relative;
  z-index: 100;
}

.mc-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-logo img {
  height: 52px;
}

/* ---------- MAIN NAV ---------- */
.mc-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.mc-nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 5px;
}

/* ---------- DROPDOWN / MEGA MENU ---------- */
.dropdown {
  position: relative;
  padding-bottom:21px;
}

.dropdown .mega-menu {
  position: absolute;
  top: 53px;
  left: 0;
  width: 1000px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dropdown:hover .mega-menu {
  display: grid;
}

/* ---------- MEGA MENU COLUMNS ---------- */
.mega-col a {
  display: block;
  color: #333;
  margin: 4px 0;
  font-size: 15px;
}

.mega-col a:hover {
  color: #2da652;
}

/* ---------- COLORED HEADINGS ---------- */
.menu-heading {
  font-weight: 700;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 6px;
  margin-bottom: 10px;
}

.blue { background:#cee9b6; color:#000; }
.orange { background: #d8b99e; color: #53463a; }
.pink { background:#cee9b6; color:#000; }
.red { background: #d8b99e; color: #53463a;}
.blue2 {background:#cee9b6; color:#000; }
.grey { background: #d8b99e; color: #53463a; }
.purple {background:#cee9b6; color:#000; }

.mt20 { margin-top: 22px; }

/* ---------- RIGHT IMAGE ---------- */
.image-col img {
  width: 100%;
  border-radius: 8px;
}

/* ---------- RIGHT ICONS ---------- */
.mc-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 22px;
  position: relative;
  cursor: pointer;
}

.badge {
  background: red;
  color: #fff;
  padding: 1px 6px;
  font-size: 12px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -8px;
}

.donate-btn {
  background: #e92b2b;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
}


nav.mc-nav > ul > li a {
 font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 30px 3px 0px;
    border-right: 2px solid #eaeaea;
    font-family: Poppins, Arial;
    margin: 2px 0 0 0;
    display: block;

}

nav.mc-nav > ul  {
margin:20px 0 0;}


.mega-menu  a {
    font-size: 15px !important;
    text-transform: capitalize !important;
    padding:2px !important;   
    font-weight: 400 !important;
}

h4.menu-heading {
    font-size: 13px;
    font-weight: 800 !important;
}

a.navmainlink {
    background: transparent;
}

a.navmainlink.red  {
color:red;
}

a.navmainlink.blue  {
color:#2196F3;
}
a.navmainlink.green  {
color:#9db487;
}