/* ===============================
   GLOBAL FONT SETUP
================================= */

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.6;
}


/* Headings
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #000000;
} */

/* kej script */
/* .kej-left{

font-family:Arial;
font-size:40px;
color:white;
} */
.kej-font{
  width: 150px;
}



/* Buttons */
button,
.btn-primary,
.btn-outline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Footer */
footer {
  font-family: 'Inter', sans-serif;
}


/* ===== NAVBAR BASE ===== */

.kej-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(
    120deg,
    #2f78b7 15%,
    #ffffff 62%,
    #ffffff 100%
  );
  z-index: 999;
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.1); */
}

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


/* MENU */
.kej-nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.kej-nav-menu li a {
  color: #00000080;
  text-decoration: none;
  position: relative;
}

.kej-nav-menu li a:hover{
  color: rgb(8, 8, 8);

}



.kej-nav-menu li a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.kej-nav-btn {
  background: #fff;
  color: #2f79b8;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.kej-nav-btn:hover {
  background: #ffb703;
  color: #000;
}

/* ================= DROPDOWN FIX ================= */

.kej-dropdown {
  position: relative;
}

/* Dropdown container */
.kej-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  min-width: 280px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* Remove list style */
.kej-dropdown-menu li {
  list-style: none;
}

/* Links inside dropdown */
.kej-dropdown-menu li a {
  color: #333;
  font-size: 14px;
  padding: 6px 0;
  display: block;
  transition: 0.3s;
}

.kej-dropdown-menu li a:hover {
  color: #2f79b8;
  padding-left: 6px;
}

/* SHOW ON HOVER */
.kej-dropdown:hover .kej-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* ================= MOBILE NAV FIX ================= */
@media (max-width: 992px) {

  .kej-nav-menu {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #2f79b8;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .kej-nav-menu.show {
    display: flex;
  }

  .kej-menu-toggle {
    display: block;
  }

  .kej-nav-btn {
    display: none; /* hide CTA button in mobile */
  }

}

/* Desktop */
@media (min-width: 993px) {
  .kej-menu-toggle {
    display: none !important;
  }
}

/* =========================
   HERO SECTION BASE
========================= */
.kej-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    #2f78b7 15%,
    #ffffff 62%,
    #ffffff 100%
  );
}
.kej-hero {
  position: relative;
  overflow: hidden;
}
.kej-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;   /* Fade height control */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 40%,
    rgba(255,255,255,0.85) 70%,
    #ffffff 100%
  );
  pointer-events: none;
}
.kej-corner-about{
  position: absolute;
  right: -0px;
  /* top: 60%; */
  transform: translateY(-50%);
  width: 490px;
  opacity: 0.2;
  pointer-events: none;
}
/* ===== HONEYCOMB BACKGROUND (RIGHT SIDE ONLY) ===== */
.kej-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;

  /* Honeycomb image */
  background-image: url("../images/honeyco");

  background-repeat: no-repeat;
  background-position: 80% center;
  background-size: 60%;
  margin-left: 40px;


  /* Soft & clean look */
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .kej-hero-visual::after {
    background-position: center;
    background-size: 80%;
    opacity: 0.2;
  }
}

/* ==============================
   HERO BASE FIX
================================*/
/* .kej-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
} */

/* ==============================
   TABLET FIX
================================*/
@media (max-width: 768px) {

  .kej-hero {
    flex-direction: column;
    text-align: center;
  }

  .kej-hero-content {
    width: 100%;
  }

  .kej-hero-visual {
    width: 100%;
    margin-top: 10px;
  }

  .kej-logo-box img {
    width: 130px;
    margin-left: -210px;
    display: none;
  }

  .kej-corner-particles {
    right: -60px;
    bottom: -40px;
    width: 250px;
    opacity: 0.3;
  }
}

/* ==============================
   MOBILE FIX
================================*/
@media (max-width: 600px) {

  .kej-hero {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .kej-hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .kej-hero-content span {
    display: block;
  }

  .kej-hero-content p {
    font-size: 14px;
    max-width: 100%;
    margin: 15px auto;
  }

  .kej-hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .kej-hero-visual {
    margin-top: 40px;
  }

  .kej-logo-box img {
    width: 220px;
  }

  /* Hide heavy animation on mobile */
  .kej-ring,
  .kej-dot {
    display: none;
  }

  /* Corner honey image fix */
  .kej-corner-particles {
    width: 180px;
    right: -50px;
    bottom: -20px;
    opacity: 0.25;
  }
}

/* ================= LEFT CONTENT ================= */

.kej-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: #ffffff;
}

.kej-hero-content h1 span {
  color: #ffb703;
}

.kej-hero-content p {
  margin-top: 20px;
  max-width: 500px;
  font-size: 1.05rem;
  color: #f1f1f1;
  line-height: 1.6;
}

.kej-hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

/* Buttons */

.btn-primary {
  background: #ffb703;
  color: #000;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #4e83b8;
}


/* =========================
   RIGHT VISUAL
========================= */
.kej-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   LOGO BOX
========================= */
.kej-logo-box {
  /* width: 550px;
  height: 550px; */
  display: grid;
  place-items: center;
  animation: floatLogo 6s ease-in-out infinite;
}

.kej-logo-box img {
  width: 110%;
  height: auto;
  
}
/* ================= PARTICLE CORNER IMAGE ================= */

.kej-corner-particles {
  position: absolute;
  right: -118px;
  top: 60%;
  transform: translateY(-50%);
  width: 400px;
  opacity: 0.2;
  pointer-events: none;
}

.kej-corner-particless {
  position: absolute;
  left: -90px;
  top: 59%;
  transform: translateY(-50%);
  width: 235px;
  opacity: 0.3;
  pointer-events: none;
}


.kej-ring-outer {
  width: 600px;
  height: 600px;
  animation: rotate 28s linear infinite;
}

.d1 { top: 10%; left: 50%; }
.d2 { bottom: 15%; right: 20%; animation-delay: 0.5s; }
.d3 { top: 60%; left: 10%; animation-delay: 1s; }
.d4 { bottom: 25%; left: 65%; animation-delay: 1.5s; }

/* =========================
   ANIMATIONS
========================= */
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0); }
}

@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.6); opacity: 1; }
}

/* ===== CONTACT SHOWCASE SECTION ===== */
.kej-contact-showcase {
  background: #ffffff;
  padding: 100px 8%;
}

.kej-contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.kej-contact-left h2 {
  font-size: 2.8rem;
  color: #0a2540;
  margin-bottom: 20px;
}

.kej-contact-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.kej-contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: linear-gradient(135deg,#1f6fd1,#0a2540);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.kej-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31,111,209,0.35);
}

/* RIGHT IMAGE GRID */
.kej-contact-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.kej-img-box {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.kej-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.kej-img-box:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .kej-contact-wrap {
    grid-template-columns: 1fr;
  }

  .kej-contact-showcase {
    padding: 80px 20px;
  }

  .kej-contact-left h2 {
    font-size: 2.2rem;
  }
}
/* COMMON */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

/* INDUSTRIES */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.industry-card img {
  width: 100%;
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.industry-card .icon {
  position: absolute;
  top: 160px;
  left: 20px;
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.industry-card h3 {
  margin-top: 40px;
  font-size: 20px;
}

.industry-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.industry-card:hover {
  transform: translateY(-10px);
}

/* BRANDS */
.brands {
  background: #f9fafc;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
}

.brand-grid img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.brand-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}
/* CARD HOVER EFFECT */
.industry-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ICON ROTATION */
.industry-card .icon {
  transition: transform 0.6s ease, background 0.4s ease;
}

.industry-card:hover .icon {
  transform: rotate(360deg) scale(1.1);
  background: #ffffff;  
  color: #fff;
}


/* ===== FOOTER ===== */
.kej-footer {
  background: linear-gradient(
    120deg,
    #2f78b7 15%,
    #ffffff 62%,
    #ffffff 100%
  );
  color: #00000080;
  padding: 80px 8% 30px;
}

.kej-footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* LOGO */
.kej-footer-logo img {
  width: 130px;
  border-radius: 20px;
}

/* COLUMN */
.kej-footer-col h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.kej-footer-col ul {
  list-style: none;
  padding: 0;
}

.kej-footer-col ul li {
  margin-bottom: 12px;
}

.kej-footer-col ul li a {
  color: #00000080;
  text-decoration: none;
  transition: 0.3s;
}

.kej-footer-col ul li a:hover {
  color: #000000;
  padding-left: 6px;
}

/* ADDRESS */
.kej-footer-address p {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

/* SOCIAL ICONS */
.kej-social {
  display: flex;
  gap: 15px;
}

.kej-social a {
  width: 45px;
  height: 45px;
  background: #1e2b3c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s ease;
}

.kej-social a:hover {
  background: #ffffff;
  color: #00000080;
  transform: translateY(-5px);
}

/* BOTTOM */
.kej-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.4);
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.kej-footer-links a {
  color: #00000080;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.kej-footer-links a:hover {
  color: #ffb703;
}
@media (max-width: 992px) {
  .kej-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .kej-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kej-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .kej-social {
    justify-content: center;
  }
}

