/* =========================================
   ABOUT PAGE HEADER
   =========================================
   REMARK:
   Lightweight glass header that sits cleanly
   above the hero without affecting layout.
*/

.about-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 8, 20, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #00eaff33;
}

.about-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8%;
}

/* Logo */
.about-header-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 234, 255, 0.45);
}

.about-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation */
.about-nav {
  display: flex;
  gap: 26px;
}

.about-nav a {
  color: #eaf6ff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
}

.about-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #00eaff;
  transition: 0.3s ease;
}

.about-nav a:hover::after,
.about-nav a[aria-current="page"]::after {
  width: 100%;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #061a2f, #020814);
  color: #eaf6ff;
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  height: 70vh;
  background: url("lknmlmlkl.jpg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 20, 0.85);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #00eaff;
}

.tagline {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-section {
  padding: 80px 8%;
}

.about-section.dark {
  background: linear-gradient(180deg, #020814, #061a2f);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse * {
  direction: ltr;
}

.text-block h2 {
  color: #00eaff;
  margin-bottom: 15px;
}

.text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.image-tile {
  display: block;
  overflow: hidden;
  border: 2px solid #00eaff55;
  box-shadow: 0 0 25px #00eaff22;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex { clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%); }
.circle { border-radius: 50%; }
.rhombus { transform: rotate(45deg); }
.rhombus img { transform: rotate(-45deg);
width: 70%
height: 70%
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 20px;
  border: 1px solid #00eaff44;
  background: rgba(0, 234, 255, 0.05);
  backdrop-filter: blur(10px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-tile {
  padding: 30px;
  border: 2px solid #00eaff88;
  text-decoration: none;
  color: inherit;
}

.project-tile:hover {
  box-shadow: 0 0 30px #00eaff;
}

.about-footer {
  padding: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}



/* =========================================
   IMAGE_LOGO – PASSPORT-STYLE PLACEMENT
   =========================================
   REMARK:
   This styles the first logo as a top-left
   passport portrait without breaking grid
   alignment or affecting other images.
*/

.image_logo {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;

  width: 160px;
  height: 200px;
  aspect-ratio: 3 / 4;

  border-radius: 14px;
  overflow: hidden;

  border: 2px solid #00eaff55;
  box-shadow:
    0 0 18px rgba(0, 234, 255, 0.35),
    inset 0 0 20px rgba(0, 234, 255, 0.15);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* REMARK:
   Ensures clean image crop like a real ID portrait */
.image_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* REMARK:
   Subtle prestige hover – lift without disruption */
.image_logo:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 28px rgba(0, 234, 255, 0.6),
    inset 0 0 25px rgba(0, 234, 255, 0.2);
}




/* ==============================
   KDH FOOTER
============================== */

.kdh-footer {
  width: 100%;
  background: linear-gradient(180deg, rgba(5,12,20,0.95), rgba(2,6,12,1));
  border-top: 1px solid rgba(120,180,255,0.15);
  padding: 24px 12px;
  position: relative;
  z-index: 5;
}

.kdh-footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.kdh-footer-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #9cc9ff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.kdh-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.kdh-social-links a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.kdh-social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(120,180,255,0.35));
}

.kdh-social-links a:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.12);
}

.kdh-footer-copy {
  font-size: 12px;
  color: rgba(200,220,255,0.55);
  margin-top: 6px;
}



.kdh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120,180,255,0.08), transparent 70%);
  pointer-events: none;
}


