/* --- Header style starts --- */
.kc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.kc-header.scrolled {
  background: rgba(2, 6, 23, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.kc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}

/* --- Logo --- */

/* Custom Logo Size Adjustment */
.kc-logo-img {
    width: 66px;         /* Change this value to your preferred width */
    height: auto;        /* Maintains the perfect aspect ratio */
    max-height: 66px;    /* Prevents the logo from blowing up your header height */
    object-fit: contain; /* Ensures the image doesn't distort or stretch */
}

.kc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.kc-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.kc-logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.kc-logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Desktop Navigation --- */
.kc-nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.kc-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.kc-nav-link:hover,
.kc-nav-link.active {
  color: var(--white);
  background: var(--glass-bg);
}

.kc-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.kc-has-mega:hover .kc-chevron,
.kc-has-dropdown:hover .kc-chevron {
  transform: rotate(180deg);
}

/* --- Mega Menu --- */
.kc-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.kc-has-mega:hover .kc-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.kc-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kc-mega-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.kc-mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kc-mega-links li {
  margin-bottom: 8px;
}

.kc-mega-links a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.kc-mega-links a:hover {
  background: var(--glass-bg);
  color: var(--white);
  transform: translateX(4px);
}

.kc-mega-featured {
  display: flex;
  align-items: center;
}

.kc-featured-box {
  background: linear-gradient(
    135deg,
    rgba(0, 82, 204, 0.2),
    rgba(0, 212, 255, 0.1)
  );
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
}

.kc-featured-box h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.kc-featured-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.kc-featured-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--blue-600);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s;
}

.kc-featured-btn:hover {
  background: var(--blue-500);
}

/* --- Standard Dropdown --- */
.kc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.kc-has-dropdown:hover .kc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kc-dropdown a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.kc-dropdown a:hover {
  background: var(--glass-bg);
  color: var(--white);
}

/* --- Header Actions --- */
.kc-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kc-lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.kc-lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.kc-lang-btn.active,
.kc-lang-btn:hover {
  color: var(--white);
  background: var(--glass-bg);
}

.kc-lang-divider {
  color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.kc-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kc-cta-btn svg {
  width: 16px;
  height: 16px;
}

/* --- Mobile Toggle --- */
.kc-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.kc-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Mobile Menu Overlay --- */
.kc-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--blue-950);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.kc-mobile-menu.active {
  right: 0;
}

.kc-mobile-menu-inner {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kc-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.kc-mobile-header .kc-logo-title {
  font-size: 1.2rem;
  color: var(--white);
}

.kc-mobile-close {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.kc-mobile-close svg {
  width: 20px;
  height: 20px;
}

.kc-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.kc-mobile-nav > li {
  border-bottom: 1px solid var(--glass-border);
}

.kc-mobile-nav > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.kc-plus {
  font-size: 1.2rem;
  color: var(--cyan-400);
  transition: transform 0.3s;
}

.kc-mobile-submenu {
  list-style: none;
  padding: 0 0 16px 16px;
  margin: 0;
  display: none;
}

.kc-mobile-submenu.active {
  display: block;
}

.kc-mobile-submenu a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
}

.kc-mobile-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .kc-nav,
  .kc-lang-switch {
    display: none;
  }

  .kc-mobile-toggle {
    display: flex;
  }

  .kc-mega-menu,
  .kc-dropdown {
    display: none !important;
  }
}

/* -- Header style ends -- */

/* FOOTER Style starts */
/* --- Footer Base Styles --- */
.kc-footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.95rem;
}

.kc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Brand Column */
.kc-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.kc-footer-desc {
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.kc-social-links {
  display: flex;
  gap: 12px;
}

.kc-social-links a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.kc-social-links a svg {
  width: 18px;
  height: 18px;
}

.kc-social-links a:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  transform: translateY(-3px);
}

/* Link Columns */
.kc-footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.kc-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--cyan-400);
}

.kc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kc-footer-links li {
  margin-bottom: 12px;
}

.kc-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kc-footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--cyan-400);
  transition: width 0.3s ease;
}

.kc-footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.kc-footer-links a:hover::before {
  width: 12px;
}

/* Contact Column */
.kc-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kc-footer-contact li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.kc-footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.kc-footer-contact span {
  line-height: 1.6;
}

/* Divider */
.kc-footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glass-border),
    transparent
  );
  margin-bottom: 30px;
}

/* Bottom Bar */
.kc-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.kc-copyright p {
  margin: 0;
  font-size: 0.85rem;
}

.kc-legal-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  max-width: 600px;
}

.kc-legal-links {
  display: flex;
  gap: 24px;
}

.kc-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.kc-legal-links a:hover {
  color: var(--cyan-400);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .kc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .kc-footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .kc-footer {
    padding: 60px 0 20px;
  }

  .kc-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kc-footer-brand {
    grid-column: span 1;
  }

  .kc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .kc-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .kc-legal-text {
    max-width: 100%;
  }
}
/* Footer style ends */

/* -- Home Hero styles -- */
/* =========================================
           1. CSS VARIABLES & RESET
           ========================================= */
:root {
  /* Shades of Blue Palette */
  --blue-950: #020617;
  --blue-900: #0a1128;
  --blue-800: #001d3d;
  --blue-700: #003566;
  --blue-600: #0052cc; /* Primary Brand Blue */
  --blue-500: #0066ff;
  --blue-400: #3385ff;
  --blue-300: #80b3ff;

  /* Accents */
  --cyan-400: #00d4ff;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-main: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--blue-950);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
               2. ULTIMATE HERO SECTION
               ========================================= */
.hero-ultimate {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--blue-950) 0%,
    var(--blue-900) 40%,
    var(--blue-800) 100%
  );
  padding: 120px 0 80px;
}

/* --- Animated Background Elements --- */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 40%,
    transparent 80%
  );
  z-index: 1;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  animation: float-orb 20s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--blue-600);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--blue-500);
  bottom: -150px;
  left: -100px;
  animation-delay: -10s;
}

@keyframes float-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

/* --- Main Layout (Perfectly Centered) --- */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Content --- */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-300);
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-400);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.title-gradient {
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-highlight {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* --- CTA Buttons --- */
.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: 0 10px 40px -10px rgba(0, 82, 204, 0.6);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -10px rgba(0, 82, 204, 0.8);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Trust Metrics --- */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* --- Right Visual (Clean Image) --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease 0.5s both;
}

.visual-main-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.visual-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  display: block;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(2, 6, 23, 0.8) 100%
  );
  pointer-events: none;
}

/* --- Animations --- */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================================
               3. RESPONSIVE DESIGN
               ========================================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    align-items: center;
  }
  .hero-description {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }

  .visual-main-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-ultimate {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 20px;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    flex: 1 1 40%;
    text-align: center;
  }
}

/* -- Home Hero styles end --*/

/* --HOME ABOUt US section */
.kc-about-teaser-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .kc-about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    }

    .kc-about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .kc-about-image:hover img {
        transform: scale(1.05);
    }

    .kc-about-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: var(--white);
        color: var(--blue-950);
        padding: 20px 28px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .kc-about-badge span {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: var(--blue-600);
        line-height: 1;
    }

    .kc-about-badge small {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-gray);
    }

    .kc-about-content {
        padding: 20px 0;
    }

    @media (max-width: 1024px) {
        .kc-about-teaser-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .kc-about-content {
            text-align: center !important;
        }

        .kc-about-content .kc-section-title,
        .kc-about-content .kc-section-desc {
            text-align: center !important;
        }

        .kc-about-badge {
            bottom: 20px;
            left: 20px;
            padding: 16px 20px;
        }

        .kc-about-badge span {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .kc-about-teaser-wrapper {
            gap: 30px;
        }

        .kc-about-badge {
            padding: 12px 16px;
        }

        .kc-about-badge span {
            font-size: 1.25rem;
        }

        .kc-about-badge small {
            font-size: 0.75rem;
        }
    }

/* SERVICES style starts */
/* Reusable Container (Replaces .hero-container for general use) */
.kc-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Base Styles */
.kc-services-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
  overflow: hidden;
}

/* Subtle background accent to differentiate from hero */
.kc-services-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 82, 204, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.kc-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.kc-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.kc-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.kc-section-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Services Grid */
.kc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Service Card */
.kc-service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kc-service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.kc-service-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 82, 204, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.kc-service-icon svg {
  width: 32px;
  height: 32px;
}

.kc-service-card:hover .kc-service-icon {
  background: var(--blue-600);
  color: var(--white);
  transform: scale(1.05);
}

.kc-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.kc-service-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1; /* Pushes the link to the bottom */
}

.kc-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-300);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.kc-service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.kc-service-card:hover .kc-service-link {
  color: var(--white);
}

.kc-service-card:hover .kc-service-link svg {
  transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .kc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kc-services-section {
    padding: 80px 0;
  }

  .kc-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kc-service-card {
    padding: 30px 24px;
  }
}
/* SERVICES style ends */

/* -- HOME BLOCK 3 Kang Ecosystem style starts */

/* App Card Specific Styles (Reuses .kc-service-card base) */
.kc-app-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* App Download Button */
.kc-app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--blue-950);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: auto; /* Pushes button to the bottom of the card */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.kc-app-download-btn svg {
  width: 28px;
  height: 28px;
  color: var(--blue-950);
}

.kc-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.kc-btn-small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.kc-btn-large {
  font-size: 16px;
  font-weight: 800;
}

.kc-app-download-btn:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(0, 102, 255, 0.4);
}

.kc-app-download-btn:hover svg {
  color: var(--white);
}

/* Responsive adjustments for the button */
@media (max-width: 768px) {
  .kc-app-download-btn {
    width: 100%;
    justify-content: center;
  }
}
/* HOME BLOCK 3 style ends */

/* HOME BLOCK 4 style starts */
/* Features Grid Layout */
.kc-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Feature Card */
.kc-feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kc-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Feature Image Container */
.kc-feature-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.kc-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kc-feature-card:hover .kc-feature-image img {
  transform: scale(1.1);
}

/* Feature Overlay */
.kc-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 82, 204, 0.8),
    rgba(0, 102, 255, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kc-feature-card:hover .kc-feature-overlay {
  opacity: 1;
}

.kc-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kc-feature-icon svg {
  width: 32px;
  height: 32px;
}

.kc-feature-card:hover .kc-feature-icon {
  transform: scale(1);
}

.kc-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  padding: 20px 20px 12px;
}

.kc-feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  padding: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .kc-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .kc-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .kc-feature-image {
    height: 160px;
  }

  .kc-feature-title {
    font-size: 1rem;
    padding: 16px 16px 10px;
  }

  .kc-feature-desc {
    font-size: 0.85rem;
    padding: 0 16px 16px;
  }
}

@media (max-width: 480px) {
  .kc-features-grid {
    grid-template-columns: 1fr;
  }
}

/* HOME BLOCK 4 style ends */

/* HOME BLOCK 5 style starts */
/* App Showcase Wrapper */
.kc-app-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

/* App Info Section */
.kc-app-info {
  position: sticky;
  top: 120px;
}

.kc-app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.kc-app-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kc-feature-icon-small {
  width: 48px;
  height: 48px;
  background: rgba(0, 82, 204, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
}

.kc-feature-icon-small svg {
  width: 24px;
  height: 24px;
}

.kc-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.kc-feature-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Download Buttons */
.kc-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kc-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--blue-950);
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.kc-store-btn svg {
  width: 32px;
  height: 32px;
}

.kc-store-btn:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(0, 102, 255, 0.5);
}

.kc-store-btn:hover svg {
  color: var(--white);
}

/* App Gallery */
.kc-app-gallery {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kc-screenshot-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.kc-screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.3);
}

.kc-screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kc-screenshot-item:hover img {
  transform: scale(1.1);
}

.kc-screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.9) 100%);
  padding: 20px 16px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kc-screenshot-item:hover .kc-screenshot-overlay {
  opacity: 1;
}

.kc-screenshot-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.kc-screenshot-large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 3/5;
}

.kc-screenshot-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* App Stats */
.kc-app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.kc-stat-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.kc-stat-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.kc-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.kc-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .kc-app-showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kc-app-info {
    position: relative;
    top: 0;
  }

  .kc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kc-screenshot-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .kc-app-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kc-gallery-grid {
    grid-template-columns: 1fr;
  }

  .kc-screenshot-large,
  .kc-screenshot-wide {
    grid-column: span 1;
  }

  .kc-screenshot-item {
    aspect-ratio: 3/4;
  }

  .kc-app-stats {
    grid-template-columns: 1fr;
  }

  .kc-download-buttons {
    flex-direction: column;
  }

  .kc-store-btn {
    width: 100%;
    justify-content: center;
  }
}
/* HOME BLOCK 5 style ends */

/* HOME BLOCK 6 style starts */
/* --- API Section Layout --- */
.kc-api-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.kc-api-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.kc-api-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.kc-api-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
}

.kc-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Mock Code Editor --- */
.kc-api-visual {
  position: relative;
}

.kc-code-window {
  background: rgba(10, 17, 40, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kc-code-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.kc-code-dots {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}

.kc-code-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.kc-code-body {
  padding: 24px;
  overflow-x: auto;
}

.kc-code-body pre {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #e6f0ff;
}

/* Syntax Highlighting Colors */
.code-keyword {
  color: #ff7b72;
}
.code-var {
  color: #79c0ff;
}
.code-func {
  color: #d2a8ff;
}
.code-string {
  color: #a5d6ff;
}
.code-prop {
  color: #7ee787;
}
.code-num {
  color: #ffa657;
}
.code-comment {
  color: #8b949e;
  font-style: italic;
}

/* Floating Badge on Code Window */
.kc-floating-api-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--white);
  color: var(--blue-950);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float-card 6s ease-in-out infinite;
}

.kc-floating-api-badge svg {
  width: 20px;
  height: 20px;
  color: #27c93f;
}

/* --- Section Divider --- */
.kc-section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glass-border),
    transparent
  );
  margin: 80px 0;
}

/* --- Community Image Cards --- */
.kc-community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.kc-image-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
}

.kc-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kc-image-card:hover .kc-card-bg-img {
  transform: scale(1.08);
}

.kc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.2) 0%,
    rgba(2, 6, 23, 0.95) 100%
  );
  z-index: 1;
}

.kc-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
}

.kc-image-card .kc-service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 20px;
}

.kc-image-card:hover .kc-service-icon {
  background: var(--blue-600);
}

.kc-image-card .kc-service-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .kc-api-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kc-api-content {
    text-align: center;
  }

  .kc-api-features {
    justify-content: center;
  }

  .kc-cta-group {
    justify-content: center;
  }

  .kc-community-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kc-code-body pre {
    font-size: 12px;
  }

  .kc-floating-api-badge {
    bottom: -15px;
    right: 10px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .kc-card-content {
    padding: 30px 24px;
  }
}
/* HOME BLOCK 6 style ends*/

/* ABOUT US style starts */
/* --- Page Header Tweaks --- */
.kc-page-header {
  padding-top: 140px; /* Space for fixed header */
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
}

/* --- Team Card Specifics --- */
.kc-team-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.kc-team-img-wrapper {
  height: 280px;
  overflow: hidden;
  background: var(--blue-800);
}

.kc-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.kc-team-card:hover .kc-team-img {
  transform: scale(1.05);
}

.kc-team-info {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive adjustments for team images on mobile */
@media (max-width: 768px) {
  .kc-team-img-wrapper {
    height: 240px;
  }
}

/* ABOUT US style ends*/

/* CONTACT PAGE style */
/* =========================================
       MOBILE RESPONSIVENESS FOR CONTACT PAGE
       ========================================= */
    @media (max-width: 1024px) {
        /* Stack the main contact info and form */
        .kc-contact-layout {
            grid-template-columns: 1fr !important;
            gap: 40px !important;
        }

        /* Stack the FAQ grid */
        .kc-faq-grid {
            grid-template-columns: 1fr !important;
        }
    }

    @media (max-width: 768px) {
        /* Reduce page header padding */
        .kc-page-header .kc-container {
            padding: 40px 0 !important;
        }

        /* Reduce form box padding */
        .kc-contact-form-box {
            padding: 24px !important;
            border-radius: 16px !important;
        }

        /* Adjust form heading and spacing */
        .kc-contact-form-box h3 {
            font-size: 1.5rem !important;
            margin-bottom: 24px !important;
        }

        .kc-contact-form-box form {
            gap: 16px !important;
        }

        /* Stack First Name and Last Name inputs */
        .kc-form-name-grid {
            grid-template-columns: 1fr !important;
            gap: 16px !important;
        }

        /* Adjust section title size */
        .kc-contact-layout .kc-section-title {
            font-size: 2rem !important;
        }

        /* Stack CTA buttons */
        .kc-cta-group {
            flex-direction: column !important;
            gap: 16px !important;
        }

        .kc-cta-group .btn {
            width: 100%;
            justify-content: center;
        }
    }
