/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: white;
}

/* ===== OFFER CARD ===== */
.offer-card {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ff8a00;
  color: #fff;
  width: 130px;
  padding: 18px;
  border-radius: 12px 0 0 12px;
  box-shadow: -5px 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.offer-icon {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #ff8a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.offer-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.offer-card p {
  font-size: 14px;
  font-weight: 600;
}

.offer-arrow {
  margin-top: 15px;
  font-size: 22px;
}

.fixed-offer {
  position: fixed;
  right: 0;
  top: 35%;
  background: orange;
  color: white;
  width: 120px;
  padding: 18px 14px;
  border-radius: 18px 0 0 18px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  cursor: pointer;
}

/* ICON */
.offer-icon {
  background: white;
  color: orange;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: auto;
  margin-bottom: 12px;
}

/* TEXT */
.offer-text {
  font-size: 14px;
}

/* ARROW */
.offer-arrow {
  font-size: 22px;
  margin-top: 10px;
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 6px 30px;
  font-size: 14px;
  background: black;
  color: orange;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: black;
  position: sticky;
  top: 0;
  z-index: 999;
  height: 72px;
  color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  width: 90px;
}

.logo span {
  color: orange;
}

.small-logo h3 {
  color: #fff;
}
/* NAV MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links li {
  position: relative;
  cursor: pointer;
  font-size: 14px;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* ARROW */
.nav-links li .nav-arrow {
  font-size: 12px;
  margin-left: 4px;
  transition: 0.3s;
}

/* DROPDOWN */
/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 18px;
  left: 0;
  width: 1000px;
  background: #1b1b1b;
  padding: 30px;
  border-radius: 14px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.mega:hover .mega-menu {
  display: grid;
}

.mega-column h4 {
  color: orange;
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-column a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.mega-column a:hover {
  color: orange;
  transform: translateX(6px);
}

.dropdown-menu a {
  text-decoration: none;
  color: white;
  padding: 12px 16px;
  display: block;
  transition: 0.3s;
}

/* SMALL MEGA MENU (DATA & AI) */
.mega-menu.small {
  width: 720px;
  grid-template-columns: repeat(2, 1fr);
}

/* SECURITY DROPDOWN */
.mega-menu.Security {
  width: 300px;
  grid-template-columns: repeat(1, 1fr);
}

/* INDUSTRIES MEGA MENU */
.industries-menu {
  position: absolute;
  top: 18px;
  left: -236px;
  background: #1b1b1b;
  gap: 22px;
  padding: 28px;
  border-radius: 14px;
  display: none;
  grid-template-columns: repeat(5, 1fr);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.industries-menu a {
  display: block;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s;
}

.industries-menu i {
  font-size: 16px;
}

.industries-menu a:hover {
  color: orange;
  transform: translateX(6px);
}

/* SHOW DROPDOWN */

.mega-menu.On-Demand {
  width: 200px;
  grid-template-columns: repeat(1, 1fr);
}

.nav-links li:hover .nav-arrow {
  transform: rotate(180deg);
}

.mega-menu.Technologies {
  position: absolute;
  top: 18px;
  left: -536px;
  background: #1b1b1b;
  gap: 22px;
  padding: 28px;
  border-radius: 14px;
  display: none;
  grid-template-columns: repeat(5, 1fr);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* CONTACT BUTTON */

#cont {
  background: orange;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  display: inline-flex; /* 🔥 MAIN FIX */
  align-items: center;
  justify-content: center;
  height: 42px;
}

/* Custom Cursor Animation Fix */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition:
    left 0.05s ease-out,
    top 0.05s ease-out;
  left: -100px;
  top: -100px;
}
