@import "tailwindcss";

:root {
  --navy: #061d3a;
  --navy-2: #0b315e;
  --gold: #d6a526;
  --gold-2: #f0cb66;
  --ink: #112238;
  --muted: #64748b;
  --line: #dfe6ee;
  --soft: #f4f7fb;
  --white: #fff;
  --shadow: 0 24px 60px rgba(4, 29, 58, .12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Tahoma, "Segoe UI", Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.site { min-height: 100vh; line-height: 1.8; overflow-x: hidden; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; inset-inline-start: 12px; top: -60px; z-index: 1000; background: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(3, 20, 42, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { width: 72px; flex: none; overflow: hidden; border-radius: 10px; }
.brand img { width: 100%; height: 76px; border-radius: 9px; object-fit: contain; object-position: center; }
.nav { display: flex; align-items: center; gap: 28px; margin-inline-start: auto; }
.nav a { color: #fff; font-size: 14px; position: relative; }
.nav a::after { content: ""; position: absolute; bottom: -8px; inset-inline-start: 0; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .menu-toggle { border: 1px solid rgba(255,255,255,.28); color: #fff; background: transparent; cursor: pointer; border-radius: 10px; }
.lang-toggle { padding: 7px 10px; }
.nav-email { direction: ltr; color: var(--gold-2); font-size: 12px; border-inline-start: 1px solid rgba(255,255,255,.18); padding-inline-start: 12px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; }

.hero { min-height: 100svh; position: relative; color: #fff; display: flex; flex-direction: column; justify-content: center; padding-top: 88px; }
.hero-media { position: absolute; inset: 0; background: url("/assets/project-08.webp") center 35% / cover no-repeat; transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,19,42,.96), rgba(3,25,54,.79) 52%, rgba(3,25,54,.35)); }
.ltr .hero-shade { background: linear-gradient(270deg, rgba(3,19,42,.96), rgba(3,25,54,.79) 52%, rgba(3,25,54,.35)); }
.hero-grid {
  position: relative;
  display: grid;
  width: min(1340px, calc(100% - 32px));
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 24px;
  padding-block: 80px 145px;
}
.hero-content { max-width: 720px; animation: rise .7s ease both; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .04em; margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--gold-2); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 82px); line-height: 1.18; margin-bottom: 22px; letter-spacing: -.03em; }
h1 span { color: var(--gold-2); }
.hero-content p { max-width: 650px; color: #e5edf7; font-size: 18px; line-height: 2; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 12px; padding: 13px 22px; font-weight: 800; cursor: pointer; transition: transform .25s, box-shadow .25s; }
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); box-shadow: 0 12px 30px rgba(214,165,38,.28); }
.btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.btn-navy { background: var(--navy); color: #fff; }
.full { width: 100%; }
.hero-profile-art {
  position: relative;
  width: min(800px, 100%);
  aspect-ratio: 3 / 2;
  margin: 0;
  container-type: inline-size;
  color: var(--navy);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.3));
  animation: rise .85s .1s ease both;
}
.hero-profile-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-message {
  position: absolute;
  inset: 5.1% 6.3% 2% 49.3%;
  display: grid;
  grid-template-rows: 18% 82%;
  overflow: hidden;
  text-align: center;
}
.rtl .profile-message { inset: 5.1% 6.3% 2% 49.3%; }
.profile-message-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.profile-message-head strong {
  font-size: clamp(12px, 3.8cqw, 26px);
  line-height: 1.35;
}
.profile-message-head span {
  margin-top: 2%;
  color: #ebc46b;
  font-size: clamp(7px, 1.9cqw, 13px);
  font-weight: 800;
}
.profile-message-body {
  display: flex;
  min-height: 0;
  padding: 10% 8% 6%;
  flex-direction: column;
  align-items: center;
  color: #132b49;
}
.profile-greeting {
  margin-bottom: 7%;
  font-size: clamp(9px, 2.8cqw, 19px);
  line-height: 1.55;
}
.profile-message-body > p {
  margin: 0;
  color: #263c57;
  font-size: clamp(7px, 1.85cqw, 12.5px);
  line-height: 1.95;
}
.profile-message-body .profile-closing {
  margin-top: 8%;
  color: #b68019;
  font-size: clamp(8px, 2.15cqw, 14.5px);
  font-weight: 900;
}
.profile-signature {
  display: grid;
  width: 100%;
  gap: 1px;
  margin-top: auto;
  padding-top: 4%;
  border-top: 1px solid rgba(15,43,75,.13);
  text-align: start;
}
.profile-signature strong { color: #b68019; font-size: clamp(7px, 1.8cqw, 12px); }
.profile-signature span { color: #6f7f94; font-size: clamp(6px, 1.45cqw, 10px); }
.hero-stats { position: absolute; inset: auto 0 0; background: rgba(3,19,42,.82); border-top: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { padding: 22px 28px; border-inline-start: 1px solid rgba(255,255,255,.12); display: flex; gap: 12px; align-items: center; }
.stats-grid > div:first-child { border-inline-start: 0; }
.stats-grid strong { font-size: 24px; color: var(--gold-2); direction: ltr; }
.stats-grid span { color: #dce7f5; font-size: 13px; }

.section { padding: 110px 0; }
.split, .quality-grid, .credentials-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-visual > img { width: 100%; height: 630px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-card { position: absolute; bottom: 25px; inset-inline-end: -25px; background: var(--navy); color: #fff; padding: 20px 25px; border-radius: 16px; box-shadow: var(--shadow); }
.experience-card span { display: block; font-size: 22px; font-weight: 900; direction: ltr; }
.experience-card small { color: #cbd9ea; }
.section-copy h2, .section-heading h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.3; margin-bottom: 22px; letter-spacing: -.02em; }
.section-copy p, .section-heading p { color: var(--muted); font-size: 16px; line-height: 2; }
.check-list, .quality-list { display: grid; gap: 12px; margin-top: 25px; }
.check-list span, .quality-list span { position: relative; padding-inline-start: 30px; font-weight: 700; }
.check-list span::before, .quality-list span::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 900; }

.services { background: var(--soft); }
.section-heading { max-width: 780px; margin: 0 auto 50px; text-align: center; }
.section-heading.align-start { margin: 0; text-align: start; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card { min-height: 255px; padding: 28px 20px; border: 1px solid #e7edf4; border-radius: 18px; background: #fff; transition: .3s; }
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; background: #eef3f9; color: var(--navy); font-size: 24px; }
.service-card h3 { margin-bottom: 10px; font-size: 18px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.85; }

.projects-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.projects-head .section-heading { max-width: 650px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.filter { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-size: 13px; }
.filter.active, .filter:hover { color: #fff; border-color: var(--navy); background: var(--navy); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: .3s; animation: rise .45s ease both; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.project-image { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: none; cursor: zoom-in; }
.project-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-image img { transform: scale(1.05); }
.zoom-icon { position: absolute; inset: auto 14px 14px auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(3,25,54,.88); color: #fff; }
.rtl .zoom-icon { inset-inline: auto 14px; }
.project-meta { padding: 18px 20px; }
.project-tag { color: var(--gold); font-size: 11px; font-weight: 900; }
.project-meta h3 { margin: 4px 0 0; font-size: 17px; }

.quality { background: #fff; }
.quality-image img { width: 100%; min-height: 430px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.quality-list { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.quality-list span { font-size: 14px; }
.credentials { background: var(--soft); }
.credentials-grid { max-width: 780px; grid-template-columns: 1fr; }
.credentials-data { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 25px 0; }
.credentials-data div { padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.credentials-data dt { color: var(--muted); font-size: 11px; }
.credentials-data dd { margin: 4px 0 0; font-weight: 900; }
.credentials-data .active-status { color: #14804a; }
.vision-alignment {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 34px;
  border: 1px solid rgba(232, 187, 63, .38);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 15%, rgba(218, 169, 42, .26), transparent 34%),
    linear-gradient(135deg, #031429 0%, #0b315e 58%, #071f3d 100%);
  box-shadow: 0 25px 60px rgba(3, 20, 41, .22);
  color: #fff;
}
.vision-alignment::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 19px;
  pointer-events: none;
}
.vision-alignment::after {
  content: "2030";
  position: absolute;
  inset-inline-end: -24px;
  bottom: -44px;
  z-index: -1;
  color: #fff;
  font-size: 148px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -10px;
  opacity: .045;
  direction: ltr;
  pointer-events: none;
}
.vision-logo-panel {
  display: grid;
  min-height: 158px;
  padding: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 21px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}
.vision-logo-panel img { width: 100%; max-height: 130px; object-fit: contain; }
.vision-copy { position: relative; z-index: 1; }
.vision-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #efc95c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.vision-alignment strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.45;
}
.vision-alignment p { margin: 0; color: #d2dfef; font-size: 14px; line-height: 1.9; }
.vision-pillars { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.vision-pillars span {
  padding: 8px 12px;
  border: 1px solid rgba(239, 201, 92, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #f7ecd0;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.contact { background: linear-gradient(135deg, var(--navy), #0a3c73); color: #fff; }
.contact-copy h2 { font-size: clamp(34px, 4vw, 58px); line-height: 1.3; }
.contact-copy > p { color: #d4e0ee; }
.contact-details { display: grid; gap: 8px; margin-top: 30px; }
.contact-details a, .contact-details > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-details small { color: #9fb4cc; }
.contact-details strong { text-align: end; overflow-wrap: anywhere; }
.email-row strong { color: var(--gold-2); font-size: 15px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 30px; border-radius: 22px; background: #fff; color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.contact-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 700; }
.contact-form .wide { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; outline: none; background: #fafcff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,165,38,.12); }
textarea { resize: vertical; }

.footer { padding: 65px 0 20px; background: #031429; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; align-items: center; }
.footer-brand img { width: 145px; margin-bottom: 14px; border-radius: 12px; }
.footer-brand p { color: #98aec7; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-links a { color: #cad7e6; font-size: 14px; }
.footer-contact { display: grid; gap: 6px; text-align: end; }
.footer-contact > a { color: var(--gold-2); font-size: 19px; }
.footer-contact .footer-email { font-size: 13px; overflow-wrap: anywhere; }
.footer-contact span { color: #8ea6c0; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7890aa; font-size: 12px; }
.whatsapp-float { position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 9px; padding: 12px 17px; border-radius: 999px; background: #1ca75b; color: #fff; box-shadow: 0 15px 35px rgba(28,167,91,.35); }
.whatsapp-float span { font-size: 22px; }
.whatsapp-float b { font-size: 12px; }
.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 5vw; background: rgba(0,0,0,.88); }
.lightbox img { max-width: min(1100px, 94vw); max-height: 85vh; border-radius: 14px; }
.lightbox button { position: absolute; top: 20px; inset-inline-end: 22px; padding: 9px 15px; border: 0; border-radius: 999px; background: #fff; cursor: pointer; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  .nav-email { display: none; }
  .hero-grid { width: var(--container); grid-template-columns: .78fr 1.22fr; }
  .hero-profile-art { width: min(740px, 100%); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { position: fixed; top: 82px; inset-inline: 16px; display: none; flex-direction: column; align-items: stretch; padding: 24px; border-radius: 16px; background: var(--navy); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-profile-art { width: min(820px, 100%); margin-inline: auto; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand { width: 56px; }
  .brand img { height: 58px; }
  .nav { top: 72px; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid { gap: 32px; padding-block: 70px 190px; }
  .hero-shade, .ltr .hero-shade { background: linear-gradient(180deg, rgba(3,19,42,.74), rgba(3,19,42,.97)); }
  .hero-content p { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > div { padding: 14px 12px; }
  .section { padding: 78px 0; }
  .split, .quality-grid, .credentials-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-visual > img { height: 460px; }
  .experience-card { inset-inline-end: 15px; }
  .projects-head { display: block; }
  .filters { justify-content: flex-start; margin-top: 22px; }
  .projects-grid { grid-template-columns: 1fr; }
  .quality-list { grid-template-columns: 1fr; }
  .vision-alignment { grid-template-columns: 1fr; gap: 24px; padding: 24px; text-align: center; }
  .vision-alignment::after { bottom: -22px; font-size: 96px; }
  .vision-logo-panel { width: min(280px, 100%); min-height: 145px; margin-inline: auto; }
  .vision-logo-panel img { width: min(230px, 100%); margin-inline: auto; }
  .vision-pillars { justify-content: center; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .contact-form .wide { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-contact { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 7px; }
  .whatsapp-float { width: 52px; height: 52px; justify-content: center; padding: 0; }
  .whatsapp-float b { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .footer-links { max-width: 300px; margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .hero-content, .hero-profile-art, .project-card { animation: none; }
  .btn, .project-card, .service-card { transition: none; }
}


/* Employee CRM access added for serajaltanmiya.com */
.crm-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  transition: transform .2s ease, background .2s ease;
}
.crm-link:hover { transform: translateY(-1px); background: var(--gold-2); }
.footer-crm-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  color: var(--gold-2) !important;
}
@media (max-width: 560px) {
  .crm-link { padding: 7px 9px; font-size: 11px; }
  .lang-toggle { padding: 7px 8px; }
}
