/* ========================== TOP BAR ========================== */
.top-bar {
  background: linear-gradient(90deg, #e10980, #d51c80);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
}

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

/* ========================== SOCIAL ICONS ========================== */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(225, 9, 128, 0.3);
}

.social-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.social-icons a:hover img { transform: scale(1.08); }


/* ========================== NAVBAR ========================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(225, 9, 128, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1300px;
  margin: auto;
}

.logo img {
  width: 130px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #2b2b2b;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #e10980, #499cc8);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}



.nav-links a:hover,
.nav-links a.active {
  color: #e10980;
}

/* ====== Search Box ====== */
.search-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #e10980;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.3s ease;
}

.search-box input {
  padding: 8px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  width: 160px;
  transition: width .25s ease;
}

.search-box:focus-within input {
  width: 320px;
}

.search-box button {
  background: linear-gradient(90deg, #e10980, #499cc8);
  color: #fff;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.search-box button:hover {
  opacity: 0.85;
}

/* ====== Mobile Menu ====== */
.menu-toggle {
  display: none;
  color: #e10980;
  font-size: 26px;
  cursor: pointer;
}

/* ========================== TOP BAR ========================== */
.top-bar {
  background: linear-gradient(90deg, #e10980, #d51c80);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
}

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

/* ========================== SOCIAL ICONS ========================== */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(225, 9, 128, 0.3);
}

.social-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.social-icons a:hover img { transform: scale(1.08); }


/* ========================== NAVBAR ========================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(225, 9, 128, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1300px;
  margin: auto;
}

.logo img {
  width: 130px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #2b2b2b;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #e10980, #499cc8);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}



.nav-links a:hover,
.nav-links a.active {
  color: #e10980;
}

/* ====== Search Box ====== */
.search-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #e10980;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.3s ease;
}

.search-box input {
  padding: 8px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  width: 160px;
  transition: width .25s ease;
}

.search-box:focus-within input {
  width: 320px;
}

.search-box button {
  background: linear-gradient(90deg, #e10980, #499cc8);
  color: #fff;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.search-box button:hover {
  opacity: 0.85;
}

/* ====== Mobile Menu ====== */
.menu-toggle {
  display: none;
  color: #e10980;
  font-size: 26px;
  cursor: pointer;
} 
@media (max-width: 1024px) {

  .menu-toggle {
    display: block;
    z-index: 100001;
  }

  .nav-links {
    position: fixed;
    top: 110px;              /* SAME ON ALL PAGES */
    right: 16px;

    width: 92%;
    max-width: 340px;

    display: none;
    flex-direction: column;
    gap: 14px;

    padding: 18px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);

    z-index: 99999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;

    background: #ffffff;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 500;

    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: 0.25s ease;
  }

  /* ACTIVE PAGE HIGHLIGHT */
  .nav-links a.active {
    background: #dc8fb0;
  color: #e10980;
  font-weight: 600;
  }

  .nav-links a:hover {
    background: #b989ae;
  }

  .nav-links a::after {
    display: none !important;
  }
}
