* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a,
.dropdown-btn {
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.cta {
  display: flex;                      
  align-items: center;                
  justify-content: space-between;     
  padding: 0px 0px 0px 6px;                 /* space around text */
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;                        /* no border on button itself */
  border-radius: 25px;
  background: linear-gradient(90deg, #F9BC15, #33A852, #547DBF, #EA4435);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;                   /* ensures button doesn’t shrink too much */
}

.cta-arrow {
  display: flex;                       /* flex to center arrow */
  align-items: center;
  justify-content: center;
  width: 42px;                          /* circle size */
  height: 42px;   
  background: #ffffff00;                      /* white circle */
  color: #ffffff;                           /* arrow color */
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #fff;               /* circle border */
  border-radius: 50%;                    /* makes circle */
  margin-left: 12px;                     /* space from text */
  transition: transform 0.3s ease;       /* for hover effect */
}

.cta:hover .cta-arrow {
  transform: translateX(4px);           /* arrow slides slightly on hover */
}



/* ===============================
   SERVICES MEGA DROPDOWN
================================ */

.dropdown {
  position: relative;
}

/* MAIN DROPDOWN CARD */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  min-height: 260px;

  background: #0b66e4;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);

  display: none;
  padding: 18px;
  gap: 18px;
  z-index: 999;
}

/* keep open */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex;
}

/* hover bridge */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

/* LEFT COLUMN */
.dropdown-left {
  width: 30%;
  background: rgba(255, 255, 255, 0);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* LEFT TABS */
.tab {
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
}

.tab:hover {
  background: rgba(255,255,255,0.12);
}

.tab.active {
  background: #FFFFFF80;
  color: #FFFFFF;
  font-weight: 600;
}

/* RIGHT COLUMN */
.dropdown-right {
  background: rgba(255,255,255,0.08);
  border-radius:7px;
  width: 70%;
  padding: 6px 6px 6px 16px;
}

/* CONTENT GRID */
.tab-content {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.tab-content.active {
  display: grid;
}

/* LINKS */
.tab-content a {
  color: #ffffff;
  font-size: 14px;
  padding: 6px 0;

  text-decoration-line: underline;
  text-decoration-color: #000000; /* black underline */
  text-decoration-thickness: 1px;
  text-underline-offset: 10px; /* gap from text */

  transition: opacity 0.2s ease;
}

.tab-content a:hover {
  opacity: 0.75;
}

.logo img {
  height: 40px;
  width: auto;
}
.mm-img {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/*# sourceMappingURL=style.css.map */
/* ===============================
   RESPONSIVE HEADER
================================ */
/* ===============================
   RESPONSIVE HEADER MOBILE (≤992px)
================================ */
/* MOBILE DROPDOWN FIXES */
@media (max-width: 992px) {
  /* Container */
  .container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
  }

  /* Hamburger menu */
  .hamburger {
    display: block !important;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  /* Nav links */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 998;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .dropdown-btn {
    padding: 14px 20px;
    font-size: 16px;
  }

  /* Services dropdown */
  .dropdown {
    position: relative;
    width: 100%; /* full width parent for mobile */
    display: flex;
    justify-content: center; /* centers dropdown button horizontally */
  }

    .dropdown-menu {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%); /* properly center */
    width: 100vw;
    max-width: 100%;
    display: none; /* hide initially */
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .dropdown-menu.show {
    display: flex;
  }

  /* Left and Right columns stacked */
  .dropdown-left,
  .dropdown-right {
    width: 100%;
    padding: 8px 0;
  }

  .dropdown-left {
    margin-bottom: 16px;
  }

  /* Tabs */
  /* Ensure tabs are properly sized and clickable */
  .dropdown-left .tab {
    width: 100%;          /* full width */
    min-height: 48px;     /* ensure height */
    padding: 12px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-right .tab-content a {
    display: block;
    width: 100%;
  }

  .tab.active {
    background: #ffffff80;
    color: #fff;
    font-weight: 600;
  }

  /* Tab content links stacked vertically */
  .tab-content {
    display: none;
    flex-direction: column;
    gap: 12px;
  }

   .dropdown-right {
    width: 100%;
    max-height: 300px;                 /* vertical scroll starts here */
    overflow-y: auto;                  /* vertical scroll */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  .dropdown-right .tab-content {
    display: flex;
    flex-direction: column;            /* vertical stacking */
    gap: 12px;
  }

  .dropdown-right .tab-content a {
    display: block;
    padding: 8px 12px;
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .tab-content.active {
    display: flex;
  }

  .tab-content a {
    display: block;
    font-size: 16px;
    padding: 8px 0;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap; /* prevents wrapping, enables horizontal scroll */
  }

  .tab-content a:hover {
    opacity: 0.8;
  }

  /* CTA and logo adjustments */
  .cta {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    margin-top: 12px;
  }

  .logo img {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .dropdown-left .tab {
    font-size: 14px;
  }


  .dropdown-right .tab-content a {
    font-size: 14px;
  }

  .cta {
    font-size: 14px;
    padding: 10px 12px;
  }

  .logo img {
    height: 35px;
  }
}

 /* Hide hamburger by default */
.hamburger {
  display: none !important; /* force hide on desktop */
  cursor: pointer;
  border: none;
  background: none;
  font-size: 24px;
}

/* Show hamburger on tablet/mobile */
@media (max-width: 992px) {
  .hamburger {
    display: block !important;
  }
}

