/* Header */
header {
  background: linear-gradient(to right, #f9f9ff, #ffffff);
  position: relative;
  padding: 20px 0;
  z-index: 1;
}

/* Header child container */
header .header_child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 210px;
}

/* Right Side */
header .right-side {
  display: flex;
  gap: 20px;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}

/* Navigation */
header nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

header nav a {
  text-decoration: none;
  font-size: 18px;
  color: #222B45;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #6a5acd;
}

/* Dropdown */
header .dropdown {
  position: relative;
}

header .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  white-space: nowrap;
  border-radius: 12px;
  padding: 10px;
}

header .dropdown-content a {
display: block;
    padding: 6px 10px;
    color: #333;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
    font-size: 15px;
	margin-bottom: 4px;
}

header .dropdown-content a:hover {
  color: #ffffff;
  background-color: #6a5acd;
}
header .dropdown-content a.active-sub{
	color: #ffffff;
   background-color: #6a5acd;
}

header .dropdown:hover .dropdown-content {
  display: block;
}

/* Contact Section */
header .contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

header .contact-info img {
  margin-right: 10px;
}

header .contact-info a {
  text-decoration: none;
  font-size: 18px;
  color: #222B45;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

header .contact-info span {
  color: #333;
}

/* Button */
header .btn {
  background: #7468F1;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 2px;
}

header .btn:hover {
  border: 1px solid #7468F1;
  color: #7468F1;
}

/* Hamburger (Mobile) */
header .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* ----------- Responsive ----------- */


/* Large Screens */
@media (max-width: 1200px) {
  header nav {
    gap: 25px;
  }

  header nav a {
    font-size: 16px;
  }

  header .contact-info a {
    font-size: 16px;
  }

  header .btn {
    padding: 6px 14px;
    font-size: 10px;
  }

}

/* Tablets */
@media (max-width: 992px) {
  header {
    padding: 15px 20px;
    align-items: center;
  }

  .navbar_call_sms {
    display: flex;
  }

  header nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
  }

  header nav.active {
    display: flex;
  }

  header .contact-info {
    width: 100%;
    gap: 0;
    margin-bottom: 0;
  }

  header .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  header .contact-info a span {
    display: none;
  }

  header .contact-info img {
    width: 25px;
  }

  header .navbar_call_sms {
    display: flex;
    align-items: center;
  }
}

/* Small Screens */
@media (max-width: 540px) {
  header .logo img {
    width: 150px;
  }
}