/* === Topbar === */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.topbar {
  background: #17262b;
  color: #ddd;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding: 5px 40px;   /* kam height ke liye */
  font-size: 14px;
}

.topbar i {
  margin-right: 6px;
  color: #a9a8a8;
}
.topbar-left{
    margin-left: 13px;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.topbar-center{
  font-size: 16px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.topbar-left, .topbar-center{
  display: flex;
  padding: 10px 0;  /* top padding for alignment */
  width: 27%;
  align-items: center;
  gap: 4px;
}
 .topbar-right {
    display: flex;
    align-items: center;
    padding: 10px 0;  /* top padding for alignment */
    /* gap: 15px; */
    width: 60%;
    justify-content: flex-end;
    
 }
.topbar-right a {
  color: #989898;
  margin-left: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.topbar-right a:hover {
  color: #ff2e7e;
}

/* === Header === */
.header {
  background: #132125;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 40px;  /* compact spacing */
  border-top: 1px solid rgba(229, 227, 227, 0.07);
}

.logo-section {
    /* width: 35%; */
  display: flex;
  align-items: center;
}

.logo-section img {
  height: 100px;   /* height balance */
  margin-right: 12px;
}

.nav {
    /* width: 65%; */
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: rgb(218, 217, 217);
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #ff2e7e;
}

/* Dropdown Menu */
.nav-menu li {
  position: relative;
}

.nav-menu .dropdown {
  display: none; /* Change to block for testing */
  position: absolute;
  top: 100%;
  left: 0;
  background: #2d2d2d;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(46, 46, 46, 0.15);
  z-index: 999;
  border-radius: 5px 5px 8px 8px;
  padding: 0;
  list-style: none; /* Hide list style circles */
}

.nav-menu li:hover > .dropdown {
  display: block;
}

.nav-menu .dropdown li {
  width: 100%;
}

.nav-menu .dropdown li a {
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: none;
  text-decoration: none;
}

.nav-menu .dropdown li a:hover {
  background: #ff2e7e;
  color: #fff;
}

/* === Verify Button === */
.verify-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;   /* text aur arrow ke beech gap */
  border: 1px solid #ff2e7e;
  padding: 8px 18px;
  border-radius: 8px;
  color: #ff2e7e;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.verify-btn i {
  background: white;
  color: black;
  border-radius: 50%;
  padding: 5px;
  font-size: 12px;
}

.verify-btn a:hover {
  background: #ff2e7e;
  color: white;
}

.verify-btn a:hover i {
  background: white;
  color: #ff2e7e;
}
