
/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


/* --- Root Variables for Design System --- */
:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-main: #0b0f19;
  --bg-card: #111827;
  --bg-light: #f8fafc;
  --primary-accent: #6366f1;
  --primary-hover: #4f46e5;
  --gold-accent: #f59e0b;
  --gold-hover: #d97706;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-white: #f8fafc;
  --text-white-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
  --ncode-bg-dark: #080c14;
  --ncode-card-bg: rgba(255, 255, 255, 0.02);
  --ncode-border-color: rgba(255, 255, 255, 0.08);
  --ncode-primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --ncode-accent-cyan: #38bdf8;
  --ncode-text-heading: #f8fafc;
  --ncode-text-body: #94a3b8;
  --ncode-text-hover: #ffffff;
}
*{

}
body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* 🔹 Modern Corporate Font Family */
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Top Contact Bar Base ============================================================*/
.ncode_top_bar {
  background-color: #0f172a; /* Corporate dark navy */
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ncode_top_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ncode_top_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ncode_top_brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.ncode_top_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ncode_top_item:hover {
  color: #38bdf8; /* Hover blue accent */
}

.ncode_top_item i {
  font-size: 0.85rem;
  color: #38bdf8;
}

/* Call to Action Button */
.ncode_top_btn {
  background-color: #f59e0b; /* Amber highlight */
  color: #0f172a;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ncode_top_btn:hover {
  background-color: #d97706;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
  .ncode_top_container {
    justify-content: center;
    text-align: center;
  }
  
  .ncode_top_mobile_hide {
    display: none;
  }
}


/* Main Navbar part here =========================================================== */
/* Header Container & Glass Effect */
.ncode_navbar_header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 25px -5px rgba(15, 23, 42, 0.03);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ncode_navbar_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Identity */
.ncode_navbar_brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.ncode_navbar_brand:hover {
  transform: translateY(-1px);
}

.ncode_navbar_logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.ncode_navbar_brand_name {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

/* Links & Animated Underline Effect */
.ncode_navbar_menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ncode_navbar_item {
  position: relative;
}

.ncode_navbar_link {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.925rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Animated Underline */
.ncode_navbar_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ncode_navbar_link:hover {
  color: #0f172a;
}

.ncode_navbar_link:hover::after {
  width: 80%;
}

/* Active Link State */
.ncode_navbar_link.ncode_navbar_active {
  color: #2563eb;
  font-weight: 600;
}

.ncode_navbar_link.ncode_navbar_active::after {
  width: 80%;
}

/* Smooth 'X' Morphing Mobile Hamburger */
.ncode_navbar_toggler {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  outline: none;
  transition: background-color 0.2s ease;
}

.ncode_navbar_toggler:hover {
  background-color: #f1f5f9;
}

.ncode_navbar_hamburger {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ncode_navbar_hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #0f172a;
  border-radius: 4px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.2s ease;
}

/* Perfect 'X' Transformation */
.ncode_navbar_toggler.ncode_navbar_open .ncode_navbar_hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ncode_navbar_toggler.ncode_navbar_open .ncode_navbar_hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ncode_navbar_toggler.ncode_navbar_open .ncode_navbar_hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Mobile Sheet */
@media (max-width: 991px) {
  .ncode_navbar_toggler {
    display: block;
  }

  .ncode_navbar_menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid #e2e8f0;
    
    /* Smooth Dropdown Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ncode_navbar_menu.ncode_navbar_show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .ncode_navbar_link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .ncode_navbar_link::after {
    left: 0;
    transform: none;
    bottom: 4px;
  }

  .ncode_navbar_link:hover::after,
  .ncode_navbar_link.ncode_navbar_active::after {
    width: 24px;
  }
}



/* Home Page  Part here ===================================================== */




.ncode_home_ {
  font-family: var(--font-primary);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.ncode_home_ * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Section Headers --- */
.ncode_home_ .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.ncode_home_ .section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.ncode_home_ .section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Grids --- */
.ncode_home_ .grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ncode_home_ .grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.ncode_home_ .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ncode_home_ .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.ncode_home_ .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.ncode_home_ .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.ncode_home_ .btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* --- 1. Hero Banner --- */
.ncode_home_ .hero-banner {
  background: radial-gradient(circle at top right, #1e1b4b 0%, #0f172a 60%, #020617 100%);
  color: #fff;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.ncode_home_ .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.ncode_home_ .hero-content {
  flex: 1;
  min-width: 320px;
  animation: fadeIn 1s ease-out;
}

.ncode_home_ .badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ncode_home_ .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ncode_home_ .hero-subtitle {
  font-size: 1.35rem;
  color: #fbbf24;
  margin-bottom: 2rem;
  font-weight: 600;
}

.ncode_home_ .feature-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.ncode_home_ .feature-list li {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #e2e8f0;
}

.ncode_home_ .feature-list i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.ncode_home_ .btn-group {
  display: flex;
  gap: 1.2rem;
}

.ncode_home_ .hero-image-wrapper {
  flex: 1;
  min-width: 320px;
  position: relative;
  display: flex;
  justify-content: center;
  animation: floatAnim 4s ease-in-out infinite;
}

.ncode_home_ .hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(0,0,0,0) 70%);
  filter: blur(50px);
  z-index: 1;
}

.ncode_home_ .hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- 2. Why Choose Section --- */
.ncode_home_ .why-choose-section {
  padding: 6rem 0;
  background: #090d16;
  color: #fff;
}

.ncode_home_ .why-choose-section .section-header h2 {
  color: #fbbf24;
}

.ncode_home_ .why-choose-section .section-header p {
  color: #94a3b8;
}

.ncode_home_ .glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.ncode_home_ .glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.ncode_home_ .glass-card h4 {
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ncode_home_ .glass-card ul {
  padding-left: 1.2rem;
  color: #cbd5e1;
}

.ncode_home_ .glass-card li {
  margin-bottom: 0.6rem;
}

/* --- 3. Institutional Backing --- */
.ncode_home_ .backing-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.ncode_home_ .backing-card {
  position: relative;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.ncode_home_ .backing-card:hover {
  transform: translateY(-6px);
}

.ncode_home_ .card-indigo {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.ncode_home_ .card-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.ncode_home_ .ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #f59e0b;
  color: #000;
  font-weight: 800;
  padding: 0.4rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom-left-radius: 16px;
  border-top-right-radius: var(--radius-lg);
}

.ncode_home_ .ribbon-blue {
  background: #38bdf8;
}

.ncode_home_ .backing-card h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.ncode_home_ .backing-card .sub-text {
  color: #fbbf24;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.ncode_home_ .logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.ncode_home_ .logo-link img {
  height: 65px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ncode_home_ .backing-card p {
  color: #cbd5e1;
  font-size: 0.98rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ncode_home_ .card-btn {
  align-self: flex-start;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ncode_home_ .card-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* --- 4. Services Section --- */
.ncode_home_ .services-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.ncode_home_ .service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.ncode_home_ .service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.ncode_home_ .service-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.ncode_home_ .service-card:hover .icon-box {
  background: var(--primary-accent);
  color: #fff;
}

.ncode_home_ .service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: #0f172a;
}

.ncode_home_ .service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- 5. Featured Product --- */
.ncode_home_ .featured-product {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ncode_home_ .product-card {
  background: radial-gradient(circle at top left, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ncode_home_ .product-text {
  flex: 1;
  min-width: 300px;
}

.ncode_home_ .badge-gold {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.ncode_home_ .product-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.ncode_home_ .product-text p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ncode_home_ .product-text p span {
  color: #fbbf24;
  font-weight: 600;
}

.ncode_home_ .product-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.ncode_home_ .product-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 30px rgba(0,0,0,0.5);
}

/* --- 6. Contact Section --- */
.ncode_home_ .contact-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ncode_home_ .contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  display: flex;
  overflow: hidden;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border: 1px solid rgba(0,0,0,0.05);
}

.ncode_home_ .contact-form-side {
  flex: 1;
  padding: 4rem;
  min-width: 320px;
}

.ncode_home_ .contact-form-side h2 {
  font-size: 2.2rem;
  color: #0f172a;
  font-weight: 800;
}

.ncode_home_ .contact-form-side p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.ncode_home_ .form-group {
  margin-bottom: 1.4rem;
}

.ncode_home_ .form-group input,
.ncode_home_ .form-group textarea {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.ncode_home_ .form-group input:focus,
.ncode_home_ .form-group textarea:focus {
  border-color: var(--primary-accent);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.ncode_home_ .form-links {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.8rem;
}

.ncode_home_ .form-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ncode_home_ .form-links a:hover {
  color: var(--primary-accent);
}

.ncode_home_ .btn-submit {
  width: 100%;
  background: var(--primary-accent);
  color: #fff;
  border: none;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.ncode_home_ .btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.ncode_home_ .contact-image-side {
  flex: 1;
  min-width: 320px;
}

.ncode_home_ .contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ncode_home_ .info-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.ncode_home_ .info-card:hover {
  transform: translateY(-5px);
}

.ncode_home_ .info-card i {
  font-size: 2rem;
  color: var(--primary-accent);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.ncode_home_ .info-card h4 {
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.ncode_home_ .info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Floating Stamp */
.ncode_home_ .floating-stamp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  transition: transform 0.3s ease;
}

.ncode_home_ .floating-stamp:hover {
  transform: scale(1.1) rotate(5deg);
}

.ncode_home_ .floating-stamp img {
  width: 85px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  /* border: 2px solid #fff; */
}

/* --- Animations --- */
@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ncode_home_ .hero-title {
    font-size: 2.75rem;
  }
  .ncode_home_ .product-card {
    padding: 2.5rem;
    gap: 2rem;
  }
  .ncode_home_ .contact-form-side {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .ncode_home_ .hero-title {
    font-size: 2.2rem;
  }
  .ncode_home_ .contact-image-side {
    display: none;
  }
  .ncode_home_ .btn-group {
    flex-direction: column;
  }
  .ncode_home_ .grid-2-col,
  .ncode_home_ .grid-3-col {
    grid-template-columns: 1fr;
  }
}

/* Footer Part Start here ============================================= */



/* Base Structure */
.ncode_footer {
  background-color: var(--ncode-bg-dark);
  color: var(--ncode-text-body);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ncode-border-color);
}

/* Background Ambient Glow */
.ncode_footer_glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(8, 12, 20, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.ncode_footer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.ncode_footer_row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

/* Layout Column Sizing */
.ncode_footer_col_about {
  flex: 1 1 360px;
}

.ncode_footer_col_links {
  flex: 1 1 180px;
}

.ncode_footer_col_contact {
  flex: 1 1 300px;
}

/* Brand Logo Text */
.ncode_footer_brand {
  margin-bottom: 1.2rem;
}

.ncode_footer_logo_text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.ncode_footer_highlight {
  background: var(--ncode-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ncode_footer_text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ncode-text-body);
  margin-bottom: 1.8rem;
}

/* Headings */
.ncode_footer_heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ncode-text-heading);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.ncode_footer_heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--ncode-primary-gradient);
  border-radius: 2px;
}

/* Links List */
.ncode_footer_links_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ncode_footer_links_list li {
  margin-bottom: 0.8rem;
}

.ncode_footer_links_list a {
  color: var(--ncode-text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}

.ncode_footer_links_list a:hover {
  color: var(--ncode-accent-cyan);
  transform: translateX(6px);
}

/* Social Media Icons */
.ncode_footer_social_box {
  display: flex;
  gap: 0.75rem;
}

.ncode_footer_social_link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ncode-card-bg);
  border: 1px solid var(--ncode-border-color);
  color: var(--ncode-text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.ncode_footer_social_link:hover {
  background: var(--ncode-primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(168, 85, 247, 0.4);
}

/* Contact Info Section */
.ncode_footer_contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ncode_footer_contact_list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ncode-text-body);
}

.ncode_footer_icon_wrapper {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--ncode-accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Bottom Bar / Copyright */
.ncode_footer_bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ncode-border-color);
  text-align: center;
}

.ncode_footer_copyright {
  font-size: 0.88rem;
  color: #64748b;
}

.ncode_footer_copyright strong {
  color: #cbd5e1;
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .ncode_footer {
    padding-top: 3.5rem;
  }
  
  .ncode_footer_row {
    flex-direction: column;
    gap: 2.5rem;
  }
}