/* ═══════════════════════════════ ROOT & RESET ═══════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-deep: #0B3D91;
  --blue-sky: #3FA9F5;
  --blue-light: #E8F4FE;
  --blue-mid: #1a5cb8;
  --navy: #0A1A2F;
  --white: #FFFFFF;
  --gray-50: #F8FAFD;
  --gray-100: #EEF3FA;
  --gray-300: #C4D4E8;
  --gray-500: #7A90A8;
  --gray-700: #3D5068;
  --gold: #C9A84C;
  --grad-hero: linear-gradient(135deg, #0B3D91 0%, #1a5cb8 50%, #3FA9F5 100%);
  --grad-blue: linear-gradient(135deg, #0B3D91, #3FA9F5);
  --grad-card: linear-gradient(145deg, #ffffff, #f0f7ff);
  --shadow-sm: 0 2px 12px rgba(11, 61, 145, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 61, 145, 0.14);
  --shadow-lg: 0 20px 60px rgba(11, 61, 145, 0.18);
  --shadow-xl: 0 30px 80px rgba(11, 61, 145, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.section {
  padding: 100px 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

.mt-2 {
  margin-top: 20px;
}

.mt-4 {
  margin-top: 40px;
}

/* ═══ GRADIENT TEXT ═══ */
.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ SECTION LABELS & TITLES ═══ */
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-deep);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(63, 169, 245, 0.25);
}

.section-label.center {
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(11, 61, 145, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(11, 61, 145, 0.45);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}

.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-youtube {
  background: linear-gradient(135deg, #c00, #ff3333);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(200, 0, 0, 0.3);
}

.btn-youtube:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 0, 0, 0.4);
}

/* ════════════════════════════════ NAVBAR ════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(11, 61, 145, 0.10);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .nav-link {
  color: var(--navy);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: var(--blue-light);
  color: var(--blue-deep);
}

.nav-cta {
  flex-shrink: 0;
  background: var(--white);
  color: var(--blue-deep);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-cta {
  background: var(--grad-blue);
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--navy);
}

/* ════════════════════════════════ HERO ════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(63, 169, 245, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-badge i {
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-name {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #3FA9F5 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.0;
  margin-bottom: 18px;
  letter-spacing: -2px;
  animation: shine 5s linear infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.hero-name:hover {
  transform: scale(1.03) skewX(-2deg);
  filter: drop-shadow(0 10px 20px rgba(63, 169, 245, 0.4));
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.5;
  transition: var(--transition);
  cursor: default;
}

.hero-tagline:hover {
  color: var(--white);
  transform: translateX(8px);
}

.hero-description {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
  transition: var(--transition);
  cursor: default;
}

.hero-description:hover {
  color: var(--white);
  transform: translateX(5px);
}

.hero-description strong {
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
  background: var(--white);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--blue-deep);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.hero-social {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--white);
  color: var(--blue-deep);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Right */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  align-self: stretch;
}

.hero-image-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-image-ring.ring2 {
  width: 650px;
  height: 650px;
  border-color: rgba(255, 255, 255, 0.1);
  animation-delay: 1s;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.7;
  }
}

.hero-portrait {
  width: 550px;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  border-bottom: 10px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-portrait:hover {
  transform: scale(1.02) translateY(-10px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}



.hero-portrait .portrait-main {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  object-position: bottom;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-portrait .portrait-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-portrait:hover .portrait-main {
  opacity: 0;
}

.hero-portrait:hover .portrait-hover {
  opacity: 1;
}

.hero-float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  color: var(--blue-deep);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-1 {
  bottom: 80px;
  left: -20px;
  animation-delay: 0s;
}

.badge-2 {
  top: 80px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-float-badge i {
  color: var(--blue-sky);
}



.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  color: inherit;
}



/* ════════════════════════════════ STATS BAR ════════════════════════════════ */
.stats-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(-50px);
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 44px 24px;
  position: relative;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--blue-sky);
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-sky);
  display: inline;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--gray-100);
  flex-shrink: 0;
}

/* ════════════════════════════════ ABOUT ════════════════════════════════ */
.about {
  background: var(--gray-50);
}

@media (min-width: 1025px) {
  .about .section-container {
    max-width: 1600px;
    padding-left: 40px;
    margin-left: 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-frame {
  position: relative;
  height: auto;
}

.about-img-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--grad-blue);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.7;
}

.about-exp-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: var(--grad-blue);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.exp-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.3;
}

.about-lead {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 36px;
}

.about-text strong {
  color: var(--blue-deep);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.expertise-item:hover {
  border-color: var(--blue-sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.expertise-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* ════════════════════════════════ MESSAGE ════════════════════════════════ */
.message {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.message-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #e8f4fe 100%);
  pointer-events: none;
}

.message .section-container {
  position: relative;
  z-index: 1;
}

.message-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-icon-large {
  font-size: 5rem;
  color: var(--blue-sky);
  opacity: 0.15;
  margin-bottom: -30px;
  margin-left: -20px;
}

.message-quote-v2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.message-quote-v2 em {
  display: block;
  color: var(--blue-deep);
  font-style: italic;
  font-weight: 500;
  margin-top: 10px;
  font-size: 0.8em;
}

.message-text-v2 {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 50px;
  max-width: 600px;
}

.message-footer {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-sig-box {
  display: flex;
  flex-direction: column;
}

.sig-name-large {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-deep);
}

.sig-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.sig-corp {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-sig-hand {
  height: 70px;
  filter: grayscale(1) brightness(0.2);
  opacity: 0.7;
}

.message-visual-side {
  position: relative;
}

.message-img-wrapper {
  position: relative;
  z-index: 2;
}

.message-spotlight-img {
  width: 100%;
  height: auto;
  border-radius: 40px 100px 40px 40px;
  box-shadow: 30px 30px 0px var(--blue-light);
  transition: var(--transition);
}

.message-grid:hover .message-spotlight-img {
  transform: translateY(-10px);
}

.message-accent-circle {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 40px solid var(--gray-100);
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 992px) {
  .message-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .message-visual-side {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

.sig-portrait {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--blue-sky);
  box-shadow: var(--shadow-sm);
}

.sig-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.sig-title {
  font-size: 0.85rem;
  color: var(--blue-deep);
  font-weight: 600;
  margin-top: 2px;
}

.sig-company {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ════════════════════════════════ COMPANY BENTO REDESIGN ════════════════════════════════ */
.company {
  background: var(--gray-50);
  padding: 100px 0;
}

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

.company-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
}

.bento-card {
  background: var(--white);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-light);
}

/* 1. Identity Card */
.identity-card {
  grid-column: span 1;
  text-align: center;
  background: var(--white);
}

.bento-logo {
  max-width: 140px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

.bento-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bento-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-sky);
  text-decoration: none;
  transition: var(--transition);
}

.bento-link:hover {
  color: var(--navy);
  transform: translateX(5px);
}

/* 2. Mission Card */
.mission-card {
  grid-column: span 2;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-card.highlight {
  border-left: 6px solid var(--blue-sky);
}

.bento-icon {
  font-size: 2.5rem;
  color: var(--blue-sky);
  margin-bottom: 20px;
}

.mission-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
}

.mission-card p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* 3. Stats Card */
.stats-card {
  grid-column: span 1;
  background: var(--navy);
  color: var(--white);
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 30px;
}

.bento-stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-sky);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.stats-card .divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

/* 4. Capabilities */
.capabilities-card {
  grid-column: span 1;
}

.bento-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bento-tags span {
  background: var(--blue-light);
  color: var(--blue-deep);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* 5. Footprint */
.footprint-card {
  grid-column: span 1;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.loc-pill {
  background: var(--gray-50);
  padding: 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-align: center;
  border: 1px solid var(--gray-100);
}

@media (max-width: 1024px) {
  .company-bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .company-bento-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    grid-column: span 1;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(63, 169, 245, 0.3);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue-deep);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--grad-blue);
  color: var(--white);
  transform: scale(1.08);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-arrow {
  color: var(--blue-sky);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  color: var(--blue-deep);
  transform: translateX(6px);
}

/* ════════════════════════════════ AWARDS SLIDER ════════════════════════════════ */
.awards {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.awards::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.07) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.awards .section-label {
  background: rgba(63, 169, 245, 0.12);
  color: var(--blue-sky);
  border-color: rgba(63, 169, 245, 0.25);
}

.awards .section-title {
  color: var(--white);
}

.awards .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Slider Wrapper ── */
.awards-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.aslider-viewport {
  flex: 1;
  overflow: hidden;
}

.aslider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Each Card ── */
.aslider-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  cursor: default;
  box-sizing: border-box;
}

.aslider-card:hover {
  border-color: rgba(63, 169, 245, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}

/* Gold variant */
.aslider-card--gold {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
  border-color: rgba(201, 168, 76, 0.25);
}

.aslider-card--gold:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.aslider-card--gold .asc-icon {
  background: linear-gradient(135deg, #c9a84c, #f0d080);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* Year ghost number */
.asc-year {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -10px;
  right: 12px;
  line-height: 1;
  letter-spacing: -3px;
  pointer-events: none;
  transition: var(--transition);
}

.aslider-card:hover .asc-year {
  color: rgba(63, 169, 245, 0.09);
  transform: scale(1.06) translateY(6px);
}

.aslider-card--gold:hover .asc-year {
  color: rgba(201, 168, 76, 0.12);
}

/* Icon box */
.asc-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.4);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.aslider-card:hover .asc-icon {
  transform: rotate(-6deg) scale(1.1);
}

.asc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
  position: relative;
  z-index: 2;
}

.asc-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Shine sweep */
.asc-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.aslider-card:hover .asc-shine {
  left: 140%;
}

/* ── Nav Buttons ── */
.aslider-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.aslider-btn:hover {
  background: var(--grad-blue);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.5);
  transform: scale(1.08);
}

.aslider-btn:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* ── Dot Indicators ── */
.aslider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.aslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.aslider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--blue-sky);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .aslider-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .aslider-card {
    flex: 0 0 100%;
  }

  .aslider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}




.awards .section-label {
  background: rgba(63, 169, 245, 0.12);
  color: var(--blue-sky);
  border-color: rgba(63, 169, 245, 0.25);
}

.awards .section-title {
  color: var(--white);
}

.awards .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.awards::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.08) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ── Featured Cards (Top 3) ── */
.awards-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.aw-feat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.aw-feat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(63, 169, 245, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.aw-feat--gold {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border-color: rgba(201, 168, 76, 0.3);
}

.aw-feat--gold:hover {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 24px 50px rgba(201, 168, 76, 0.18);
}

.aw-feat--gold .aw-feat-icon {
  background: linear-gradient(135deg, #c9a84c, #f0d080);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.4);
}

.aw-feat-year {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
  position: absolute;
  top: -12px;
  right: 10px;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -3px;
  transition: var(--transition);
}

.aw-feat:hover .aw-feat-year {
  color: rgba(63, 169, 245, 0.08);
  transform: scale(1.05) translateY(6px);
}

.aw-feat--gold:hover .aw-feat-year {
  color: rgba(201, 168, 76, 0.1);
}

.aw-feat-icon {
  width: 64px;
  height: 64px;
  background: var(--grad-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(11, 61, 145, 0.45);
  transition: var(--transition);
}

.aw-feat:hover .aw-feat-icon {
  transform: rotate(-6deg) scale(1.1);
}

.aw-feat-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
}

.aw-feat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.aw-feat-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.aw-feat:hover .aw-feat-shine {
  left: 140%;
}

/* ── List (Awards 4–12) ── */
.awards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aw-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.aw-list-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.aw-list-item:hover {
  background: rgba(63, 169, 245, 0.07);
  border-color: rgba(63, 169, 245, 0.25);
  transform: translateX(6px);
}

.aw-list-item:hover::after {
  transform: scaleX(1);
}

.awl-number {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(63, 169, 245, 0.25);
  min-width: 28px;
  flex-shrink: 0;
  transition: var(--transition);
}

.aw-list-item:hover .awl-number {
  color: rgba(63, 169, 245, 0.6);
}

.awl-icon {
  width: 40px;
  height: 40px;
  background: rgba(63, 169, 245, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue-sky);
  flex-shrink: 0;
  transition: var(--transition);
}

.aw-list-item:hover .awl-icon {
  background: var(--grad-blue);
  color: var(--white);
  transform: rotate(-5deg);
}

.awl-body {
  flex: 1;
  min-width: 0;
}

.awl-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-sky);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.awl-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.awl-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: var(--transition);
}

.aw-list-item:hover .awl-arrow {
  color: var(--blue-sky);
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .awards-featured {
    grid-template-columns: 1fr;
  }

  .awards-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .awards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ════════════════════════════════ BLOG ════════════════════════════════ */
.blog {
  background: var(--gray-50);
}

/* ── Slider Wrapper ── */
.blog-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.bslider-viewport {
  flex: 1;
  overflow: hidden;
}

.bslider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc((100% - 56px) / 2);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-image-placeholder {
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image-placeholder.alt {
  background: linear-gradient(135deg, #1a5cb8, #3FA9F5);
}

.blog-placeholder-icon {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.blog-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--grad-blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.blog-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--blue-sky);
}

.blog-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-deep);
  transition: var(--transition);
}

.blog-read-more:hover {
  gap: 14px;
  color: var(--blue-sky);
}

/* ── Nav Buttons ── */
.bslider-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--blue-deep);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.bslider-btn:hover {
  background: var(--grad-blue);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.35);
  transform: scale(1.08);
}

.bslider-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* ── Dot Indicators ── */
.bslider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.bslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.bslider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--blue-sky);
}

/* Responsive */
@media (max-width: 991px) {
  .blog-card {
    flex: 0 0 calc((100% - 28px) / 1);
  }
}

@media (max-width: 600px) {
  .bslider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

/* ════════════════════════════════ MEDIA / VIDEO ════════════════════════════════ */
.media {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.media-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%);
  pointer-events: none;
}

.media .section-container {
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.video-thumb {
  height: 210px;
  position: relative;
  overflow: hidden;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb-img {
  transform: scale(1.08);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #c00;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.12);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.video-info {
  padding: 22px 24px;
}

.video-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-sky);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.video-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-views {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.video-views i {
  color: var(--blue-sky);
}

/* ════════════════════════════════ CONTACT ════════════════════════════════ */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-socials {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.contact-social-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--blue-sky);
  font-size: 0.92rem;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--blue-sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(63, 169, 245, 0.12);
}

.form-textarea-wrap {
  position: relative;
}

.form-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--gray-50);
  resize: vertical;
  min-height: 140px;
  transition: var(--transition);
  outline: none;
}

.form-textarea:focus {
  border-color: var(--blue-sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(63, 169, 245, 0.12);
}

.submit-btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 17px;
}

.form-success {
  display: none;
  background: #e6f9f0;
  border: 1px solid #34d399;
  color: #065f46;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
  animation: fadeIn 0.4s ease;
}

/* ════════════════════════════════ FOOTER ════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  color: var(--white);
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  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: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--grad-blue);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--blue-sky);
  padding-left: 4px;
}

.footer-links-list a i {
  font-size: 0.82rem;
  color: var(--blue-sky);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ════════════════════════════════ SCROLL TOP ════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

/* ════════════════════════════════ ANIMATIONS ════════════════════════════════ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
  transform: translateY(36px);
}

[data-aos="fade-right"] {
  transform: translateX(-36px);
}

[data-aos="fade-left"] {
  transform: translateX(36px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════ RESPONSIVE ════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 0;
    margin-bottom: -20px;
  }

  .hero-portrait {
    width: 320px;
    height: 420px;
  }

  .hero-buttons,
  .hero-social {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .badge-1 {
    left: 10px;
    bottom: 20px;
  }

  .badge-2 {
    right: 10px;
    top: 20px;
  }

  .stats-container {
    flex-wrap: wrap;
    transform: translateY(-30px);
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1 1 40%;
    padding: 30px 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 47, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 998;
  }

  .nav-links.open .nav-link {
    font-size: 1.4rem;
    color: var(--white);
  }

  .hero-portrait {
    width: 240px;
    height: 300px;
  }

  .hero-image-ring,
  .hero-image-ring.ring2 {
    display: none;
  }

  .hero-float-badge {
    display: none;
  }

  .message-card {
    padding: 36px 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-name {
    font-size: 2.5rem;
  }

  .stats-container {
    transform: translateY(-20px);
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .message-card {
    padding: 28px 20px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* ════════════════════════════════ CUSTOM CURSOR ════════════════════════════════ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--blue-sky);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9991;
  pointer-events: none;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--blue-sky);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9990;
  pointer-events: none;
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  background-color: var(--navy);
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(63, 169, 245, 0.1);
  border-color: transparent;
}

@media (max-width: 1024px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

html,
body {
  cursor: none !important;
}

a,
button,
input,
textarea,
select,
.nav-logo {
  cursor: none !important;
}

/* ════════════════════════════════ CUSTOM ADDITIONS ════════════════════════════════ */
.about-content-col {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .about-content-col {
    padding-right: 0;
  }
}

.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9980;
}
.fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fab-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}
.fab-whatsapp {
  background: #25D366;
}
.fab-call {
  background: #007BFF;
}