/* --- 1. Global Variables (အရောင်နဲ့ Font သတ်မှတ်ချက်) --- */
:root {
  /* Apple-inspired Dark Theme Colors */
  --bg-dark: #000814;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --aqua: #00f2fe;
  --blue-glow: rgba(79, 172, 254, 0.4);
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. Base Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  scroll-behavior: smooth;
}

/* --- Body Background (Parallax Style) --- */

body {
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 242, 254, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(79, 172, 254, 0.1) 0%,
      transparent 50%
    ),
    url("backgroung.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-position 0.1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* --- 4. Typography (စာသားများ အလှဆင်ခြင်း) --- */

/* ခေါင်းစဉ်ကြီးများ */
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

/* စာသား (Paragraph) */
p {
  /* ၁။ စာလုံးအရွယ်အစား (ဖုန်းမှာ 0.95rem ကနေ Desktop မှာ 1.1rem အထိ အလိုအလျောက် ညှိမယ်) */
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #ffffff;

  font-weight: 400;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;

  margin-bottom: 20px;
}

@media (max-width: 768px) {
  p {
    max-width: 100%;
    padding: 0 10px;
    text-align: justify;
    text-align-last: center;
  }
}
/* စာသားအတွင်းက အထူးပြုချင်တဲ့ အစိတ်အပိုင်း (Span) */
span {
  display: inline-block; /* Animation တွေ ထည့်လို့ရအောင် */
}

/* Highlight ပြချင်တဲ့ စာသား (ဥပမာ- နာမည်) */
.highlight {
  color: var(--aqua);
  text-shadow: 0 0 15px var(--blue-glow);
  font-weight: 700;
}

/* --- 5. Common Layout (Container) --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
section {
  width: 100%;
  max-width: 100%; /* Limit မထားဘဲ အပြည့်ယူမယ် */
  margin: 0;
  padding: 80px 0; /* ဘေးဘက် 10% ကို 0 ပြောင်းလိုက်တာပါ */
  box-sizing: border-box;
}

/* တစ်ခုရှိတာက ခေါင်းစဉ်နဲ့ စာသားတွေ ဘောင်ကြီးကို သွားမထိအောင် 
   အထဲက Content တွေကိုပဲ နည်းနည်းလေး ပြန်ထိန်းပေးရပါမယ် */
.section-header-left,
.section-header-right,
.section-header-center,
.contact-compact-grid,
.gallery-container {
  padding-left: 5%; /* အပြည့်ယူထားပေမဲ့ စာသားကိုတော့ 5% လောက်ပဲ ချန်မယ် */
  padding-right: 5%;
}

/* Mobile အတွက် Padding ကို နည်းနည်းပြန်လျှော့မယ် */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
}
/* ==========================================
   NAVIGATION SECTION (Apple Style)
   ========================================== */

/* --- Nav Base --- */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; /* နည်းနည်းပိုကျဉ်းလိုက်လို့ သပ်ရပ်သွားမယ် */
  background: rgba(0, 8, 20, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* Safari အတွက် */
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo Section (Gradient & Static) --- */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 5px;
}

/* Logo ပုံလေး (ငြိမ်နေမယ် - မလှည့်တော့ဘူး) */
.main-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  /* ဘောင်ကို နည်းနည်းပိုလင်းအောင်လုပ်ထားတယ် */
  border: 1px solid rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  transition: all 0.3s ease; /* Hover effect မြန်မြန်ဖြစ်အောင် */
}

/* Hover လုပ်ရင် မျောနေတဲ့ Effect လေးပဲ ပြမယ် */
.logo-container:hover .main-logo-img {
  transform: translateY(-3px); /* အပေါ်ကို နည်းနည်းလေး ကြွတက်လာမယ် */
  border-color: var(--aqua);
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* နာမည်အဓိက - **GRADIENT (ရောင်ပြေး)** ထည့်မည့်အပိုင်း */
.logo-main {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1;

  /* --- Gradient Logic --- */
  background: linear-gradient(90deg, #ffffff 0%, var(--aqua) 50%, #7fdfff 100%);
  -webkit-background-clip: text; /* စာသားထဲမှာပဲ Gradient ပေါ်အောင် */
  background-clip: text;
  color: transparent; /* မူရင်းစာလုံးအရောင်ကို ဖျောက်ထားမယ် */

  display: inline-block;
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.3));
}

.logo-dot {
  color: var(--aqua);
  margin-left: 2px;
  /* animation ဖြုတ်လိုက်ပါတယ် */
  opacity: 1;
}

/* MARINE ENGINEERING (စာသားသေးသေးလေး) */
.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-dim); /* နာမည်ပိုပေါ်အောင် ဒါကို နည်းနည်းမှိန်လိုက်တယ် */
  margin-top: 5px;
  text-transform: uppercase;
}

/* --- Desktop Menu (Perfect Alignment) --- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s ease;
  padding: 5px 0;
}

/* Apple Style Animated Underline */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--aqua);
  transition: 0.3s ease-in-out;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- Responsive Media Query --- */
@media (min-width: 993px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }

  .menu-icon {
    background: transparent;
    border: none;
    color: var(--aqua);
    font-size: 1.5rem;
    cursor: pointer;
  }
}

/* --- Mobile Popup Menu (သပ်ရပ်အောင် ပြန်ပြင်ထား) --- */
.nav-menu-popup {
  position: fixed;
  top: 80px; /* Header နဲ့ ခပ်ခွာခွာလေးထားရင် ပိုသပ်ရပ်တယ် */
  right: -100%;
  width: 230px; /* အကျယ်ကို ၂၃၀ ထိ လျှော့လိုက်လို့ ပိုကျဉ်းသွားပါပြီ */
  background: rgba(0, 8, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px; /* ထောင့်လေးဖက်လုံး ဝိုင်းလိုက်တာက ပို modern ဖြစ်တယ် */
  padding: 20px; /* အတွင်းထဲက နေရာလွတ်ကို လျှော့လိုက်တယ် */
  display: flex;
  flex-direction: column;
  gap: 5px; /* အကွက်တွေကြား စိပ်နေအောင် ညှိထားတယ် */
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Menu ပွင့်လာတဲ့အခါ ညာဘက်ကနေ ၁၅px ခွာပြီး Floating ဖြစ်နေမယ် */
.nav-menu-popup.active {
  right: 15px;
}

/* Header ပိုင်းကို သေသပ်အောင်လုပ်ခြင်း */
.popup-header {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-dim);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.header-dot {
  width: 6px;
  height: 6px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--aqua);
}
.menu-item {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.menu-item:hover {
  background: var(--glass);
  color: var(--aqua);
  padding-left: 20px;
}

.menu-item i {
  color: var(--aqua);
}

/* Menu Footer (ကျောက်ဆူးအစား စက်သွား) */
.menu-item {
  text-decoration: none !important;
  color: var(--text);
  font-size: 0.9rem; /* စာလုံးအရွယ်အစားကို နည်းနည်းလေး လျှော့လိုက်တယ် */
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px; /* Padding လျှော့လိုက်လို့ အကွက်တွေ မကျယ်တော့ဘူး */
  border-radius: 12px;
  transition: 0.3s;
}

/* Mouse ထိရင် (သို့) နှိပ်ရင် အပြာနုရောင်လေး သန်းလာမယ် */
.menu-item:hover {
  background: rgba(0, 242, 254, 0.08);
  color: var(--aqua);
  padding-left: 20px; /* နည်းနည်းလေး တိုးသွားတဲ့ effect */
}

.menu-item i {
  width: 20px;
  font-size: 1rem;
  color: var(--aqua);
  opacity: 0.9;
}

/* စက်သွားပါတဲ့ Footer အပိုင်း */
.popup-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.popup-footer span {
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* စက်သွားလေး အိအိလေး လည်စေဖို့ Animation */
@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin-slow {
  animation: spinSlow 8s linear infinite;
}
/* --- ၁။ Container ကို Screen အပြည့်ရအောင် ချဲ့မယ် --- */
.container {
  max-width: 100%; /* ၁၂၀၀ ကနေ အပြည့် (၁၀၀%) ကို ပြောင်းလိုက်ပါတယ် */
  margin: 0;
  padding: 0; /* Hero Section ကို အပြည့်ပေါ်စေဖို့ Padding ကို ဖယ်လိုက်တယ် */
  display: flex;
  flex-direction: column;
}
/* ==========================================
   REFRIGERANT POST DETIAL STYLING
   ========================================== */
/* --- Refrigeration Section Header Styling --- */
.section-text h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  color: #00f2fe;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* စာလုံးကို Glow ထည့်မယ် */
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

/* ခေါင်းစဉ်ထဲက snowflake icon လေးကို လည်နေအောင် လုပ်မယ် (Optional) */
.section-text h3 i.fa-snowflake {
  animation: fa-spin 5s linear infinite;
  filter: drop-shadow(0 0 8px #00f2fe);
}

/* --- Principles List Icons (မောင်လေး ပြောင်းချင်တဲ့အပိုင်း) --- */
.principles-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.principles-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* Maintenance Page ပုံစံ Icon Box လေးတွေ */
.principles-list li i {
  width: 55px;
  height: 55px;
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 242, 254, 0.3);
  /* Glow Effect */
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
  transition: all 0.3s ease;
}

/* Mouse တင်လိုက်ရင် ပိုလင်းသွားအောင် */
.principles-list li:hover {
  background: rgba(0, 242, 254, 0.05);
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateX(10px); /* ညာဘက်ကို နည်းနည်းတိုးသွားမယ် */
}

.principles-list li:hover i {
  background: #00f2fe;
  color: #000814;
  box-shadow: 0 0 25px #00f2fe;
  transform: scale(1.1);
}

/* ဖုန်းအတွက် အလယ်ညှိမယ် */
@media (max-width: 768px) {
  .section-text h3 {
    font-size: 1.4rem;
    justify-content: center; /* ခေါင်းစဉ်ကို အလယ်ပို့မယ် */
  }

  .principles-list li {
    flex-direction: column;
    text-align: center;
  }

  .principles-list li i {
    margin-bottom: 10px;
  }
}
.post-detail {
  display: flex;
  flex-direction: column;
  align-items: center; /* စာသားအားလုံး အလယ်ရောက်စေရန် */
  justify-content: center;
  text-align: center;

  /* Navbar နဲ့ ခွာရန် အပေါ်ကနေ 130px ချလိုက်ပါတယ် */
  padding-top: 150px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;

  width: 100%;
  box-sizing: border-box;
}

/* ၂။ ခေါင်းစဉ်ကြီး အရောင် (ပုံထဲကအတိုင်း Gradient Style) */
.glow-text {
  font-size: clamp(
    2.2rem,
    6vw,
    3.5rem
  ); /* ဖုန်းမှာ အလိုအလျောက် သင့်တော်သလို အရွယ်အစားပြောင်းမယ် */
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;

  /* အဖြူကနေ Aqua Blue သန်းတဲ့ Gradient */
  background: linear-gradient(180deg, #ffffff 30%, #70f1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Glow Effect */
  filter: drop-shadow(0 0 12px rgba(112, 241, 255, 0.4));
}

/* ၃။ Sub-title အရောင်နှင့် အလယ်ပို့ခြင်း */
.sub-title {
  display: block;
  font-size: 1.1rem;
  color: #55e7ff; /* Aqua Blue */
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 50px; /* အောက်က Content Box နဲ့ ခွာရန် */
  opacity: 0.9;
}

/* ၄။ Content Box (Glass Style) ကို အလယ်ပို့ခြင်း */
.content-box.glass-style {
  display: block;
  margin: 0 auto; /* ဘယ်ညာ ညီအောင် ညှိပြီး အလယ်ပို့ပေးတာပါ */
  width: 92%;
  max-width: 1000px;
  text-align: left; /* စာသားတွေကိုတော့ ဘယ်ဘက်ကပဲ စဖတ်တာ အဆင်ပြေလို့ပါ */

  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ၅။ List Item တွေကို သပ်ရပ်အောင် လုပ်ခြင်း */
.principles-list {
  list-style: none;
  padding: 0;
}

.principles-list li {
  margin-bottom: 15px;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.principles-list i {
  color: #00ff7f; /* Icon လေးတွေကို အစိမ်းနုရောင် ပေးထားပါတယ် */
}

/* ၆။ ဖုန်း Screen အတွက် ထပ်မံညှိနှိုင်းချက် */
@media screen and (max-width: 600px) {
  .post-detail {
    padding-top: 100px;
  }
  .glow-text {
    font-size: 1.8rem;
  }
  .sub-title {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  .content-box.glass-style {
    padding: 25px;
  }
}

/* --- Content Box & Principles List --- */
.glass-style {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  text-align: left; /* စာသားတွေကိုတော့ ဘယ်ကပ်ထားမယ် */
}

.principles-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.principles-list li {
  background: rgba(0, 242, 254, 0.05);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.principles-list li:hover {
  transform: translateY(-5px);
  background: rgba(0, 242, 254, 0.1);
  border-color: #00f2fe;
}

.principles-list i {
  color: #00f2fe;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.5));
}

/* --- Cycle Highlight (Compression, etc.) --- */
strong {
  color: #00f2fe;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* --- Mobile Fixes (ဖုန်းအတွက်) --- */
@media (max-width: 768px) {
  .post-detail {
    padding: 40px 15px;
  }

  .glow-text {
    font-size: 1.8rem;
  }

  .glass-style {
    padding: 25px 20px;
    border-radius: 25px;
    text-align: center; /* ဖုန်းမှာ စာကို အလယ်ပို့မယ် */
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  .principles-list li {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .principles-list i {
    margin-bottom: 10px;
  }
}

/* ==========================================
  BASIC REFRIGERATION CYCLE OPERATION
   ========================================== */
.cycle-detailed-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  position: relative;
}

/* Step တစ်ခုချင်းစီရဲ့ Box */
.step-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px 30px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Step နံပါတ်ဝိုင်းလေးတွေ */
.step-item::before {
  content: ""; /* နံပါတ်ကို HTML ထဲကအတိုင်းပဲ သုံးမယ်၊ ဒါက အလှဆင်ဖို့ */
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 50%;
  background: #00f2fe;
  border-radius: 10px;
  box-shadow: 0 0 15px #00f2fe;
  opacity: 0;
  transition: 0.3s;
}

.step-item:hover {
  background: rgba(0, 242, 254, 0.03);
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateX(10px);
}

.step-item:hover::before {
  opacity: 1;
}

/* Step ထဲက ခေါင်းစဉ် (1. Compression စတာတွေ) */
.step-item strong:first-child {
  font-family: "Orbitron", sans-serif;
  color: #00f2fe;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Note Box Styling */
.note-box {
  background: rgba(0, 242, 254, 0.05) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0, 242, 254, 0.2) !important;
  border-left: 6px solid #00f2fe !important;
  padding: 20px !important;
  margin-top: 40px !important;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.note-box i {
  color: #00f2fe;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
  .step-item {
    padding: 20px;
    margin-left: 10px;
  }

  .step-item::before {
    left: -10px;
  }

  .step-item:hover {
    transform: translateX(5px);
  }
}
/* ==========================================
  EXAM PREP QUESTION
   ========================================== */
/* --- Technical Q&A Section --- */
.technical-qa {
  margin: 50px auto;
  max-width: 900px;
  width: 100%;
}

.question-box {
  background: rgba(
    20,
    20,
    30,
    0.6
  ) !important; /* နည်းနည်းပိုမှောင်ပြီး Glass Look ရစေမယ် */
  backdrop-filter: blur(15px);
  padding: 35px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 157, 0, 0.2) !important; /* Orange accent border */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* ထောင့်မှာ Exam Label လေးကပ်မယ် (Optional) */
.question-box::after {
  content: "EXAM FOCUS";
  position: absolute;
  top: 35px;
  right: -30px;
  background: #ff9d00;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-family: "Orbitron", sans-serif;
}

/* ခေါင်းစဉ်များ (Question & Answer) */
.question-box h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
}

/* မေးခွန်းစာသား (Italic Text) */
.question-box p[style*="font-style: italic"] {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ff9d00;
  padding: 10px 0;
  border-left: 3px solid rgba(255, 157, 0, 0.3);
  padding-left: 20px;
  margin: 15px 0;
}

/* အဖြေစာသား */
.question-box p:not([style*="font-style: italic"]) {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

/* အဖြေထဲက အဓိက စကားလုံးများ */
.question-box strong {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  padding: 2px 8px;
  border-radius: 5px;
}

/* ဖုန်းအတွက် ချိန်ညှိချက် */
@media (max-width: 768px) {
  .question-box {
    padding: 25px 20px !important;
    width: 95% !important;
    margin: 0 auto;
  }

  .question-box h4 {
    font-size: 1rem;
  }

  .question-box p[style*="font-style: italic"] {
    font-size: 1rem;
  }

  /* ဖုန်းမှာ label ကို ဖျောက်ထားမယ် (နေရာရှုပ်လို့) */
  .question-box::after {
    display: none;
  }
}
/* ==========================================
  CYCLE OPERATION
   ========================================== */
/* --- Refrigeration Flex Section Styling --- */
.refrigeration-flex-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* ပုံရှိတဲ့ဘက် (Left Side) */
.side-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 242, 254, 0.2);
  transition: transform 0.4s ease;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 242, 254, 0.3);
}

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

/* စာရှိတဲ့ဘက် (Right Side) */
.side-text {
  flex: 1.2;
  text-align: left;
}

.side-text h3 {
  font-family: "Orbitron", sans-serif;
  color: #00f2fe;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.step-list-side {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.step-list-side li {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #00f2fe;
  transition: 0.3s;
}

.step-list-side li:hover {
  background: rgba(0, 242, 254, 0.05);
  transform: translateX(10px);
}

.step-list-side strong {
  color: #00f2fe;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-bottom: 5px;
}

/* --- Mobile Fixes (ဖုန်းမှာ အလယ်တည့်တည့်ကျစေရန်) --- */
@media (max-width: 900px) {
  .refrigeration-flex-section {
    flex-direction: column; /* ပုံကို အပေါ်ပို့၊ စာကို အောက်ပို့မယ် */
    text-align: center;
    gap: 30px;
  }

  .side-text {
    width: 100%;
  }

  .side-text h3 {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .step-list-side li {
    text-align: left; /* စာကိုတော့ ဖတ်ရလွယ်အောင် ဘယ်ကပ်ထားမယ် */
  }

  .image-wrapper {
    max-width: 90%; /* ဖုန်းမှာ ပုံအရမ်းကြီးမနေအောင် */
  }
}
/* ==========================================
COMPONENT DETIAL SECTION ONE
   ========================================== */

.components-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
/* --- ခေါင်းစဉ်ကို တိတိကျကျ Selector သုံးပြီး အရောင်ပြောင်းမယ် --- */
.components-details .component-card .card-header h3 {
  color: #00f2fe !important; /* !important ထည့်လိုက်ရင် တခြား CSS တွေ လာလွှမ်းမိုးလို့ မရတော့ပါဘူး */
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* Mouse တင်လိုက်ရင် ခေါင်းစဉ်က ပိုလင်းလာအောင် လုပ်မယ် */
.component-card:hover .card-header h3 {
  color: #ffffff !important; /* Hover လုပ်ရင် အဖြူရောင်ပြောင်းသွားမယ် */
  text-shadow: 0 0 15px #00f2fe;
}
/* --- Compressor Card with Image --- */
.component-with-image {
  flex-direction: column;
}

.comp-image-box {
  margin: 0;
  margin-bottom: 25px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: white; /* ပုံက အဖြူပေါ်မှာဆွဲထားလို့ နောက်ခံအဖြူထားပေးတာပါ */
  padding: 15px; /* ပုံကို နည်းနည်း နေရာလွတ်ပေးမယ် */
}

.comp-image-box:hover {
  transform: scale(1.02);
  border-color: #00f2fe;
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.2);
}

.comp-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* ပုံပုံစံမပျက်အောင် */
}

.comp-image-box figcaption {
  font-size: 0.8rem;
  color: #333; /* အဖြူပေါ်မှာမို့လို့ စာကို အမည်းရောင်ထားမယ် */
  text-align: center;
  padding-top: 10px;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}

.component-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.component-card:hover {
  transform: translateY(-5px);
  border-color: #00f2fe;
  background: rgba(0, 242, 254, 0.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-header i {
  font-size: 1.8rem;
  color: #00f2fe;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.card-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
}

.card-body p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-align: left !important; /* စာကို ဘယ်ကပ်ထားမယ် */
}

/* ထင်သာမြင်သာရှိတဲ့ Note Box လေးတွေ */
.process-note,
.types-box {
  background: rgba(0, 242, 254, 0.08);
  padding: 15px;
  border-radius: 15px;
  border-left: 4px solid #00f2fe;
}

.types-box h4 {
  font-size: 0.95rem;
  color: #00f2fe;
  margin-bottom: 10px;
}

.types-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.types-box li {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.types-box li i {
  font-size: 0.8rem;
  color: #00f2fe;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .components-details {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
/* ==========================================
COMPONENT DETIAL SECTION TWO
   ========================================== */
/* --- Condenser Title Color Fix --- */
.component-card .card-header .component-title {
  color: #00f2fe !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

/* --- Pump Down Box Styling --- */
.pump-down-box {
  background: rgba(0, 242, 254, 0.05);
  border: 1px dashed #00f2fe;
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
}

.pump-down-box h4 {
  color: #00f2fe;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* --- Parts Grid --- */
.parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.parts-grid span {
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 8px;
}

.parts-grid i {
  font-size: 0.5rem;
  color: #00f2fe;
}

/* Mobile Friendly */
@media (max-width: 480px) {
  .parts-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
  Section TEV  STYLE
   ========================================== */
/* --- TEV Section Styling --- */
/* --- TEV Diagram Styling (ုံထည့်ရန်) --- */
.card-with-image {
  flex-direction: column;
}

.diagram-box {
  margin: 0;
  margin-bottom: 30px; /* working principle နဲ့ နည်းနည်း ခွာမယ် */
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: white; /* ပုံက အဖြူပေါ်မှာဆွဲထားလို့ နောက်ခံအဖြူထားပေးတာပါ */
  padding: 15px;
}

.diagram-box:hover {
  transform: scale(1.02);
  border-color: #00f2fe;
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.2);
}

.diagram-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.diagram-box figcaption {
  font-size: 0.85rem;
  color: #333; /* အဖြူပေါ်မှာမို့လို့ စာကို အမည်းရောင်ထားမယ် */
  text-align: center;
  padding-top: 10px;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}
.tev-section {
  padding: 40px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.tev-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tev-header {
  background: rgba(0, 242, 254, 0.1);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}

.tev-header h3 {
  color: #00f2fe !important;
  margin: 0;
  font-family: "Orbitron", sans-serif;
}

.exam-tag {
  background: #ff9d00;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tev-content {
  padding: 30px;
}

.sub-section {
  margin-bottom: 25px;
}

.sub-title {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-title i {
  color: #ff9d00;
}

/* စာသားတွေဖတ်ရလွယ်အောင် ပြင်ထားတဲ့ Text Box */
.text-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #444;
  transition: 0.3s;
}

.highlight-border {
  border-left: 4px solid #00f2fe;
}

.text-box p {
  /* အစစ်မှန်ဆုံး အဖြူရောင် (Pure White) ကို သုံးထားပါတယ် */
  color: #ffffff !important;

  /* စာလုံးကို ပိုထူပေးလိုက်ရင် အဖြူရောင်က ပိုတောက်လာပါတယ် */
  font-weight: 600;

  line-height: 1.8;
  font-size: 1.05rem; /* စာလုံးအရွယ်အစားကိုလည်း နည်းနည်းလေး ထပ်တိုးထားတယ် */
  margin: 0;
  text-align: left;

  /* စာသားတွေ ပိုကြွလာအောင် Shadow ကို ပိုနက်ပေးထားတယ် */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);

  /* စာလုံးတွေ တစ်ခုနဲ့တစ်ခု မကပ်သွားအောင် space လေး နည်းနည်းထည့်ထားတယ် */
  letter-spacing: 0.5px;
}

.text-box strong {
  color: #00f2fe;
}

/* Extra Study Box */
/* --- Oral Exam Pro-Tips (Dark & Neon Style) --- */
.oral-pro-tips {
  background: #0a0a0a !important; /* အမည်းရောင်အစစ် */
  border: 2px solid #00f2fe !important; /* Aqua တောက်တောက် ဘောင် */
  border-radius: 20px !important;
  padding: 30px !important;
  margin-top: 40px !important;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2); /* အပြာရောင် ရိပ်ရိပ်လေး */
  position: relative;
}

/* ခေါင်းစဉ်ကို လင်းနေအောင် လုပ်မယ် */
.oral-pro-tips .sub-title {
  color: #ff9d00 !important; /* လိမ္မော်ရောင်တောက်တောက် */
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* စာသားတစ်ခုချင်းစီကို အဖြူတောက်တောက် ထားမယ် */
.oral-pro-tips .p-item {
  color: #ffffff !important;
  margin-bottom: 15px;
  font-size: 1rem;
}

.p-code {
  color: #00f2fe;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
}

/* Force အမျိုးအစားတွေကို အရောင်ခွဲမယ် */
.force-open {
  color: #00ff88;
  font-size: 0.85rem;
  font-style: italic;
} /* အစိမ်း */
.force-close {
  color: #ff4444;
  font-size: 0.85rem;
  font-style: italic;
} /* အနီ */

/* Pressure List styling */
.pressure-list li {
  color: #ffffff !important;
  margin-bottom: 10px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* Equation Box ကို ပိုတောက်အောင် လုပ်မယ် */
.oral-pro-tips .equation-box {
  background: linear-gradient(145deg, #111, #222) !important;
  border: 1px solid #ff9d00 !important;
  padding: 20px !important;
  margin-top: 25px !important;
  border-radius: 12px !important;
}

.oral-pro-tips .formula {
  color: #ff9d00 !important; /* Formula ကို လိမ္မော်ရောင်တောက်တောက် */
  font-size: 1.6rem !important;
  letter-spacing: 4px !important;
  text-shadow: 0 0 15px rgba(255, 157, 0, 0.4);
}
/* ==========================================
   DIAGNOSTIC TOOLS (FILTER & SIGHT GLASS)
   ========================================== */

/* --- Diagnostic Tools Layout --- */
.diagnostic-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

/* --- Card & Background Styling --- */
.diagnostic-card {
  background: rgba(10, 10, 10, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

/* --- Headers Color Section --- */
.drier-header h3 {
  color: #00f2fe !important; /* Aqua Blue for Filter Drier */
}
.sightglass-header h3 {
  color: #00ff88 !important; /* Spring Green for Sight Glass */
}

/* --- Text Content Styling --- */
.diagnostic-card .text-box p {
  color: #ffffff !important; /* အဖြူတောက်တောက် */
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* --- Warning & Alerts --- */
.warning-alert {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  color: #ff4444;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
}

/* ==========================================
   ENGINEERING PRO-TIPS SECTION
   ========================================== */

/* --- Maintenance Tips Wrapper --- */
.engineering-tips {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ff9d00;
  margin-top: 30px;
}

/* --- Tips Grid Layout --- */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  color: #ffffff;
}

.tip-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
  .diagnostic-tools,
  .tips-grid {
    grid-template-columns: 1fr; /* Mobile မှာ တစ်ခုချင်းစီ ဆင်းသွားမယ် */
  }
}
/* ==========================================
   SAFETY CONTROLS (LP/HP & SOLENOID)
   ========================================== */

/* --- Card Headers --- */
.hp-lp-header h3 {
  color: #00f2fe !important;
}
.solenoid-header h3 {
  color: #ff9d00 !important;
}

/* --- White Background for Diagrams --- */
.white-bg {
  background: #ffffff !important;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* --- Parts Legend Grid --- */
.parts-legend {
  display: grid;
  /* စာလုံးရေများလာလို့ column width ကို နည်းနည်းချဲ့လိုက်တယ် */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.legend-item {
  font-size: 0.85rem;
  color: #ffffff !important; /* အဖြူတောက်တောက် */
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* နံပါတ်ဝိုင်းလေးတွေကို ပိုတောက်အောင်လုပ်မယ် */
.legend-item span {
  background: #00f2fe;
  color: #000000;
  min-width: 22px; /* ဝိုင်းဝိုင်းလေးဖြစ်အောင် fixed width ပေးမယ် */
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}
/* Hover လုပ်ရင် အရောင်လေး လင်းလာအောင် */
.legend-item:hover {
  transform: translateX(5px);
  transition: 0.3s;
}

.legend-item:hover span {
  background: #ffffff;
}
/* --- Content Typography --- */
.info-title {
  color: #00f2fe;
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 242, 254, 0.2);
  display: inline-block;
}

.warning-border {
  border-left: 4px solid #ff4444 !important;
  background: rgba(255, 68, 68, 0.05) !important;
}

/* စာသားများ အဖြူတောက်တောက်ဖြစ်စေရန် */
.safety-card .text-box p {
  color: #ffffff !important;
  font-weight: 500;
  line-height: 1.7;
}
/* ==========================================
   SOLENOID VALVES COMPONENT STYLING
   ========================================== */

/* --- Solenoid Header Color --- */
.solenoid-header h3 {
  color: #ff9d00 !important; /* Solenoid အတွက် လိမ္မော်ရောင်သုံးထားပါတယ် */
  text-shadow: 0 0 10px rgba(255, 157, 0, 0.3);
}

/* --- Diagram Box Layout --- */
.solenoid-diagram-area .diagram-box {
  background: #ffffff !important; /* ပုံလင်းစေရန် နောက်ခံအဖြူထားပါသည် */
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 157, 0, 0.2);
}

.solenoid-diagram-area figcaption {
  color: #333333;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}

/* --- Text Box Spacing --- */
.safety-card .text-box {
  margin-bottom: 20px;
}

.safety-card .text-box p {
  color: #ffffff !important; /* အဖြူတောက်တောက် */
  line-height: 1.7;
}
/* ==========================================
   MAIN REFRIGERATION COMPONENTS STYLE
   ========================================== */

/* --- Component Headers --- */
.compressor-header h3 {
  color: #00f2fe !important;
}
.oil-header h3 {
  color: #ff9d00 !important;
}
.condenser-header h3 {
  color: #00ff88 !important;
}

/* --- Diagram Containers --- */
.main-card .diagram-box.white-bg {
  background: #ffffff !important;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-card figcaption {
  color: #333333;
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  margin-top: 8px;
}

/* --- White Text Styling --- */
.main-card .text-box p {
  color: #ffffff !important; /* အဖြူတောက်တောက် */
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* --- Section Layout --- */
.refrigeration-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}
/* ==========================================
   RELIEF VALVE & OIL HEATER STYLING
   ========================================== */

/* --- Header Colors --- */
.relief-header h3 {
  color: #ff4444 !important;
} /* Safety အတွက် အနီရောင် */
.heater-header h3 {
  color: #ff9d00 !important;
} /* အပူအတွက် လိမ္မော်ရောင် */

/* --- Card Customizing --- */
.safety-auxiliary {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
}

.warning-border {
  border-left: 4px solid #ff4444 !important;
  background: rgba(255, 68, 68, 0.05) !important;
  margin-bottom: 15px;
}

/* --- Process Note for Oil Heater --- */
.process-note {
  background: rgba(0, 242, 254, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #00f2fe;
  border: 1px dashed #00f2fe;
}

/* စာသားများ အဖြူတောက်တောက်ဖြစ်စေရန် */
.safety-auxiliary .text-box p {
  color: #ffffff !important;
  font-weight: 500;
  line-height: 1.7;
}
/* ==========================================
   AC & REFRIGERANT KNOWLEDGE BASE STYLING
   ========================================== */

/* --- Section Headers --- */
.refrigerant-header h3 {
  color: #00f2fe !important;
}
.system-header h3 {
  color: #00ff88 !important;
}
.purpose-header h3 {
  color: #ff9d00 !important;
}

/* --- Refrigerant Types Grid --- */
.refrigerant-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.type-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.type-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.type-tag {
  display: inline-block;
  background: #00f2fe;
  color: #000;
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

/* --- Objectives List --- */
.objectives-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.obj-item {
  background: rgba(0, 255, 136, 0.05);
  padding: 10px;
  border-radius: 8px;
  color: #ffffff !important;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.obj-item i {
  color: #00ff88;
}

/* --- General Text Support --- */
.info-card .text-box p {
  color: #ffffff !important;
  line-height: 1.8;
  margin-bottom: 15px;
}

.system-flow-list {
  list-style: none;
  padding: 0;
}

.system-flow-list li {
  color: #ffffff !important;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.system-flow-list li strong {
  color: #00f2fe;
}
/* ==========================================
   FLOATING BACK TO HOME BUTTON
   ========================================== */

.back-to-home {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #00f2fe 0%, #00ff88 100%);
  color: #000000 !important;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-home i {
  font-size: 1.1rem;
}

/* Hover လုပ်ရင် ပိုကြီးလာပြီး အရောင်လင်းလာမယ် */
.back-to-home:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.5);
  background: #ffffff;
  color: #000000 !important;
}

/* Mobile Screen မှာဆိုရင် စာသားကိုဖျောက်ပြီး Icon ပဲပြမယ် (နေရာမစားအောင်) */
@media (max-width: 600px) {
  .back-to-home {
    padding: 15px;
    bottom: 20px;
    right: 20px;
  }
  .back-to-home span {
    display: none; /* စာသား "Back to Home" ကို ဖျောက်ထားမယ် */
  }
  .back-to-home i {
    margin: 0;
    font-size: 1.3rem;
  }
}
/* ==========================================
   FOOTER - MARINE PROFESSIONAL STYLE
   ========================================== */

.footer {
  padding: 40px 20px;
  background: transparent; /* နောက်ခံကို လုံးဝ အကြည်ထားမယ် */
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* အပေါ်မှာ မျဉ်းပါးပါးလေးပဲ ထားမယ် */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Icons Styling */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #00f3ff;
  transform: translateY(-5px);
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
}

/* Footer Info & Slogan */
/* --- Footer Info Container (အလယ်မှာ စုရန်) --- */
.footer-info {
  display: flex;
  align-items: center; /* အပေါ်အောက် အလယ်ညှိမယ် */
  justify-content: center; /* ဘယ်ညာ အလယ်မှာ အကုန်စုမယ် */
  gap: 15px; /* စာသား၊ မျဉ်း၊ Slogan ကြား အကွာအဝေး (ဒါနဲ့ ညှိပါ) */
  margin-top: 20px;
  flex-wrap: nowrap; /* တစ်တန်းတည်းပဲ ရှိစေမယ် */
}

/* --- Copyright & Name --- */
.footer-info p {
  margin: 0 !important; /* ဒီ margin 0 က အရေးကြီးဆုံးပါ၊ စာကို မကြွစေတော့ဘူး */
  padding: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.footer-name {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-left: 8px;
}

/* --- Vertical Divider (မျဉ်းကြောင်း) --- */
.footer-divider {
  width: 1px;
  height: 14px; /* စာလုံးအမြင့်နဲ့ ကွက်တိဖြစ်အောင် ညှိထားတယ် */
  background: rgba(0, 243, 255, 0.4);
  display: inline-block;
  flex-shrink: 0; /* မျဉ်းလေး သေးမသွားအောင် */
}

/* --- Slogan --- */
.footer-slogan {
  font-size: 0.8rem;
  font-weight: 500;
  color: #00f3ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
  white-space: nowrap;
  line-height: 1; /* စာကြောင်းအမြင့်ကို ထိန်းမယ် */
}

/* --- Mobile Fix --- */
@media (max-width: 600px) {
  .footer-info {
    gap: 10px; /* ဖုန်းမှာ နေရာကျပ်ရင် နည်းနည်းစီ ထပ်ကပ်မယ် */
  }
  .footer-info p,
  .footer-slogan {
    font-size: 0.75rem;
  }
}
