@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #01aef0;
  --primary-dark: #0295cc;
  --primary-light: #e8f7fe;
  --accent: #00bdbb;
  --dark: #1a1a2e;
  --dark-secondary: #16213e;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --red: #ef4444;
  --green: #22c55e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
  --font: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
p, h1, h2, h3, h4, h5, h6, ul, li { margin: 0; padding: 0; list-style: none; }

.page {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.magic { display: none; }

/* ===== TOP BAR ===== */
.topBar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1;
}
.topBar .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.topBar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topBar span:last-child { display: none; }
.topBar a { color: var(--primary); }
.topBar a:hover { color: var(--white); }
.topBar i { font-size: 12px; color: var(--primary); }

@media (min-width: 768px) {
  .topBar span:last-child { display: inline-flex; }
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

header .page {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
}

.logo a { display: inline-block; }
.logo img { height: 56px; width: auto; }

.topTxt { display: none; }

.mnuBx { display: flex; align-items: center; margin-left: auto; }

#menu_button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
#menu_button:hover { background: var(--gray-200); }
#menu_button i { font-size: 16px; }

.mnuBx ul.menubx {
  display: none;
  position: absolute;
  top: 100%;
  right: 4%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px 0;
  min-width: 220px;
  z-index: 999;
}

.mnuBx ul.menubx.open { display: block; }

.mnuBx ul li { display: block; }
.mnuBx ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.mnuBx ul li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.mnuBx ul li.actv a { color: var(--primary); font-weight: 600; }

.mnuBx ul li.soca,
.mnuBx ul li.socmnu { display: none; }

/* Desktop header */

@media (min-width: 1024px) {
  header .page { padding: 16px 0; }
  .logo img { height: 64px; }

  #menu_button { display: none; }

  .mnuBx ul.menubx {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: auto;
    align-items: center;
    gap: 4px;
  }

  .mnuBx ul li { display: inline-block; }
  .mnuBx ul li a {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 15px;
  }
  .mnuBx ul li a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }
  .mnuBx ul li.actv a {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
  }

  .mnuBx ul li.soca { display: inline-block; padding-left: 12px; margin-left: 8px; border-left: 1px solid var(--gray-200); }
  .mnuBx ul li.socmnu { display: inline-block; }
  .mnuBx ul li.socmnu a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0;
    font-size: 14px;
  }
  .mnuBx ul li.socmnu a:hover { background: var(--primary); color: var(--white); }
}

/* ===== SLIDER ===== */
.sldr {
  text-align: center;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}
.sldr-desktop { display: none; }
.sldr-mobile { display: block; }

.sldr ul.rslides.hmslid li { line-height: 0; }

@media (min-width: 768px) {
  .sldr-desktop { display: block; }
  .sldr-mobile { display: none; }
}

/* ===== BLUE CTA BANNER ===== */
.bluBX {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 40px 0;
  color: var(--white);
  text-align: center;
}
.bluBX h1 {
  font-weight: 600;
  font-size: clamp(18px, 3vw, 30px);
  padding: 0 0 6px 0;
}
.bluBX h2 {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
}
.bluBX h2 span {
  background: var(--white);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ===== ICON ROW (Services/Products) ===== */
.whtBg { background: var(--white); }

.icRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 64px 0;
}

.clmA, .clmB {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.icBxB {
  background: var(--gray-50);
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.icBxB:hover { border-color: var(--primary); background: var(--primary-light); }
.icBxB table { display: contents; }
.icBxB td { display: contents; }
.icBxB tr { display: contents; }
.icBxB i { color: var(--primary); font-size: 40px; }

.txtBx {
  padding: 0;
  height: auto;
}
.txtBx table { display: contents; }
.txtBx td { display: contents; }
.txtBx tr { display: contents; }
.txtBx h1 { color: var(--primary); font-size: 24px; font-weight: 700; }
.txtBx h2 { color: var(--gray-700); font-weight: 400; font-size: 18px; }

@media (min-width: 768px) {
  .icRow { flex-direction: row; justify-content: center; gap: 64px; padding: 80px 0; }
  .icBxB { width: 120px; height: 120px; }
  .icBxB i { font-size: 48px; }
  .txtBx h1 { font-size: 28px; }
  .txtBx h2 { font-size: 20px; }
}

/* ===== DIRECTOR'S DESK / TEXT SECTIONS ===== */
.txtBxA {
  text-align: center;
  padding: 0 0 40px 0;
}
.txtBxA h1,
.txtBxA h2 {
  color: var(--dark);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}
.txtBxA h1 span,
.txtBxA h2 span { color: var(--primary); }
.txtBxA > h2 + p,
.txtBxA > p {
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 400;
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.smltxtA {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
.smltxtA p { margin-bottom: 16px; }

/* ===== PRODUCTS SECTION (Homepage) ===== */
.prodBx {
  padding: 64px 0;
  background: var(--gray-50);
}

.hdrB { text-align: center; }
.hdrB h1 {
  color: var(--dark);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.lnkBx {
  text-align: center;
  padding: 16px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.lnkBx a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-light);
  background: var(--white);
  transition: var(--transition);
}
.lnkBx a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

ul.prdLstA {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  padding: 24px 0 0 0;
  list-style: none;
}

.gapA { padding: 0; }

.imgBxA {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgBxA:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.imgBxA a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 12px; }
.imgBxA a:after { display: none; }
.imgBxA img { max-height: 100%; object-fit: contain; }
.imgBxA span { display: none; }

@media (min-width: 768px) {
  ul.prdLstA { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
}

/* ===== DOWNLOAD SECTION ===== */
.dwnBr {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.dwnBr .page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.txtBxC {
  color: var(--white);
  padding: 0;
  float: none;
  background: none;
}
.txtBxC h1 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; }
.txtBxC h2 { font-size: 15px; font-weight: 400; opacity: 0.9; }

.btnBxA { float: none; }

a.dwnLnk {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
a.dwnLnk span { display: none; }
a.dwnLnk .dwnIc {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}
a.dwnLnk:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .dwnBr .page { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 64px 0;
  color: rgba(255,255,255,0.85);
}
footer .page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.ftrClm { width: 100%; float: none; }

.gapFa, .gapFb, .gapFc { padding: 0; }

.ftrClm h1 {
  font-size: 22px;
  font-weight: 700;
  padding: 0 0 16px 0;
  color: var(--white);
}

.ftxtA {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
}

.isoLgo { padding: 24px 0 0 0; }
.isoLgo img { max-height: 48px; }

.rdmor {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  border-radius: var(--radius);
  line-height: 42px;
  display: inline-block;
  margin: 16px 0 0 0;
  padding: 0 28px;
  transition: var(--transition);
}
.rdmor:hover { background: var(--primary-dark); transform: translateY(-1px); }

ul.fmnu li { font-size: 14px; padding: 6px 0; }
ul.fmnu li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: inline-block;
}
ul.fmnu li a:hover { color: var(--white); transform: translateX(4px); }

.fInfo {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
}
.fInfo h4 { font-weight: 500; font-size: 16px; color: var(--white); margin-top: 8px; }
.fInfo a { color: rgba(255,255,255,0.8); }
.fInfo a:hover { color: var(--white); }

.fsoc { padding: 20px 0 0 0; }
.fsoc ul { display: flex; gap: 10px; }
.fsoc ul li { display: inline-block; }
.fsoc ul li a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: var(--radius-full);
  font-size: 16px;
  transition: var(--transition);
}
.fsoc ul li.fb a { background: #4267b2; }
.fsoc ul li.tw a { background: #1da1f2; }
.fsoc ul li a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fsoc ul li i { line-height: 1; }

@media (min-width: 768px) {
  footer .page { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  footer .page { grid-template-columns: 1.2fr 0.8fr 1fr; }
}

/* ===== COPYRIGHT FOOTER ===== */
.cpFtr {
  background: var(--dark-secondary);
  padding: 20px 0;
}
.cpFtr .page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}
.fbxA { float: none; }
.fbxB { float: none; }
.fbxB a { color: var(--primary); }
.fbxB a:hover { color: var(--primary-dark); }

@media (min-width: 768px) {
  .cpFtr .page { flex-direction: row; justify-content: space-between; }
}

/* ===== PAGE HEADER (inner pages) ===== */
.pgHdr {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 48px 0;
}
.pgHdr .page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pgHdr h4,
.pgHdr h1 {
  display: inline-block;
  padding: 8px 24px;
  background: var(--white);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--primary);
  border-radius: var(--radius);
}

.pgpth {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}
.pgpth a { color: var(--white); font-weight: 500; }
.pgpth a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .pgHdr .page { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===== ABOUT PAGE ===== */
.abtPg {
  padding: 64px 0;
}
.abtPg .txtBxA { padding: 0 0 32px 0; }
.abtPg .txtBxA h2 { padding: 0; margin: 0 auto; }
.abtPg .txtBxA p { max-width: 800px; margin: 12px auto 0; }

/* ===== CONTACT PAGE ===== */
.cntctPg {
  padding: 64px 0;
}
.cntctPg .page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.clmBg { width: 100%; float: none; }
.clmSml { width: 100%; float: none; }
.clmSmGp { padding: 0; }

.hdrF { padding: 0 0 24px 0; }
.hdrF h1,
.hdrF h2 { font-size: 22px; font-weight: 700; color: var(--dark); }
.hdrF p { font-size: 14px; font-weight: 400; color: var(--gray-500); margin-top: 4px; }

.adrsBx { line-height: 1.7; }
.adrsBx h1,
.adrsBx h3 { font-weight: 700; font-size: 20px; color: var(--dark); padding: 0 0 16px 0; }
.adrsBx h2,
.adrsBx h4 {
  color: var(--dark);
  font-size: 16px;
  padding: 0 0 4px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.adrsBx h2 img,
.adrsBx h4 img { max-width: 20px; margin: 0; }
.adrsBx p { color: var(--gray-600); font-size: 14px; line-height: 1.6; }
.adrsBx p a { color: var(--primary); }
.adrsBx p a:hover { text-decoration: underline; }

.fRow { padding: 0 0 16px 0; }

.fClmA, .fClmB {
  width: 100%;
  float: none;
  padding: 0;
  margin-bottom: 16px;
}
.fClmC { width: 100%; }

.fRow label {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding: 0 0 6px 0;
}
.fRow label span { color: var(--red); }

.inFld {
  width: 100%;
  display: block;
  font-size: 15px;
  padding: 12px 16px;
  line-height: 1.5;
  outline: none;
  font-family: var(--font);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
}
.inFld:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1,174,240,0.15);
}
textarea.inFld { resize: vertical; min-height: 140px; }

.sndA { padding-top: 8px; }
.sndA .bluBtn {
  outline: none;
  font-family: var(--font);
  font-weight: 600;
  border: 0;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 12px 36px;
  transition: var(--transition);
}
.sndA .bluBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.msg-success {
  background: #dcfce7;
  color: #166534;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin: 0 0 20px 0;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #bbf7d0;
}
.msg-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin: 0 0 20px 0;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #fecaca;
}

@media (min-width: 768px) {
  .fClmA { width: 48%; float: left; padding: 0 8px 0 0; margin-bottom: 0; }
  .fClmB { width: 48%; float: right; padding: 0 0 0 8px; margin-bottom: 0; }
}

@media (min-width: 1024px) {
  .cntctPg .page { grid-template-columns: 1.5fr 1fr; }
}

/* ===== PRODUCTS PAGE ===== */
.prdPg { padding: 64px 0; }
.prdPg .page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.catgBr {
  width: 100%;
  float: none;
}

.catgBr h1 {
  background: var(--primary);
  padding: 12px 16px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catgBr h1 i { display: block; font-size: 18px; transition: var(--transition); }

.catgBr ul {
  display: none;
  background: var(--gray-50);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 4px 0;
  border: 1px solid var(--gray-200);
  border-top: none;
}
.catgBr ul li { border-bottom: 1px solid var(--gray-100); }
.catgBr ul li:last-child { border: 0; }
.catgBr ul li a {
  color: var(--gray-700);
  font-size: 14px;
  padding: 10px 16px;
  display: block;
  transition: var(--transition);
}
.catgBr ul li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.prdBr { float: none; width: 100% !important; }
.gapBx { padding: 0; }

.prdBr h1 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 700;
  padding: 0 0 16px 0;
}

ul.prpgLst {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
}

.bxA { padding: 0; }
.bxB {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.bxB:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.imgBxB {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  padding: 16px;
}
.imgBxB a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.imgBxB a:after { display: none; }
.imgBxB span { display: none; }
.imgBxB img { max-height: 100%; object-fit: contain; }

.pNme {
  padding: 12px 16px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

@media (min-width: 1024px) {
  .prdPg .page { grid-template-columns: 240px 1fr; }

  .catgBr h1 { cursor: default; border-radius: var(--radius) var(--radius) 0 0; }
  .catgBr h1 i { display: none; }
  .catgBr ul { display: block !important; border-radius: 0 0 var(--radius) var(--radius); }

  ul.prpgLst { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* ===== UTILITY ===== */
.topTxt a { color: var(--primary); }
.topTxt a:hover { text-decoration: underline; }
.adrsBx a { color: var(--primary); }
.adrsBx a:hover { text-decoration: underline; }
.fInfo a { color: rgba(255,255,255,0.9); }
.fInfo a:hover { color: var(--white); text-decoration: underline; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

section { animation: fadeInUp 0.5s ease both; }
