/* --- 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);

  /* ၂။ အရောင်ကို ပိုလင်းစေပြီး မျက်စိမပင်ပန်းတဲ့ Off-White အရောင်သုံးမယ် */
  color: #e0e0e0;

  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%; /* ဖုန်းမှာတော့ Screen အပြည့်နီးပါး ယူမယ် */
    padding: 0 10px; /* ဘေးဘောင်လေးတွေ နည်းနည်းခြားမယ် */
    text-align: justify; /* ဖုန်းမှာ စာကြောင်းတွေ ညီနေအောင် (Optional - အလယ်ပဲထားချင်ရင် text-align: center ပဲထားပါ) */
    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;
}
/* ==========================================
   HERO SECTION - APPLE MINIMALIST STYLE
   ========================================== */
/* --- About Me Header ကို ဘယ်ဘက်ကပ်ခြင်း --- */
.section-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ဘယ်ဘက်အစွန်ကို ကပ်မယ် */
  gap: 25px;
  margin-bottom: 50px;
  text-align: left; /* စာသားတွေကို ဘယ်ဘက်ကပ်မယ် */
}

.header-text-group {
  display: flex;
  flex-direction: column;
}

/* ခေါင်းစဉ်ဘေးက မျဉ်းရှည်လေး */
.section-header-left .header-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--aqua),
    transparent
  ); /* ဘယ်ကနေ ညာကို ဖျော့သွားမယ် */
  border-radius: 2px;
}

.section-header-left .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -1px;
}

.section-header-left .section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 5px;
  font-weight: 600;

  /* Gradient (ရောင်ပြေး) ထည့်တဲ့အပိုင်း */
  background: linear-gradient(to right, #00f3ff, #ffffff);
  -webkit-background-clip: text; /* စာသားထဲမှာပဲ အရောင်ပေါ်အောင် ဖြတ်မယ် */
  -webkit-text-fill-color: transparent; /* မူလစာသားအရောင်ကို ဖျောက်ပစ်မယ် */

  display: inline-block; /* Gradient ပေါ်ဖို့ ဒါလေးထည့်ပေးရမယ် */
  opacity: 0.9;
}

/* --- ခေါင်းစဉ်အတွက် Animation (ဘယ်ဘက်ကနေ ဝင်လာမယ်) --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px); /* ဘယ်ဘက်အပြင်ကနေ စမယ် */
  animation: revealLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes revealLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Friendly Logic */
@media (max-width: 768px) {
  .section-header-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-header-left .header-line {
    width: 60px;
    background: var(--aqua);
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 100px 10%;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(0, 242, 254, 0.05) 0%,
    transparent 40%
  );
  overflow: hidden;
}

/* --- ၁။ Profile Area (သပ်ရပ်သော ပုံရိပ်) --- */
.profile-area {
  flex: 0 0 400px; /* ပုံကို ပုံသေအကျယ်ထားမယ် */
  position: relative;
}

.profile-frame {
  width: 100%;
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: contrast(1.05) brightness(1.02); /* ပုံကို ပိုလင်းပြီး ဖြူစင်စေမယ် */
}

/* Mouse တင်လိုက်ရင် ပုံလေးက အိအိလေး ကြွလာမယ် */
.profile-frame:hover {
  transform: translateY(-15px) scale(1.02);
}

.profile-frame:hover .profile-img {
  transform: scale(1.08);
}

/* --- ၂။ Intro Area (စာသားပိုင်းဆိုင်ရာ) --- */
.intro-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.role-badge {
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--aqua);
  background: rgba(0, 242, 254, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid rgba(0, 242, 254, 0.2);
  text-transform: uppercase;
}

.main-title {
  font-size: 4rem;
  font-weight: 850;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
}

.name-glow {
  background: linear-gradient(to right, #fff, var(--aqua), #00d2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.tagline {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  border-left: 2px solid var(--aqua); /* အပြာနုရောင် မျဉ်းလေးနဲ့ ရှင်းလင်းစေမယ် */
  padding-left: 25px;
  font-weight: 400;
}

/* --- ၃။ ခလုတ်များ (Colors & Glow) --- */
.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.btn-primary {
  padding: 16px 35px;
  background: var(--aqua); /* Learn Engineering ကို Marine Aqua အရောင်ပေးမယ် */
  color: #000;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

.btn-secondary {
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.5);
  filter: brightness(1.1);
}

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

/* --- ၄။ Responsive (ဖုန်းအတွက်) --- */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 60px;
    gap: 50px;
  }

  .profile-area {
    flex: 0 0 auto;
    width: 280px;
    margin: 0 auto;
  }

  .profile-frame {
    height: 380px;
  }

  .intro-area {
    align-items: center;
  }

  .main-title {
    font-size: 2.8rem;
  }

  .tagline {
    border-left: none;
    padding-left: 0;
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}
/* ==========================================
   ABOUT ME SECTION - SPATIAL SLIDE-IN
   ========================================== */

.about-section {
  padding: 100px 10%;
  overflow: hidden; /* Animation က Screen အပြင်ကထွက်လာလို့ ဒါထည့်ရမယ် */
  position: relative;
}

/* About Title */
/* --- About Me Title Styling (Maintenance Page Style) --- */
.section-title {
  font-family: "Orbitron", sans-serif; /* နည်းပညာဆန်တဲ့ Font */
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 50px;

  /* အရောင်ကို Gradient စပ်မယ် */
  background: linear-gradient(135deg, #ffffff 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* စာလုံးကို လင်းနေအောင် Glow ထည့်မယ် */
  filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.4));
  position: relative;
  display: inline-block;
  width: 100%;
}

/* ခေါင်းစဉ်အောက်က မျဉ်းတိုလေး (Optional) */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00f2fe;
  margin: 15px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 15px #00f2fe;
}

/* ဖုန်းအတွက် အရွယ်အစား ပြန်ညှိမယ် */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}

/* Content Layout */
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* --- ၁။ ဘယ်ဘက်ကဒ် (About Card) --- */
.about-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03); /* Glassmorphism ပါးပါးလေး */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-10px); /* Hover လုပ်ရင် နည်းနည်းကြွလာမယ် */
  border-color: rgba(0, 242, 254, 0.3);
}

/* ကျောက်ဆူး Icon လေး */
.card-icon {
  position: absolute;
  top: -25px;
  right: 30px;
  background: var(--aqua);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}

.about-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* OEW Glow */
.text-glow {
  color: var(--aqua);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

/* --- ၂။ ညာဘက်အသေးစိတ်ပိုင်း (About Details) --- */
/* --- ညာဘက် အသေးစိတ်အကွက် --- */
.about-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-box {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item .label {
  color: var(--aqua);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.detail-item .value {
  color: #fff;
  font-weight: 500;
}

/* --- လှလှလေးဖြစ်စေမည့် Quote Box --- */
.share-quote-box {
  position: relative;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 20px;
  border-left: 4px solid var(--aqua); /* ဘေးက မျဉ်းရောင်လေး */
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.share-quote-box:hover {
  transform: scale(1.02);
  background: rgba(0, 242, 254, 0.08);
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.2rem;
  color: var(--aqua);
  opacity: 0.3;
}

.share-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0;
  padding-left: 10px;
}

/* ပင်လယ်လှိုင်းလို မျဉ်းလေး */
.ocean-line {
  width: 50px;
  height: 3px;
  background: var(--aqua);
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--aqua);
}

/* ==========================================
   ANIMATION LOGIC (ဘေးကနေထွက်လာမည့် အပိုင်း)
   ========================================== */

/* ၁။ ဘယ်ဘက်မှ ညာဘက်သို့ (Slide In Left) */
.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s; /* နည်းနည်းလေး နောက်ကျပြီးမှ ပွင့်မယ် */
}

/* ၂။ ညာဘက်မှ ဘယ်ဘက်သို့ (Slide In Right) */
.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s; /* ပထမကဒ်ထွက်ပြီးမှ ဒုတိယကဒ်ထွက်မယ် */
}

/* ၃။ အောက်မှ အပေါ်သို့ (Slide In Bottom - for Title) */
.slide-in-bottom {
  opacity: 0;
  animation: slideInBottom 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- KEYFRAMES (Animation ရဲ့ လှုပ်ရှားမှုများ) --- */

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px); /* ဘယ်ဘက် ၁၀၀px အကွာကနေ စမယ် */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* မူရင်းနေရာကို ရောက်မယ် */
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px); /* ညာဘက် ၁၀၀px အကွာကနေ စမယ် */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px); /* အောက်ကနေ စမယ် */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- ဖုန်းအတွက် ပြန်ညှိခြင်း (Media Query) --- */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column; /* ဖုန်းမှာ အပေါ်အောက် စီမယ် */
    text-align: center;
  }

  .card-icon {
    right: 50%;
    transform: translateX(50%); /* Icon ကို အလယ်ပို့မယ် */
  }
}
/* ==========================================
   KNOWLEDGE SECTION - TECH GRID STYLE
   ========================================== */
/* --- Marine Knowledge Header ကို အလယ်ထားခြင်း --- */
.section-header-center {
  display: flex;
  align-items: center;
  justify-content: center; /* အလယ်ဗဟိုမှာ ထားမယ် */
  gap: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.section-header-center .header-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ဘေးနှစ်ဖက်က Gradient မျဉ်းလေးများ */
.section-header-center .header-line {
  width: 80px;
  height: 2px;
  border-radius: 2px;
}

.line-left {
  background: linear-gradient(to right, transparent, var(--aqua));
}

.line-right {
  background: linear-gradient(to left, transparent, var(--aqua));
}

.section-header-center .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -1px;
}

/* Subtitle ကို ရောင်ပြေးလေး ထည့်မယ် */
.section-header-center .section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
  font-weight: 600;
  background: linear-gradient(
    to right,
    #ffffff,
    #00f3ff,
    #ffffff
  ); /* အလယ်မှာ Aqua လင်းနေမယ် */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  opacity: 0.9;
}

/* Animation အောက်ကနေ အိအိလေး တက်လာမယ် */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .section-header-center {
    gap: 15px;
  }
  .section-header-center .header-line {
    width: 40px; /* ဖုန်းမှာ မျဉ်းကို တိုလိုက်မယ် */
  }
  .section-header-center .section-title {
    font-size: 2rem;
  }
}
.knowledge-section {
  padding: 100px 10%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--aqua);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Grid Layout */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* --- Knowledge Card Styling --- */
.knowledge-card {
  /* နောက်ခံကို အမည်းဘက် နည်းနည်းပိုရောက်အောင် ပြင်မှ စာသားတွေ ကြွလာမှာပါ */
  background: rgba(0, 10, 20, 0.75);
  backdrop-filter: blur(15px); /* မှန်ကြည်စတိုင်ကို ပိုထင်ရှားစေမယ် */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 25px;
  transition: all 0.4s ease;
}

.knowledge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0;
  transition: 0.4s;
}

.knowledge-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.knowledge-card:hover::before {
  opacity: 1;
}

/* Icons */
.k-icon {
  font-size: 2.5rem;
  color: var(--aqua);
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.knowledge-card h3 {
  font-size: 1.6rem;
  /* အရောင်ပြေးကို ဖြုတ်ပြီး လုံးဝ အဖြူရောင် ထားလိုက်တာက အဖတ်ရဆုံးပါ */
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 800;
  /* စာလုံးနောက်မှာ အမည်းရောင် အရိပ်ပါးပါးလေး ထည့်လိုက်ရင် နောက်ခံနဲ့ ကွဲသွားမယ် */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.knowledge-card p {
  /* ခဲပြာရောင်ကနေ အဖြူရောင် (Off-white) ဘက်ကို ပြောင်းလိုက်ပါတယ် */
  color: #f0f0f0;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem; /* စာလုံးအရွယ်အစားကို နည်းနည်း ထပ်ကြီးပေးထားတယ် */
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* Card Highlights (Check marks) */
.card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.card-highlights span {
  font-size: 0.85rem;
  color: #000000; /* အထဲကစာကို အမည်းထားလိုက်ရင် ပိုဖတ်ရလွယ်တယ် */
  background: var(--aqua); /* နောက်ခံကို တောက်တောက်လေး ထားမယ် */
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
}
.card-highlights i {
  color: var(--aqua);
  font-size: 0.7rem;
}
.tech-specs {
  display: flex;
  flex-direction: column; /* တစ်ကြောင်းချင်းစီ စီမယ် (Logbook စတိုင်) */
  gap: 12px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 15px;
  border: 1px dashed rgba(0, 242, 254, 0.2); /* အစက်လေးတွေနဲ့ ဘောင်ခတ်မယ် */
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}
.spec-item i {
  color: var(--aqua);
  font-size: 1rem;
  width: 20px; /* Icon တွေကို တစ်တန်းတည်း ဖြစ်အောင် ညှိမယ် */
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.5));
}

.spec-item span {
  letter-spacing: 0.5px;
  opacity: 0.9;
}
/* Read More Button */
.read-more {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--aqua); /* Mouse တင်ရင် မီးချောင်းလေးလို လင်းလာမယ် */
}

/* ==========================================
   ANIMATION: SMOOTH REVEAL UP (နှေးနှေးလေး တက်လာစေရန်)
   ========================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(60px); /* နေရာကို နည်းနည်းပိုနိမ့်ထားမယ် */

  /* ကြာချိန်ကို 0.8s ကနေ 1.5s အထိ တိုးလိုက်ပါတယ် (ပိုနှေးသွားမယ်) */
  /* cubic-bezier ကိုလည်း ပိုပြီး အိအိလေး ဖြစ်သွားအောင် ညှိထားပါတယ် */
  animation: revealUp 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ဒုတိယကဒ် ထွက်လာမယ့် အချိန်ကိုလည်း နည်းနည်းလေး ပိုခွာလိုက်မယ် */
.delay-1 {
  animation-delay: 0.4s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 40px; /* ဖုန်းမှာ ကဒ်တွေကြား နေရာလွတ် ပိုပေးထားတယ် */
  }
}
/* ==========================================
   GALLERY SECTION - MOSAIC GRID & SLIDE
   ========================================== */
/* --- Gallery Header ကို ညာဘက်ကပ်ခြင်း --- */
.section-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* ညာဘက်အစွန်ကို ပို့မယ် */
  gap: 25px;
  margin-bottom: 60px;
  text-align: right; /* စာသားတွေကို ညာဘက်ကပ်မယ် */
}

.header-text-group {
  display: flex;
  flex-direction: column;
}

/* ခေါင်းစဉ်ဘေးက မျဉ်းရှည်လေး (အရမ်းလှပါတယ်) */
.header-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(to left, var(--aqua), transparent);
  border-radius: 2px;
}

.section-header-right .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -1px;
}

.section-header-right .section-subtitle {
  color: var(--aqua);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 5px;
  opacity: 0.8;
}

/* --- ခေါင်းစဉ်အတွက် Animation အသစ် (ညာဘက်ကနေ ဝင်လာမယ်) --- */
.reveal-right {
  opacity: 0;
  transform: translateX(50px); /* ညာဘက်ကနေ စမယ် */
  animation: revealRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes revealRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile မှာတော့ အလယ်ပဲ ပြန်ထားမယ် (ဖတ်ရလွယ်အောင်) */
@media (max-width: 768px) {
  .section-header-right {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .header-line {
    width: 60px;
    background: var(--aqua); /* Mobile မှာ မျဉ်းကို အလယ်ပို့မယ် */
  }
}
.photography-section {
  padding: 100px 10%;
  overflow: hidden; /* Animation က Screen အပြင်ကဝင်လာလို့ ဒါထည့်ရမယ် */
}

/* Grid Layout (iPhone Gallery လိုမျိုး Mosaic Style) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  grid-auto-rows: 250px; /* ပုံတွေရဲ့ အမြင့်ကို ပုံသေထားမယ် */
}

/* --- Photo Card Styling --- */
.photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ပုံတွေ အချိုးမပျက်အောင် ဖြတ်ညှိမယ် */
  transition: transform 0.6s ease;
}

/* Mosaic Effect (တချို့ပုံတွေကို နေရာပိုယူခိုင်းမယ်) */
.gallery-grid div:nth-child(2) {
  grid-row: span 2; /* ဒုတိယပုံကို အောက်ကို ၂ ကွက်စာ ယူမယ် */
}

/* --- Mouse Hover Effects --- */
.photo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 242, 254, 0.3);
}

.photo-card:hover img {
  transform: scale(1.08); /* Mouse တင်ရင် ပုံလေး ကြီးလာမယ် */
}

/* --- Photo Overlay (စာသားပြသခြင်း) --- */
.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; /* အောက်ခြေကနေ ၆၀% အထိ ဖုံးမယ် */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* စာကို အောက်ခြေမှာ ထားမယ် */
  padding: 20px;
  opacity: 0; /* ပုံမှန်ဆို ဖျောက်ထားမယ် */
  transition: opacity 0.4s ease;
}

.photo-card:hover .photo-overlay {
  opacity: 1; /* Mouse တင်မှ ပြမယ် */
}

.photo-date {
  font-size: 0.8rem;
  color: var(--aqua);
  font-weight: 600;
  margin-bottom: 5px;
}

.photo-desc {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   CLEAN PHOTOGRAPHY GRID - APPLE STYLE
   ========================================== */

.photography-section {
  padding: 100px 10%;
  overflow: hidden;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; /* ပုံတွေကြား နေရာလွတ်ကို ပိုပေးထားလို့ ပိုလှသွားမယ် */
}

.photo-item {
  width: 100%;
}

.photo-wrapper {
  position: relative;
  border-radius: 24px; /* ဘောင်တွေကို ပိုဝိုင်းလိုက်တယ် */
  height: 400px; /* ပုံအမြင့်တွေကို တူတူထားလိုက်တယ် */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #111;
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Hover Effect: ပုံလေးက အိအိလေး Zoom ဖြစ်သွားမယ် */
.photo-wrapper:hover img {
  transform: scale(1.1);
}

/* Photo Info (စာသားလေးတွေ) */
.photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* တစ်ပုံလုံးကို ဖုံးလိုက်မယ် */
  padding: 30px;
  background: rgba(0, 0, 0, 0.7); /* မှောင်မှောင်လေး ဖြစ်သွားမယ် */
  backdrop-filter: blur(5px); /* မှန်ကြည်စတိုင်လေး ဝါးသွားမယ် */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center; /* စာကို အလယ်မှာ ထားမယ် */
  align-items: center; /* စာကို ဗဟိုချက်မှာ ထားမယ် */
  text-align: center;

  /* အဓိက အပိုင်း- အစမှာ မမြင်ရအောင် လုပ်ထားမယ် */
  opacity: 0;
  transform: translateY(20px); /* နည်းနည်းလေး နိမ့်ထားမယ် */
  transition: all 0.5s ease; /* ပေါ်လာတဲ့အခါ ချောမွေ့အောင်လို့ပါ */
  pointer-events: none; /* စာကို မပေါ်ခင် ထိလို့မရအောင် ပိတ်ထားမယ် */
}
.photo-wrapper:hover .photo-info {
  opacity: 1; /* လင်းလာမယ် */
  transform: translateY(0); /* မူလနေရာကို ပြန်တက်လာမယ် */
  pointer-events: auto; /* ပြန်ထိလို့ရသွားမယ် */
}
.photo-info .date {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--aqua);
  font-weight: 600;
  transform: scale(0.8);
  transition: 0.5s 0.1s; /* စာသားထက် နည်းနည်းပိုစောပြီး ပေါ်မယ် */
}

.photo-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Hover ဖြစ်တဲ့အခါ စာလုံးလေးတွေပါ ပုံမှန်အရွယ်အစား ပြန်ဖြစ်မယ် */
.photo-wrapper:hover .photo-info .date {
  transform: scale(1);
}
/* ==========================================
   ANIMATION: SLOW SMOOTH SLIDE
   ========================================== */

.slide-in-left {
  opacity: 0;
  transform: translateX(-80px);
  animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(80px);
  animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ဒုတိယပုံနဲ့ တတိယပုံကို နည်းနည်းစီ နောက်ကျပြီးမှ ပွင့်စေမယ် */
.gallery-container .photo-item:nth-child(2) {
  animation-delay: 0.3s;
}
.gallery-container .photo-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .photo-wrapper {
    height: 300px;
  }
}
/* ==========================================
   CONTACT SECTION - HIGH CONTRAST & MOBILE ARROW FIX
   ========================================== */
/* --- Contact Header ကို ဘယ်ဘက်ကပ်ခြင်း --- */
.contact-section .section-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 45px; /* ခေါင်းစဉ်နဲ့ အောက်က Card တွေကြား အကွာအဝေး */
  text-align: left;
}

/* Subtitle ကို Gradient ရောင်ပြေးလေး ထည့်မယ် */
.contact-section .section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  background: linear-gradient(to right, #00f3ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  opacity: 0.9;
}

/* မျဉ်းတိုလေးကို About Me နဲ့ ပုံစံတူထားမယ် */
.contact-section .header-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, var(--aqua), transparent);
  border-radius: 2px;
}

.contact-section {
  padding: 100px 10%;
  background: transparent;
}

.contact-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}

/* --- ၁။ Card Background ကို နည်းနည်းပိုမှောင်ပေးခြင်း (Contrast တက်ရန်) --- */
.compact-card {
  display: flex;
  align-items: center;
  background: rgba(0, 10, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* ဘေးဘက် Padding ကို 25px ကနေ 20px လောက်ပဲထားပြီး နေရာချဲ့မယ် */
  padding: 18px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s ease;

  /* ကဒ်ရဲ့ အကျယ်ကို စာသားနဲ့အညီ ဆန့်ထွက်နိုင်အောင် လုပ်မယ် */
  width: 100%;
  max-width: 380px; /* Gmail ရှည်ရှည်တွေအတွက် နေရာပိုပေးထားတယ် */
  min-height: 90px;
}

/* Hover ဖြစ်တဲ့အခါ အရောင်ပြောင်းမှု */
.compact-card:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: #00f3ff;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 243, 255, 0.15);
}

/* Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px; /* ကျုံ့မသွားအောင် ဒါလေးက အရေးကြီးတယ် */
  background: rgba(0, 243, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.3s;
}
.icon-box i {
  font-size: 1.5rem; /* Icon အရွယ်အစား */
  color: #00f3ff;
  display: block;
  text-align: center;
  /* Icon က Font ဖြစ်လို့ တစ်ခါတလေ ဘေးစောင်းနေရင် ဒါလေး သုံးနိုင်တယ် */
  line-height: 1;
}

/* Hover ဖြစ်ရင် Icon လေးပဲ တောက်လာမယ် */
.compact-card:hover .icon-box {
  background: #00f3ff;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.compact-card:hover .icon-box i {
  color: #000;
}

/* စာသားအပိုင်း */
.card-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Gmail အရမ်းရှည်ရင် ဘောင်ကို ဖောက်မထွက်အောင် လုပ်မယ် */
  overflow: hidden;
  width: 100%;
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #00f3ff;
  margin-bottom: 2px; /* အောက်က Gmail နဲ့ အရမ်းမကပ်အောင် */
  display: block;
}
.contact-value {
  font-size: 0.95rem; /* စာလုံးကို နည်းနည်းလေး သေးလိုက်ရင် ဘောင်ထဲမှာ ကွက်တိဖြစ်သွားမယ် */
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  white-space: nowrap; /* စာကို တစ်ကြောင်းတည်း ထားမယ် */
  overflow: hidden;
  text-overflow: ellipsis; /* စာသား အရမ်းရှည်လွန်းရင် အစက်လေးတွေနဲ့ အဆုံးသတ်ပေးမယ် */
  padding-right: 15px; /* ညာဘက်ဘောင်နဲ့ မကပ်အောင် နေရာလွတ်ပေးထားတယ် */
}

/* ညာဘက်က မြှားလေး (Laptop/Desktop မှာပဲ ပြမယ်) */
.desktop-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  transition: 0.4s;
}

.compact-card:hover .desktop-arrow {
  color: #00f3ff;
  transform: translateX(8px);
}

/* --- ၂။ Mobile Optimized Logic (ဖုန်းအတွက်) --- */
@media (max-width: 480px) {
  .contact-value {
    font-size: 0.85rem; /* ဖုန်းမှာ ပိုသေးပေးမယ် */
  }
}

.contact-value {
  font-size: 0.9rem; /* ဖုန်းမှာ Gmail စာလုံးတွေကို နည်းနည်းသေးပေးထားတယ် */
}
/* ==========================================
   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 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* စာသားတွေကြား အကွာအဝေး */
  margin-top: 20px;
  flex-wrap: wrap; /* ဖုန်းမှာ နေရာမဆံ့ရင် အလိုအလျောက် ဆင်းပေးမယ် */
}
.footer-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 243, 255, 0.4);
  display: inline-block;
}
.footer-slogan {
  font-size: 0.8rem;
  font-weight: 500;
  color: #00f3ff;
  text-transform: uppercase;
  letter-spacing: 2px; /* တစ်တန်းတည်းဖြစ်ဖို့ spacing ကို နည်းနည်းလျှော့မယ် */
  opacity: 0.8;
}
/* Mobile Friendly */
@media (max-width: 480px) {
  .footer-info {
    flex-direction: column;
    gap: 8px;
  }
  .footer-divider {
    width: 30px;
    height: 1px; /* ဖုန်းမှာတော့ အလျားလိုက်မျဉ်း ပြန်ဖြစ်သွားမယ် */
    margin: 5px 0;
  }
}
