.elementor-6037 .elementor-element.elementor-element-2e9ef9c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-120px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family );font-weight:var( --e-global-typography-text-font-weight );}.elementor-6037 .elementor-element.elementor-element-344e1f8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-6037 .elementor-element.elementor-element-61a5d7b{font-family:"Roboto";font-weight:400;}.elementor-6037 .elementor-element.elementor-element-bda11a0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6037 .elementor-element.elementor-element-818dd58{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6037 .elementor-element.elementor-element-89f8a11{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6037 .elementor-element.elementor-element-6326545{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6037 .elementor-element.elementor-element-998028c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-6037 .elementor-element.elementor-element-41e8591 img{width:30%;height:159px;}.elementor-6037 .elementor-element.elementor-element-344e1f8{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}}/* Start custom CSS for html, class: .elementor-element-2800e29 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f0f0f, #050505);
  overflow-x: hidden;
}

/* SOFT BACKGROUND GLOW */
body::before {
  content: "";
  position: fixed;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,60,60,0.15), transparent 70%);
  top: 10%;
  left: 20%;
  filter: blur(40px);
  animation: floatGlow 6s infinite alternate;
  z-index: -1;
}

@keyframes floatGlow {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

/* SECTION */
.banner {
  padding: 20px 10px;
}

/* MAIN CARD */
.container {

  margin: 0px auto;
  padding: 25px;

  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 0 20px rgba(255,0,0,0.08),
    inset 0 0 15px rgba(255,255,255,0.03);

  position: relative;
  overflow: hidden;

  animation: fadeUp 1s ease;
}

/* Animated border glow */
.container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(120deg, #ff2a2a, #ff8c00, #ff2a2a);
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* CONTENT */
.content {
  color: #fff;
}

/* TITLE */
.content h1 {
  font-size: 26px;
  color: #000;
  line-height: 1.3;
}

/* DESCRIPTION */
.desc {
  margin: 8px 0 12px;
  color: #111;
  font-size: 14px;
}

/* FEATURES LIST FIXED */
.features {
  margin: 10px 0;
  padding-left: 22px;   /* IMPORTANT → bullets visible */
  list-style: disc;     /* bullets ON */
}

.features li {
  margin: 6px 0;
  color: #111;
  font-size: 14px;
  line-height: 1.4;
  transition: 0.3s;
}

.features li:hover {
  transform: translateX(6px);
  color: #ff4a4a;
}

/* BOTTOM TEXT */
.bottom-text {
  margin: 10px 0 15px;
  color: #111;
  font-size: 13px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #ff3b3b, #ff7a00);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255,80,80,0.3);
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(255,80,80,0.6);
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .container {
    padding: 18px;
    margin: 12px;
    border-radius: 14px;
    text-align: center;
  }

  .content h1 {
    font-size: 20px;
  }

  .desc {
    font-size: 13px;
  }

  .features {
    padding-left: 18px;
  }

  .features li {
    font-size: 12px;
  }

  .btn {
    padding: 9px 16px;
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef303f4 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f0f0f, #050505);
  overflow-x: hidden;
}

/* SOFT BACKGROUND GLOW */
body::before {
  content: "";
  position: fixed;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,60,60,0.15), transparent 70%);
  top: 10%;
  left: 20%;
  filter: blur(40px);
  animation: floatGlow 6s infinite alternate;
  z-index: -1;
}

@keyframes floatGlow {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

/* SECTION */
.banner {
  padding: 20px 10px;
}

/* MAIN CARD */
.container {

  margin: 0px auto;
  padding: 25px;

  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 0 20px rgba(255,0,0,0.08),
    inset 0 0 15px rgba(255,255,255,0.03);

  position: relative;
  overflow: hidden;

  animation: fadeUp 1s ease;
}

/* Animated border glow */
.container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(120deg, #ff2a2a, #ff8c00, #ff2a2a);
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* CONTENT */
.content {
  color: #fff;
}

/* TITLE */
.content h1 {
  font-size: 26px;
  color: #000;
  line-height: 1.3;
}

/* DESCRIPTION */
.desc {
  margin: 8px 0 12px;
  color: #111;
  font-size: 14px;
}

/* FEATURES LIST FIXED */
.features {
  margin: 10px 0;
  padding-left: 22px;   /* IMPORTANT → bullets visible */
  list-style: disc;     /* bullets ON */
}

.features li {
  margin: 6px 0;
  color: #111;
  font-size: 14px;
  line-height: 1.4;
  transition: 0.3s;
}

.features li:hover {
  transform: translateX(6px);
  color: #ff4a4a;
}

/* BOTTOM TEXT */
.bottom-text {
  margin: 10px 0 15px;
  color: #111;
  font-size: 13px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #ff3b3b, #ff7a00);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255,80,80,0.3);
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(255,80,80,0.6);
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .container {
    padding: 18px;
    margin: 12px;
    border-radius: 14px;
    text-align: center;
  }

  .content h1 {
    font-size: 20px;
  }

  .desc {
    font-size: 13px;
  }

  .features {
    padding-left: 18px;
  }

  .features li {
    font-size: 12px;
  }

  .btn {
    padding: 9px 16px;
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-18f3739 */.tech-doc {
  padding: 0px 0px;
  background: transparent;
  color: #000;
  position: relative;
  z-index: 1;
}

/* container */
.tech-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* MAIN AREA ONLY */
.tech-main h1 {
  font-size: 38px;
  margin-bottom: 5px;
  color: #000;
}

.tech-main .subtitle {
  color: rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

/* SAFE HR */
.tech-main hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 25px 0;
}

/* HEADINGS SCOPED */
.tech-main h2 {
  margin-top: 30px;
  color: #ff3c28;
  font-size: 22px;
}

.tech-main h3 {
  margin-top: 20px;
  color: #ff3c28;
}

/* TEXT FIX (NO GLOBAL OVERWRITE) */
.tech-main p {
  color: rgba(0,0,0,0.75);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* LIST FIX */
.tech-main ul {
  margin-left: 18px;
  margin-top: 10px;
}

.tech-main ul li {
  margin-bottom: 10px;
  color: rgba(0,0,0,0.75);
}

/* CLEAN LIST */
.clean-list {
  list-style: none;
  margin-top: 10px;
  padding: 0;
}

.clean-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #111 !important;   /* FORCE COLOR */
  font-size: 15px;
  line-height: 1.6;
  opacity: 1 !important;
  visibility: visible !important;
}

.clean-list b {
  color: #000 !important;
}
/* TAGS */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tag-grid span {
  background: rgba(255,60,40,0.1);
  border: 1px solid rgba(255,60,40,0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(0,0,0,0.8);
}

.tech-side {
  position: sticky;
  top: 20px;
  height: fit-content;
}
/* SIDEBAR BOX (UPDATED TO FIRE CARD STYLE) */
.side-box {
  background: transparent;
  padding: 30px 20px;
  border-radius: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* hover animation line effect */
.side-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, transparent, rgba(255,69,0,0.15), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.side-box:hover::after {
  transform: translateX(100%);
}

.side-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: rgba(255, 69, 0, 0.4);
}

/* heading */
.side-box h3 {
  color: #000;
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 0.3px;
}

/* paragraph */
.side-box p {
  margin: 6px 0 10px;
  color: #222;
  font-size: 14px;
  line-height: 1.6;
}

/* list */
.side-box ul li {
  margin: 6px 0;
  color: #222;
  font-size: 14px;
  line-height: 1.5;
}

/* bullet color */
.side-box ul li::marker {
  color: #ff4500;
}

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

  .tech-side {
    position: relative;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-759f431 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
  background: #f5f6f8;
  display: flex;
  justify-content: center;
  align-items: center;

}

/* MAIN CONTAINER */
.container {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* LEFT FORM */
.form-section {
  flex: 2;
  padding: 40px;
}

.form-section h1 {
  margin-bottom: 25px;
  color: #222;
}

/* ROW (2 INPUT SIDE BY SIDE) */
.row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.row input {
  flex: 1;
}

/* INPUT + TEXTAREA */
input,
textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #f1f2f4;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* TEXTAREA */
textarea {
  border-radius: 20px;
  height: 120px;
  resize: none;
  margin-top: 10px;
}

/* FOCUS EFFECT */
input:focus,
textarea:focus {
  background: #e9ecef;
}

/* FILE INPUT */
input[type="file"] {
  padding: 10px;
}

/* BUTTON ROW */
.btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}

/* BUTTONS */
button {
  padding: 12px 25px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* CANCEL */
.cancel {
  background: #e0e0e0;
}

/* SUBMIT */
.submit {
  background: #013220;
  color: #fff;
  transition: 0.3s;
}

.submit:hover {
  background: #025c3a;
}

/* RIGHT CARD */
.info-card {
  flex: 1;
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
  padding: 40px 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 20px 20px 0;
}

.info-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.info-card button {
  background: #fff;
  color: #333;
  border-radius: 20px;
}/* End custom CSS */