* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f8ff;
  color: #1e293b;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, 1240px);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1s ease forwards;
}

.fade-delay-1 { animation-delay: 0.15s; }
.fade-delay-2 { animation-delay: 0.3s; }
.fade-delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo { flex-shrink: 0; }
.logo img { width: 185px; height: auto; }

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  color: #1f2937;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.nav-links > li > a i {
  font-size: 11px;
  margin-left: 5px;
}

.nav-links > li > a.active,
.nav-links > li > a:hover {
  color: #0d5db8;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 11px 18px;
  color: #334155;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #f1f7ff;
  color: #0d5db8;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.search-btn,
.menu-toggle {
  border: none;
  background: transparent;
  font-size: 18px;
  color: #0f4c81;
  cursor: pointer;
}

.menu-toggle { display: none; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #0d5db8;
  color: #fff;
  box-shadow: 0 8px 22px rgba(13, 93, 184, 0.28);
}

.btn-primary:hover {
  background: #08458a;
  transform: translateY(-2px);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: transparent;
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #0d5db8;
}

.btn-light-outline {
  border: 2px solid #7db4f3;
  color: #0d5db8;
  padding: 13px 24px;
}

.btn-light-outline:hover {
  background: #0d5db8;
  color: #fff;
}

.btn-white {
  background: #ffffff;
  color: #0d5db8;
  font-weight: 700;
}

.btn-white:hover {
  background: #eaf3ff;
}

/* =====================
   BREAKING NEWS TICKER
===================== */
.news-bar {
  display: flex;
  align-items: center;
  height: 52px;
  background: linear-gradient(90deg, #082a63, #0d4d9e);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.news-label {
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8192c, #b50d1e);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-label::before {
  content: "●";
  font-size: 11px;
  animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0.3; } }

.news-box {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.news-track {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  width: max-content;
  animation: tickerMove 18s linear infinite;
}

.news-track span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-track span::before {
  content: "▲";
  color: #7ec3ff;
  font-size: 11px;
}

@keyframes tickerMove {
  0% { transform: translateX(30%); }
  100% { transform: translateX(-50%); }
}

/* =====================
   HERO SECTION
===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(4, 22, 45, 0.72), rgba(4, 22, 45, 0.72)),
    url("pic/images.png") center/cover no-repeat;
  animation: zoomHero 20s ease-in-out infinite alternate;
}

@keyframes zoomHero {
  0% { background-size: 100%; }
  100% { background-size: 112%; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(13,93,184,0.18), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(13,93,184,0.10), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.8px;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 980px;
  text-shadow: 0 5px 25px rgba(0,0,0,0.7);
}

.hero p {
  max-width: 860px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  max-width: 900px;
  width: 100%;
}

.hero-stat-item {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.hero-stat-item:hover {
  background: rgba(255,255,255,0.12);
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(13,93,184,0.35);
  border: 1px solid rgba(13,93,184,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ec3ff;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-stat-info h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.4;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 2;
}

.scroll-dot {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot::before {
  content: "";
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* =====================
   ABOUT SECTION
===================== */
.about {
  padding: 100px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-tag {
  color: #0d5db8;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.about-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 22px;
  letter-spacing: -1px;
  font-weight: 800;
}

.about-left p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 30px;
}

.about-left .btn {
  background: transparent;
  color: #0d5db8;
  border: 2px solid #0d5db8;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 14px;
}

.about-left .btn:hover {
  background: #0d5db8;
  color: white;
}

/* Journey Timeline */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #0d5db8, #073b78);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-box {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 28px;
}

.journey-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #0d5db8, #7db4f3);
}

.journey-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 0;
  position: relative;
}

.journey-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0d5db8;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #0d5db8;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.journey-year {
  font-size: 14px;
  font-weight: 800;
  color: #0d5db8;
  min-width: 40px;
}

.journey-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 93, 184, 0.15);
  border-color: #bfdbfe;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d5db8, #1e88e5);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  color: white;
  font-size: 22px;
}

.stat-card:hover .stat-icon {
  transform: rotate(360deg);
  transition: transform 0.6s ease;
}

.stat-card h3 {
  font-size: 38px;
  color: #0d5db8;
  margin-bottom: 6px;
  font-weight: 800;
}

.stat-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* VIDEO BUBBLE — kept as is */
.video-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.video-bubble-card {
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 20, 60, 0.25);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0) translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.video-bubble-card.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.video-header {
  background: linear-gradient(135deg, #073b78, #0d5db8);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3b91ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
}

.video-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.video-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.video-close-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
}

.video-screen {
  position: relative;
  background: #000f2b;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #003580, #001a4d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.video-thumbnail-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1e88e5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.video-thumb-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 0 16px;
}

.video-footer {
  padding: 14px 16px;
  background: #ffffff;
}

.video-footer p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.video-footer strong { color: #073b78; }

.video-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #0d5db8;
  margin-top: 8px;
}

.video-trigger-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #073b78, #0d5db8);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13,93,184,0.4);
  transition: 0.3s;
}

.video-trigger-btn:hover { transform: scale(1.08); }

.video-tooltip {
  position: absolute;
  right: 70px;
  bottom: 10px;
  background: #073b78;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

/* =====================
   BUSINESS / OUR SERVICES
===================== */
.business {
  background: #0f172a;
  padding: 90px 0;
}

.business .section-tag {
  color: #60a5fa;
}

.business .section-heading.center h2 {
  color: #ffffff;
}

.business .section-heading.center p {
  color: #94a3b8;
  font-size: 16px;
  margin-top: 10px;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading.center h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Dark Service Card */
.service-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d5db8, #60a5fa);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13,93,184,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d5db8, #1e88e5);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(13,93,184,0.3);
}

.service-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 700;
}

.service-card p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

.service-card ul {
  padding-left: 0;
  list-style: none;
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 22px;
}

.service-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-card ul li::before {
  content: "•";
  color: #3b82f6;
  font-size: 18px;
  line-height: 1.5;
  flex-shrink: 0;
}

.service-card a {
  color: #60a5fa;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: gap 0.3s;
}

.service-card:hover a { gap: 12px; }

/* =====================
   PROJECTS
===================== */
.projects-modern {
  background: #f8faff;
  padding: 90px 0;
}

.projects-head {
  text-align: center;
  margin-bottom: 40px;
}

.projects-head .section-tag {
  font-size: 13px;
  letter-spacing: 1.5px;
}

.projects-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin: 12px 0 10px;
  letter-spacing: -0.5px;
}

.projects-head p {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Tabs */
.project-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid #dbeafe;
  background: #ffffff;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0d5db8;
  color: #ffffff;
  border-color: #0d5db8;
}

.projects-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 24px;
  align-items: stretch;
}

.project-modern-card,
.more-project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
  border: 1px solid #e9f0fb;
  transition: 0.3s ease;
}

.project-modern-card:hover,
.more-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.project-modern-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #dbeafe;
}

.project-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.project-modern-card:hover .project-modern-image img {
  transform: scale(1.06);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0d5db8;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.project-modern-content { padding: 24px; }

.project-modern-content h3 {
  font-size: 22px;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 800;
}

.project-location {
  color: #64748b;
  margin-bottom: 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-info {
  margin-bottom: 18px;
}

.project-info li {
  padding: 5px 0;
  color: #475569;
  font-size: 13px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-info li::before {
  content: "→";
  color: #0d5db8;
  font-size: 13px;
}

.project-modern-content > a {
  font-weight: 700;
  color: #0d5db8;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.project-modern-card:hover .project-modern-content > a { gap: 10px; }

/* More Projects Card */
.more-project-card {
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
}

.more-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #0d5db8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(13,93,184,0.25);
}

.more-project-card h3 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 800;
}

.more-project-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
}

.more-btn {
  background: #0d5db8;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.more-btn:hover { background: #08458a; }

/* =====================
   OUR CLIENTS
===================== */
.clients-section {
  padding: 70px 0;
  background: #ffffff;
  overflow: hidden;
}

.clients-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.clients-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.clients-head .section-tag { margin-bottom: 8px; }

.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.clients-row img {
  height: 100px !important;      /* BESARKAN */
  max-width: 240px !important;   /* bagi logo tak sempit */
  padding: 16px 26px;            /* balance box */
  background: #f8faff;
  border: 1px solid #e2eaf6;
  border-radius: 14px;
  object-fit: contain;
  filter: grayscale(20%);        /* kurang blur effect */
  transition: 0.3s;
}

.clients-row img:hover {
  filter: grayscale(0%);
  border-color: #bfdbfe;
  box-shadow: 0 4px 16px rgba(13,93,184,0.12);
}

/* =====================
   WHY CHOOSE US
===================== */
.why-us {
  background: #f8faff;
  padding: 80px 0 60px;
}

.why-head {
  margin-bottom: 50px;
}

.why-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-top: 10px;
  letter-spacing: -0.5px;
}

.why-head p {
  color: #64748b;
  font-size: 16px;
  margin-top: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.why-item {
  background: #ffffff;
  border: 1px solid #e9f0fb;
  border-radius: 18px;
  padding: 28px 22px;
  transition: 0.35s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,93,184,0.12);
  border-color: #bfdbfe;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0d5db8;
  margin-bottom: 18px;
  transition: 0.35s;
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, #0d5db8, #1e88e5);
  color: #ffffff;
  border-color: transparent;
}

.why-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 700;
}

.why-item p {
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}

/* Testimonial */
.testimonial-box {
  background: linear-gradient(135deg, #073b78, #0d5db8);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.testimonial-quote {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: rgba(255,255,255,0.2);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -22px;
  margin-right: 8px;
}

.testimonial-quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  font-weight: 600;
}

.testimonial-image {
  width: 220px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  height: 130px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================
   CTA
===================== */
.cta {
  background: linear-gradient(90deg, rgba(5,43,87,0.96), rgba(13,93,184,0.88)),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: linear-gradient(180deg, #082a63, #051840);
  color: #fff;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  width: 200px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 14px;
}

.footer h4 {
  font-size: 17px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 700;
}

.footer li,
.footer li a {
  color: #94a3b8;
  line-height: 2;
  font-size: 14px;
  transition: color 0.3s;
}

.footer li a:hover { color: #60a5fa; }

.footer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer li i { color: #3b82f6; margin-top: 4px; flex-shrink: 0; }

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0d5db8;
  color: #fff;
  border-color: #0d5db8;
}

.map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.map iframe { display: block; width: 100%; }

.map-btn { margin-top: 12px; font-size: 14px; }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p { color: #64748b; font-size: 13px; }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #64748b;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: #60a5fa; }

/* VIDEO POPUP */
.video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.video-popup.active { display: flex; }

.video-modal {
  width: min(92vw, 950px);
  position: relative;
}

.video-modal video {
  width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  background: #000;
  display: block;
}

.popup-close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0d5db8;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.popup-close:hover { transform: rotate(90deg); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid-modern { grid-template-columns: 1fr 1fr; }
  .more-project-card { grid-column: span 2; }
}

@media (max-width: 992px) {
  .navbar { padding: 12px 0; }

  .nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .logo img { width: 160px; }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #0f4c81;
    font-size: 18px;
  }

  .nav-actions { display: none; }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 4%;
    width: 92%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    padding: 18px;
    display: none;
    z-index: 999;
  }

  .nav-menu.active { display: block; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links > li > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 13px 8px;
    font-size: 16px;
    border-bottom: 1px solid #e5edf6;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8fbff;
    border-radius: 10px;
    padding: 4px 0;
    margin-top: 4px;
    display: none;
  }

  .dropdown.open .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu { display: none; }

  .about-grid,
  .card-grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }

  .testimonial-box {
    flex-direction: column;
    padding: 30px;
  }

  .testimonial-image { width: 100%; }

  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .projects-grid-modern { grid-template-columns: 1fr; }
  .more-project-card { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .clients-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .section { padding: 65px 0; }
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .card-grid.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .video-bubble { right: 14px; bottom: 14px; }
  .video-bubble-card { width: calc(100vw - 28px); }
  .hero-stat-info h4 { font-size: 1.2rem; }
}