
	:root {
            --primary: #2563eb;
            --primary-soft: #f0f7ff;
            --bg: #f8fafc;
            --white: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --accent: #0f172a;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text-main); line-height: 1.6; }

      
        

.menu-header {
  background: #111;
  color: #fff;
  position: fixed;
  width: 100%;
  z-index: 445154;
  top: 0;
  margin-bottom: 100px;
}

.ft-color{color: #2563eb;}


.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
      margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  padding: 10px 20px;
}
.logo a{text-decoration: none;color: white;}
.logo span {
  color: var(--primary);;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.menu li {
  position: relative;
}

.menu a,
.menu label {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.menu a:hover,
.menu label:hover {
  background: var(--primary);;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #222;
  top: 100%;
  left: 0;
  min-width: 220px;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* SEARCH */
.search-box input {
  padding: 12px;
  border: none;
  border-radius: 3px;
}

/* TOGGLE ICON */
.menu-icon {
  display: none;
  font-size: 26px;
  padding: 10px 20px;
  cursor: pointer;
}

/* HIDE CHECKBOX */
#menu-toggle,
#drop-toggle {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-icon {
    display: block;
  }

  .nav {
    width: 100%;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  /* FIX: correct selector */
  #menu-toggle:checked ~ .nav .menu {
    display: flex;
  }

  .menu li {
    width: 100%;
    border-top: 1px solid #333;
  }

  /* Dropdown fix */
  .dropdown-menu {
    position: static;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* CLICK dropdown (checkbox hack) */
  #drop-toggle:checked + label + .dropdown-menu {
    display: block;
  }

  /* Search full width */
  .search-box {
    width: 100%;
    padding: 10px;
  }

  .search-box input {
    width: 100%;
  }
}
.search-box {
  position: relative;
  min-width: 220px; /* important */
}

#searchResults {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: #222;
  border-radius: 6px;
  display: none;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.hero-section{margin-top: 60px !important;}
/* FIX: menu ko push na kare */
.menu {
  overflow: visible;
}

        
         /* --- FOOTER --- */
        footer { background: #0f172a; color: #94a3b8; padding: 80px 20px; margin-top: 60px; }
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px;text-align: center; }
        .footer-col h4 { color: white; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; font-size: 14px; }
        .footer-col a { color: inherit; text-decoration: none; }
        .footer-col a:hover { color: white; }

        @media (max-width: 800px) {
            .menu-container{width: 100%}
        }
