.elementor-kit-9{--e-global-color-primary:#1B263B;--e-global-color-secondary:#2C3D44;--e-global-color-text:#7A7A7A;--e-global-color-accent:#C1121F;--e-global-color-f79662d:#198030;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Figtree", Sans-serif;}.elementor-kit-9 button,.elementor-kit-9 input[type="button"],.elementor-kit-9 input[type="submit"],.elementor-kit-9 .elementor-button{background-color:#02010199;font-family:"Figtree", Sans-serif;border-radius:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-kit-9 p{margin-block-end:0px;}.elementor-kit-9 a{font-family:"Figtree", Sans-serif;text-decoration:none;}.elementor-kit-9 h1{font-family:"Figtree", Sans-serif;font-size:96px;font-weight:700;line-height:100px;letter-spacing:-0.025em;}.elementor-kit-9 h2{font-family:"Figtree", Sans-serif;font-size:48px;font-weight:600;text-decoration:none;line-height:56px;letter-spacing:-0.025em;}.elementor-kit-9 h3{font-family:"Figtree", Sans-serif;font-size:20px;font-weight:600;text-decoration:none;line-height:28px;letter-spacing:-0.02em;}.elementor-kit-9 h4{font-family:"Figtree", Sans-serif;text-decoration:none;}.elementor-kit-9 h5{font-family:"Figtree", Sans-serif;text-decoration:none;}.elementor-kit-9 h6{font-family:"Figtree", Sans-serif;text-decoration:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* --- ১. গুগল মনোস্পেস ফন্ট ইম্পোর্ট --- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&display=swap');

/* --- ২. গ্লোবাল ভ্যারিয়েবলস --- */
:root {
  --code-font: 'Fira Code', monospace;
  --bg-card: #0d1117;
  --border-card: #30363d;
  --neon-cyan: #00f2fe;
  --neon-green: #39ff14;
  --accent-orange: #ff7b72;
  --accent-purple: #c792ea;
  --text-primary: #e6edf3;
  --text-muted: #8b949e;
}

/* --- ৩. কোডার স্টাইল সার্ভিস/পোর্টফোলিও কার্ড --- */
.dev-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-card) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  position: relative !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
}

/* কার্ড হোভার ইফেক্ট */
.dev-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15) !important;
}

/* কার্ডের উপরে কোডিং গ্রেডিয়েন্ট বর্ডার লাইন */
.dev-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dev-card:hover::before {
  opacity: 1;
}

/* --- ৪. সিনট্যাক্স হাইলাইটেড হেডিং ও কমেন্ট --- */
.dev-comment {
  font-family: var(--code-font) !important;
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  display: block;
  margin-bottom: 8px;
}

.dev-title {
  font-family: var(--code-font) !important;
  color: var(--text-primary) !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.dev-keyword {
  color: var(--accent-orange) !important;
}

.dev-string {
  color: var(--neon-green) !important;
}

.dev-func {
  color: var(--accent-purple) !important;
}

/* --- ৫. ডেলিভারি ও টেক্সট ব্যাজ --- */
.dev-badge {
  font-family: var(--code-font) !important;
  font-size: 0.8rem !important;
  background: rgba(0, 242, 254, 0.08) !important;
  border: 1px solid rgba(0, 242, 254, 0.3) !important;
  color: var(--neon-cyan) !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  margin-top: 12px;
}

.dev-badge::before {
  content: '>';
  color: var(--neon-green);
  font-weight: bold;
}

/* --- ৬. নিয়ন টার্মিনাল বাটন --- */
.dev-button .elementor-button {
  font-family: var(--code-font) !important;
  font-size: 0.9rem !important;
  background: transparent !important;
  border: 1px solid var(--neon-cyan) !important;
  color: var(--neon-cyan) !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.dev-button .elementor-button:hover {
  background: var(--neon-cyan) !important;
  color: #0d1117 !important;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4) !important;
}
/* --- ডেস্কটপ ও ল্যাপটপ ডিভাইসের জন্য ডেভেলপার কার্সর --- */
@media (hover: hover) and (pointer: fine) {

  /* ১. পুরো ওয়েবসাইটের ডিফল্ট কার্সর (কোডিং ব্র্যাকেট </> আইকন) */
  html, body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M9 10L3 16L9 22M23 10L29 16L23 22M18 7L14 25' stroke='%2300f2fe' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none' filter='drop-shadow(0 0 4px %2300f2fe)'/%3E%3C/svg%3E") 16 16, auto !important;
  }

  /* ২. বাটন ও লিংকের উপর হোভার করলে নিয়ন টার্মিনাল ক্রসহেয়ার কার্সর */
  a, button, input[type="submit"], .elementor-button, .dev-card {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='9' stroke='%2339ff14' stroke-width='2' fill='rgba(57,255,20,0.15)' filter='drop-shadow(0 0 5px %2339ff14)'/%3E%3Ccircle cx='16' cy='16' r='2' fill='%2339ff14'/%3E%3Cpath d='M16 2v6M16 24v6M2 16h6M24 16h6' stroke='%2339ff14' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 16 16, pointer !important;
  }

  /* ৩. টেক্সট সিলেক্ট করার সময় টার্মিনাল আই-বিম কার্সর */
  p, h1, h2, h3, h4, h5, h6, span, input, textarea {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M11 7h10M11 25h10M16 7v18' stroke='%23ff7b72' stroke-width='2.5' stroke-linecap='round' filter='drop-shadow(0 0 4px %23ff7b72)'/%3E%3C/svg%3E") 16 16, text !important;
  }
}
/* --- ১. ডেভেলপার কোডিং কার্সর --- */
@media (hover: hover) and (pointer: fine) {
  html, body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M9 10L3 16L9 22M23 10L29 16L23 22M18 7L14 25' stroke='%2300f2fe' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none' filter='drop-shadow(0 0 4px %2300f2fe)'/%3E%3C/svg%3E") 16 16, auto !important;
  }
  a, button, .elementor-button, .card {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='9' stroke='%2339ff14' stroke-width='2' fill='rgba(57,255,20,0.15)' filter='drop-shadow(0 0 5px %2339ff14)'/%3E%3Ccircle cx='16' cy='16' r='2' fill='%2339ff14'/%3E%3Cpath d='M16 2v6M16 24v6M2 16h6M24 16h6' stroke='%2339ff14' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 16 16, pointer !important;
  }
}
/* --- সিনট্যাক্স এক লাইনে রাখার ফিক্সড CSS --- */

.elementor-nav-menu .menu-item a {
  position: relative !important;
  font-family: 'Fira Code', monospace, sans-serif !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 8px 22px !important; /* দুই পাশে ব্র্যাকেটের জন্য জায়গা */
  color: #e6edf3 !important;
  font-size: 0.95rem !important;
  
  /* ১. লাইন ভাঙা বন্ধ করার মূল প্রপার্টি */
  white-space: nowrap !important; 
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* ব্যাকগ্রাউন্ড স্বচ্ছ */
  background: transparent !important;
  background-color: transparent !important;
}

/* ২. বামের < ব্র্যাকেট পজিশন */
.elementor-nav-menu .menu-item a::before {
  content: '<';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  color: #39ff14 !important;
  opacity: 0;
  transition: all 0.25s ease;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
  pointer-events: none;
}

/* ৩. ডানের /> ব্র্যাকেট পজিশন */
.elementor-nav-menu .menu-item a::after {
  content: '/>';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  color: #39ff14 !important;
  opacity: 0;
  transition: all 0.25s ease;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
  pointer-events: none;
}

/* ৪. হোভার করলে সোজা লাইনে দৃশ্যমান হওয়া */
.elementor-nav-menu .menu-item a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.elementor-nav-menu .menu-item a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ৫. হোভার টেক্সট কালার */
.elementor-nav-menu .menu-item a:hover {
  color: #/* --- মেনুবার কাস্টম কালার (#c1121f) হোভার ইফেক্ট --- */

/* ১. ব্যাকগ্রাউন্ড পুরোপুরি স্বচ্ছ রাখা */
.elementor-nav-menu .menu-item,
.elementor-nav-menu .menu-item a,
.elementor-nav-menu .menu-item a:hover,
.elementor-nav-menu .menu-item a:focus,
.elementor-nav-menu .menu-item a:active,
.elementor-nav-menu .menu-item.current-menu-item a {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ২. মেনু আইটেম লিংক ও টাইপোগ্রাফি */
.elementor-nav-menu .menu-item a {
  position: relative !important;
  font-family: 'Fira Code', monospace, sans-serif !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 8px 22px !important;
  color: #e6edf3 !important;
  font-size: 0.95rem !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ৩. মাউস হোভার করলে টেক্সট কালার (#c1121f) */
.elementor-nav-menu .menu-item a:hover,
.elementor-nav-menu .menu-item.current-menu-item a {
  color: #c1121f !important;
  text-shadow: 0 0 10px rgba(193, 18, 31, 0.45) !important;
}

/* ৪. বামের < ব্র্যাকেট (#c1121f) */
.elementor-nav-menu .menu-item a::before {
  content: '<';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  color: #c1121f !important;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(193, 18, 31, 0.6);
  pointer-events: none;
  background: transparent !important;
}

/* ৫. ডানের /> ব্র্যাকেট (#c1121f) */
.elementor-nav-menu .menu-item a::after {
  content: '/>';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  color: #c1121f !important;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(193, 18, 31, 0.6);
  pointer-events: none;
  background: transparent !important;
}

/* ৬. হোভার করলে ব্র্যাকেট দৃশ্যমান হওয়া */
.elementor-nav-menu .menu-item a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.elementor-nav-menu .menu-item a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
} !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}
/* --- সমস্ত ডিফল্ট সিনট্যাক্স, কোড ও ট্যাগের লাল ব্যাকগ্রাউন্ড রিমুভ করার কোড --- */

code,
pre,
kbd,
samp,
.elementor-nav-menu .menu-item a,
.elementor-nav-menu .menu-item a:hover,
.elementor-nav-menu .menu-item a::before,
.elementor-nav-menu .menu-item a::after,
.elementor-widget-theme-post-content code,
.dev-comment,
.dev-title,
.dev-badge,
.terminal-tag {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* ব্রাউজারের ডিফল্ট কোড হাইলাইটিং ওভাররাইড */
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: transparent !important;
}
/* --- হেডার টেক্সট নিয়ন রেডিশ পালস অ্যানিমেশন (#c1121f বেসড) --- */

/* ক্লাস নাম: dev-neon-logo */
.dev-neon-logo,
.elementor-nav-menu ~ a,
.site-title a,
.custom-logo-link {
  font-family: 'Fira Code', monospace, sans-serif !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  display: inline-block !important;
  text-decoration: none !important;
  animation: neonRedPulse 2.5s infinite alternate ease-in-out !important;
}

/* নিয়ন পালস কিফ্রেম */
@keyframes neonRedPulse {
  0% {
    color: #ffffff;
    text-shadow: 
      0 0 4px rgba(255, 255, 255, 0.8),
      0 0 10px rgba(193, 18, 31, 0.6),
      0 0 18px rgba(193, 18, 31, 0.4);
    transform: scale(1);
  }
  50% {
    color: #ffe5e7;
    text-shadow: 
      0 0 2px rgba(255, 255, 255, 0.6),
      0 0 6px rgba(193, 18, 31, 0.4),
      0 0 12px rgba(193, 18, 31, 0.2);
    transform: scale(0.99);
  }
  100% {
    color: #ffffff;
    text-shadow: 
      0 0 6px rgba(255, 255, 255, 0.9),
      0 0 14px rgba(193, 18, 31, 0.8),
      0 0 25px rgba(193, 18, 31, 0.6),
      0 0 35px rgba(193, 18, 31, 0.4);
    transform: scale(1.01);
  }
}/* End custom CSS */