body, html {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
}

/* NAVBAR */
.navbar {
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 2rem;
}

.navbar-brand {
    color: #3B82F6 !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00796B !important;
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* MEGA DROPDOWN MENU */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 600px;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: flex;
    opacity: 1;
}

.mega-menu {
    display: flex;
    background-color: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.menu-left {
    width: 40%;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 1rem;
}

.menu-right {
    width: 60%;
    background-color: #fff;
    padding: 1rem 1.5rem;
}

.menu-left button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0.7rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.menu-left button:hover,
.menu-left button.active {
    background-color: #E0F2F1;
    color: #00796B;
}

.menu-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-right li {
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: #333;
    cursor: pointer;
}

.menu-right li:hover {
    background-color: #3B82F6;
    color: white;
    text-decoration: none;
}

/* BUTTONS */
.btn-login {
    background-color: #3B82F6;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #2563EB;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* Mega Menu */
.mega-menu {
  display: flex;
}

.menu-left {
  flex: 1;
  padding: 1rem;
  border-right: 1px solid #ddd;
}

.menu-right {
  flex: 2;
  padding: 1rem;
}

.menu-right ul {
  list-style: none;
  padding: 0;
}

.menu-right ul li {
  padding: 0.25rem 0;
}

/* Section Styles */
.back {
  background: #e5f3ff;
  padding: 2rem 1rem;
  border-radius: 12px;
}

.whatus {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(to right, #6a82fb, #8e44ad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guideline-card {
  margin-bottom: 1rem;
}

.workscolor {
  color: #6a82fb;
}
