* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden; 
}

.stars-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5; 
  background: transparent;
}

.stars-overlay::before,
.stars-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-position: 0 0;
  z-index: 5;
}

.stars-overlay::before {
  background-image:
    radial-gradient(circle at 6px 12px, rgba(255,255,255,1) 0.4px, transparent 1px),
    radial-gradient(circle at 24px 56px, rgba(255,255,255,0.95) 0.45px, transparent 1px),
    radial-gradient(circle at 48px 90px, rgba(255,255,255,0.9) 0.45px, transparent 1px),
    radial-gradient(circle at 72px 30px, rgba(255,255,255,0.95) 0.45px, transparent 1px),
    radial-gradient(circle at 96px 210px, rgba(255,255,255,0.9) 0.45px, transparent 1px),
    radial-gradient(circle at 130px 120px, rgba(255,255,255,0.92) 0.45px, transparent 1px),
    radial-gradient(circle at 160px 80px, rgba(255,255,255,0.85) 0.45px, transparent 1px),
    radial-gradient(circle at 200px 320px, rgba(255,255,255,0.9) 0.45px, transparent 1px),
    radial-gradient(circle at 240px 40px, rgba(255,255,255,0.88) 0.45px, transparent 1px),
    radial-gradient(circle at 280px 180px, rgba(255,255,255,0.86) 0.45px, transparent 1px),
    radial-gradient(circle at 320px 260px, rgba(255,255,255,0.9) 0.45px, transparent 1px);
  background-size: 260px 260px; 
  opacity: 1;
  filter: none;
  animation: twinkle-slow 220s linear infinite;
  mix-blend-mode: normal;
  z-index: 5;
}

.stars-overlay::after {
  background-image:
    radial-gradient(circle at 12px 30px, rgba(255,255,255,1) 1px, transparent 2px),
    radial-gradient(circle at 68px 110px, rgba(255,255,255,0.98) 1.2px, transparent 2.2px),
    radial-gradient(circle at 140px 70px, rgba(255,255,255,0.98) 1.6px, transparent 2.6px),
    radial-gradient(circle at 220px 220px, rgba(255,255,255,0.95) 1px, transparent 2px),
    radial-gradient(circle at 300px 40px, rgba(255,255,255,0.95) 1px, transparent 2px),
    radial-gradient(circle at 380px 200px, rgba(255,255,255,0.92) 1.3px, transparent 2.3px),
    radial-gradient(circle at 460px 320px, rgba(255,255,255,0.9) 1px, transparent 2px),
    radial-gradient(circle at 560px 120px, rgba(255,255,255,0.9) 1.2px, transparent 2.2px),
    radial-gradient(circle at 680px 260px, rgba(255,255,255,0.88) 1.4px, transparent 2.4px);
  background-size: 700px 700px; 
  opacity: 0.95;
  filter: none;
  animation: twinkle 200s linear infinite;
  mix-blend-mode: screen;
  z-index: 5;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20px 30px, rgba(255,255,255,0.6) 0.8px, transparent 1.6px),
    radial-gradient(circle at 60px 70px, rgba(255,255,255,0.6) 0.8px, transparent 1.6px),
    radial-gradient(circle at 140px 150px, rgba(255,255,255,0.55) 0.8px, transparent 1.6px),
    radial-gradient(circle at 220px 90px, rgba(255,255,255,0.5) 0.8px, transparent 1.6px);
  background-repeat: repeat;
  background-size: 320px 320px;
  opacity: 0.36;
  animation: subtle-drift 260s linear infinite;
  z-index: 5;
}

@keyframes twinkle {
  0%   { background-position: 0 0; opacity: 0.9; }
  50%  { opacity: 1; }
  100% { background-position: -9000px 4500px; opacity: 0.9; }
}

@keyframes twinkle-slow {
  0%   { background-position: 0 0; opacity: 0.85; }
  50%  { opacity: 1; }
  100% { background-position: -7000px 3000px; opacity: 0.85; }
}

@keyframes subtle-drift {
  from { background-position: 0 0; }
  to   { background-position: 7000px -2500px; }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
  color: white;
  background: rgba(20, 20, 20, 0.45); /* semi-transparent black */
  backdrop-filter: blur(16px); /* background blur effect */
  box-shadow: 0 4px 28px rgba(0,0,0,0.24); /* subtle depth */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links.left {
    flex: 1;
    gap: 180px;
}

.nav-links.right {
    flex: 1;
    gap: 130px;
    justify-content: flex-end;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.logo {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 999;
}

.logo img {
    height: 60px;
    width: 100px;
    transform: scale(2.0);
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 350px;
}

h1 {
  font-size: 52px;
  font-weight: 300;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.subtitle {
  font-size: 18px;
  font-style: italic;
  margin-top: 12px;
  opacity: 0.9;
}

#main-title {
  color: #C84B4B;
  background: linear-gradient(90deg, #C84B4B 1%, #D46B6B 20.5%, #E7A09B 50%, #F2D2BC 75.5%, #FAEBD7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; 
  color: transparent; 

  font-weight: 400;
  line-height: 1.15;
  display: inline-block; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.45); 
}


.hero-section {
  position: fixed; 
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: auto;
}

.earth {
  position: absolute;
  left: 0;
  top: 40px;
  height: 100%;
  width: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none; 
}

.earth img {
  height: 100vh;
  max-width: none;
  object-fit: cover;
  transform-origin: left center;
  transform: scale(0.6) translateX(0);
  opacity: 0;
  transition: transform 1800ms cubic-bezier(1, 0.02, 0, 1), opacity 1800ms ease;
  will-change: transform, opacity;
}

.hero-section .earth {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-section.scroll-active .earth {
  transform: translateX(-25vw); 
}

.hero-inner .content {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-section.scroll-active .hero-inner .content {
  transform: translateY(-250px) translateX(200px) scale(1); 
}


.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; 
}

.hero-inner .content {
  max-width: 900px;
  padding: 0 30px;
  transform: translateY(-150px) translateX(200px) scale(0.85);
  opacity: 0;
  transition: transform 1800ms cubic-bezier(1, 0.02, 0, 1), opacity 1800ms ease 50ms;
  will-change: transform, opacity;
}

.hero-section.active .earth img {
  transform: scale(1) translateX(0);
  opacity: 1;
}

.hero-section.active .hero-inner .content {
  transform: translateY(-150px) translateX(200px) scale(1);
  opacity: 1;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  background: transparent; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.5s ease;
}

.intro-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

body.revealed {
  overflow: auto;
}

body.page-visible .hero-section {
  position: relative; 
  height: 100vh;      
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.2,.9,.2,1);
}

#Home_Page {
  position: relative;
  z-index: 0;
  padding: 200px 80px;
  max-width: 1200px;
  margin: 0 auto 160px;
  color: #f3dedf;
  text-align: center;
  opacity: 0; 
  transform: translateY(20px) scale(0.985);
  will-change: transform, opacity;
}

#Home_Page .kicker {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 60px 20px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  z-index: 10;
  background: linear-gradient(90deg, #C84B4B 0%, #FFFFFF 60.63%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  transition: opacity 1800ms cubic-bezier(1, 0.02, 0, 1), transform 1800ms cubic-bezier(1, 0.02, 0, 1);
  will-change: opacity, transform;
}

#Home_Page.entering .kicker {
  opacity: 1;
}

#Home_Page .kicker::before,
#Home_Page .kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;                 
  height: 6px;                 
  border-radius: 3px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, rgba(199,210,254,0.48) 0%, rgba(199,210,254,0) 100%);
  transition: opacity 1800ms cubic-bezier(1, 0.02, 0, 1), transform 1800ms cubic-bezier(1, 0.02, 0, 1);
  will-change: opacity, transform;
}

#Home_Page.entering .kicker::before,
#Home_Page.entering .kicker::after {
  opacity: 0.95;
}

#Home_Page .kicker::before {
  right: calc(100% + 12px);
  transform: translateY(-50%) scaleX(-1) translateX(-20px);
}

#Home_Page.entering .kicker::before {
  transform: translateY(-50%) scaleX(-1) translateX(0);
}

#Home_Page .kicker::after {
  left: calc(100% + 12px);
  transform: translateY(-50%) translateX(20px);
}

#Home_Page.entering .kicker::after {
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 520px) {
  #Home_Page .kicker { position: static; transform: none; padding: 0 12px; margin-bottom: 8px; }
  #Home_Page .kicker::before,
  #Home_Page .kicker::after { display: none; }
}

#Home_Page h2 {
  font-size: 36px;
  color: #eec7c9;
  margin-bottom: 12px;
  font-weight: 400;
}

#Home_Page .lead {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.25px;
  text-align: center;
  max-width: 780px;
  margin: 6px auto 40px;
  color: #f2f1ed;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

.card {
  background: linear-gradient(180deg, rgba(30,10,12,0.6), rgba(10,6,8,0.6));
  border: 1px solid rgba(200,80,80,0.12);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  min-height: 360px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  transition: transform 300ms ease, box-shadow 300ms ease;
  color: #ffefef;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1800ms cubic-bezier(1, 0.02, 0, 1), transform 1800ms cubic-bezier(1, 0.02, 0, 1), box-shadow 300ms ease;
  will-change: opacity, transform;
}

#Home_Page.entering .card:nth-of-type(1) {
  transition-delay: 200ms;
}

#Home_Page.entering .card:nth-of-type(2) {
  transition-delay: 400ms;
}

#Home_Page.entering .card:nth-of-type(3) {
  transition-delay: 600ms;
}

#Home_Page.entering .card {
  opacity: 1;
  transform: translateY(0);
}

.features .card {
  padding: 18px;
  min-height: 360px;
  background-color: rgba(10,6,8,0.6); 
  border: 1px solid transparent;
  background-clip: padding-box;
}

.features .card:nth-of-type(1) {
  background: radial-gradient(56.71% 44.47% at 80.11% 74.27%, rgba(200,75,75,0.192) 0%, rgba(200,75,75,0) 54%), rgba(10,6,8,0.6);
  border: 1px solid transparent;
  border-image-source: linear-gradient(300.66deg, rgba(200,75,75,0.8) 5.59%, #2C1B1D 19.91%, rgba(26,14,15,0.8) 34.83%);
  border-image-slice: 1;
  border-image-width: 1;
  border-image-repeat: stretch;
}

.features .card:nth-of-type(2) {
  background: radial-gradient(56.71% 44.47% at 80.11% 74.27%, rgba(200,75,75,0.192) 0%, rgba(200,75,75,0) 54%), rgba(10,6,8,0.6);
  border: 1px solid transparent;
  border-image-source: linear-gradient(300.66deg, rgba(200,75,75,0.8) 5.59%, #2C1B1D 19.91%, rgba(26,14,15,0.8) 34.83%);
  border-image-slice: 1;
  border-image-width: 1;
  border-image-repeat: stretch;
}

.features .card:nth-of-type(3) {
  background: radial-gradient(56.71% 44.47% at 80.11% 74.27%, rgba(200,75,75,0.192) 0%, rgba(200,75,75,0) 54%), rgba(10,6,8,0.6);
  border: 1px solid transparent;
  border-image-source: linear-gradient(300.66deg, rgba(200,75,75,0.8) 5.59%, #3B1C1E 19.91%, rgba(26,14,15,0.8) 34.83%);
  border-image-slice: 1;
  border-image-width: 1;
  border-image-repeat: stretch;
}

.features .card .thumb {
  position: relative;
  z-index: 1;
}

.card:hover { transform: translateY(-8px); }

.card .thumb {
  background: linear-gradient(0deg, rgba(26, 14, 15, 0.4) 37.5%, rgba(34, 20, 21, 0.4) 100%);
  border-radius: 12px;
  padding: 8px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.03);
}

.card .thumb img { width:100%; height:100%; object-fit:cover; border-radius:8px; display:block; }

.card .label {
  display: inline-block;
  background: linear-gradient(0deg, rgba(26, 14, 15, 0.4) 37.5%, rgba(34, 20, 21, 0.4) 100%);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 10px;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(58, 32, 33, 0.16) 0%, rgba(58, 32, 33, 0.48) 100%);
  background: linear-gradient(90deg, #C84B4B 0%, #FAEBD7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
}

#Home_Page.entering {
  animation: pageEnter 900ms cubic-bezier(.2,.9,.2,1) forwards;
}

#Home_Page.entering {
  animation: pageEnter 900ms cubic-bezier(.2,.9,.2,1) forwards;
}

@keyframes pageEnter {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  60% {
    opacity: 0.8;
    transform: translateY(6px) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-divider {
  height: 2px;
  width: 100%;
  margin: 52px 0 0;
  background: linear-gradient(90deg, rgba(50,50,60,0.0), rgba(60,120,140,0.06), rgba(50,50,60,0.0));
  border-radius: 2px;
}

.workflow-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(156, 163, 175, 0) 0%,
    rgba(156, 163, 175, 0.24) 52.5%,
    rgba(156, 163, 175, 0) 100%
  );
  box-shadow: 0px 0px 24px 0px #6366F152;
  margin-top: 48px;   
  border-radius: 20px;
}

@media (max-width: 1200px) {
  nav { padding: 36px 60px; }
  .nav-links { gap: 36px; }
}
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  nav { padding: 30px 40px; }
}
@media (max-width: 400px) {
  .features { grid-template-columns: 1fr; }
  #Home_Page { padding: 80px 24px; }
  nav { padding: 20px; }
}


.gis-section {
  position: relative;
  padding: 60px 0; 
  background: transparent;
  min-height: 450px; 
  max-width: 1650px; 
  margin: 120px auto 0; 
  z-index: 0;
}

.gis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.30) 40%, rgba(0,0,0,0.10) 70%, rgba(0,0,0,0.00) 100%),
      url('Assets/IMG/4.jpg');
  background-size: cover; 
  background-position: center;
  filter: brightness(1.40) contrast(1.12) saturate(1.08);
  background-repeat: no-repeat;
  border-radius: 20px;
  opacity: 0.9;
  z-index: 0;
}

.gis-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center; 
  justify-content: flex-start; 
  padding-left: 80px; 
  padding-right: 140px;
  height: 100%; 
}

.gis-card {
  max-width: 560px;
  padding: 30px 30px 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
              linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  text-align: center; 
  color: #000; 
}

.gis-card { 
  position: relative;
  overflow: hidden;
  min-height: 520px; 
}

.gis-details {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gis-details-inner {
  max-width: 900px;
  width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  background: transparent; 
  backdrop-filter: none;
  border-radius: 0; 
  padding: 30px 36px;
}

.gis-summary { 
  transition: opacity 0.3s ease;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding-top: 45px;
}

.gis-card.expanded .gis-summary { 
  opacity: 0;
  pointer-events: none;
}

.gis-card.expanded .gis-details { 
  opacity: 1;
  pointer-events: auto;
}

.gis-card .gis-eyebrow,
.gis-card .gis-title,
.gis-card .gis-text {
  color: #000;
}

.gis-eyebrow {
  font-size: 24px; 
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
}

.gis-title {
  font-size: 48px; 
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.gis-text {
  font-size: 17px; 
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
}


.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.gis-card .cta-button {
  width: 135px; 
  height: 39px; 
  padding: 0; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #272731;
  border: 1px solid #272731; 
  border-radius: 36.7px;
  font-size: 14px; 
  font-weight: 500;
  margin-top: 8px; 
  align-self: center; 
}

.gis-card .cta-button:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.explore-earth-section {
  margin-top: 120px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 160px 120px;
  gap: 80px;
  position: relative;
  z-index: 0;
}

.earth-left {
  width: 48%;
  padding-top: 150px;
}

.earth-tag {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 20px;
}

.earth-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
}

.earth-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  opacity: 0.85;
}

.earth-right {
  width: 48%;
  height: 620px;
  overflow: hidden;
  position: relative;
}

.earth-scroll {
  height: 100%;
  overflow-y: scroll;
  padding-right: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;  
}

.earth-scroll::-webkit-scrollbar {
  width: 6px;
}

.earth-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

.earth-scroll img {
  width: 100%;
  height: 200px;         
  object-fit: cover;     
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
}

.cta-section {
    padding: 40px 40px 120px;
    background: #000;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 auto 50px;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-buttons .cta-button {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-buttons .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


.site-footer {
    background: linear-gradient(
    0deg,
    #272731 0%,
    rgba(120, 120, 151, 0) 100%
    );
    padding: 80px 120px 40px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
    align-items: start;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px; 
}

.footer-brand {
    max-width: 400px;
    margin-left: -18px;
    margin-top: 6px;
}

.footer-logo {
    margin-bottom: 20px;
    margin-left: -45px;
    margin-top: -35px;
}

.footer-logo img {
    height: 90px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffffb3;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: rgba(255, 255, 255, 1);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 30px;
    max-width: 1400px;
}

.footer-bottom {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
    .site-footer {
        padding: 60px 60px 40px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 980px) {
  .footer-logo {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .site-footer {
        padding: 40px 24px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.first-hero {
    padding: 140px 0 80px;
    position: relative;
    z-index: 5;
}

.container {
    width: min(92%, 1200px);
    margin: 0 auto;
}

.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.first-text {
    flex: 1;
}

.first-text .eyebrow {
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding-left: 5px;
    padding-top: 50px;
}

.first-text h1 {
    font-size: 40px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.first-text .lead {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
}

.first-image-card {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    opacity: 1;
    visibility: visible;
    padding-top: 65px;
}

.first-image-card .firstcard {
    width: 520px;
    height: 330px;
}

.first-image-card .firstcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media(max-width: 980px) {
    .split {
        flex-direction: column;
        text-align: center;
    }

    .first-image-card {
        justify-content: center;
    }

    .first-image-card .firstcard {
        width: 100%;
        max-width: 520px;
        height: 260px;
    }

    .first-text h1 {
        font-size: 38px;
    }
}

@media(max-width: 600px) {
    .first-hero {
        padding: 120px 20px 60px;
    }

    .first-text h1 {
        font-size: 32px;
    }
}

.freeze-hero .hero-section .earth img,
.freeze-hero .hero-inner .content {
  transition: none !important;
  will-change: auto !important;
  transform: none !important;
  opacity: 1 !important;
}

.who-section {
    position: relative;
    padding: 40px 0;
    background: transparent;
    min-height: 750px;
    max-width: 1650px;
    margin: 0 auto;
}

.who-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 30%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.45) 100%),
        url('Assets/IMG/20.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    filter: brightness(1.40) contrast(1.12) saturate(1.08) blur(3px);
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
}

.who-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding-right: 80px; 
    padding-left: 140px;
    height: 100%;
    gap: 80px;
}

.who-card {
    max-width: 560px;
    padding: 30px 30px 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    text-align: center;
    color: #000; 
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.who-summary {
    transition: opacity 0.3s ease;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-top: 55px;
}

.who-card.expanded .who-summary {
    opacity: 0;
    pointer-events: none;
}

.who-details {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.who-card.expanded .who-details {
    opacity: 1;
    pointer-events: auto;
}

.who-details-inner {
    max-width: 900px;
    width: 100%;
    color: #000; 
    font-size: 16px;
    line-height: 1.8;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 30px 36px; 
    text-align: center; 
}

.who-details-inner p {
    margin-bottom: 0; 
    color: #000; 
    font-weight: 300;
}

.who-details-inner p:last-child {
    margin-bottom: 0;
}

.who-card .who-eyebrow,
.who-card .who-title,
.who-card .who-text {
    color: #000;
}

.who-eyebrow {
    font-size: 24px; 
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 14px;
    text-align: center;
    width: 100%;
}

.who-title {
    font-size: 48px; 
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.who-text {
    font-size: 17px; 
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: center;
    width: 100%;
}

.who-card .cta-button {
    width: 135px; 
    height: 39px; 
    padding: 0; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #272731;
    border: 1px solid #272731; 
    border-radius: 36.7px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px; 
    align-self: center;
}

.who-card .cta-button:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.first-hero {
  min-height: 100vh;        
  display: flex;            
  align-items: center;
  padding: 80px 0 40px;     
  box-sizing: border-box;
}

.container.split {
  align-items: center;
   gap: 100px; 
   width: 70%;
}

.first-text .eyebrow { padding-top: 24px; }

.who-section {
  margin-top: 0;
  padding-top: 50px;        
}

html, body {
  scroll-behavior: auto;    
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;   
  padding-top: 65px;            
  perspective: 1400px;      
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 300px;  
  padding-top: 65px;      
  perspective: 1400px;
}

.who-earth {
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

#earth-animate {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  user-select: none;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 300ms ease;
}

#earth-animate:hover {
  transform: scale(1.02);
}


@keyframes rotateClock {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#earth-animate.clock-rotate {
  animation: rotateClock var(--rotation-duration, 8s) linear infinite;
}

@keyframes earthPulse {
  0%   { transform: scale(1.06) rotate(6deg) translateY(-8px); }
  60%  { transform: scale(1.02) rotate(3deg) translateY(-4px); }
  100% { transform: scale(1.04) rotate(4deg) translateY(-6px); }
}

@media (max-width: 980px) {
  .who-container { flex-direction: column-reverse; gap: 28px; justify-content: center; padding: 40px 24px; }
  .who-earth { width: 85%; height: 260px; min-width: unset; }
}

.industry-feature {
  padding: 80px 0 120px;
  background: transparent; 
  z-index: 8;
}

.industry-wrap {
  align-items: center;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-image-card {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-left: -10px;
}

.industry-card-img {
  width: 560px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  margin-left: -60px;
  margin-top: -25px;
}

.industry-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-text {
  flex: 1;
  max-width: 700px;
  color: #fff;
  text-align: left;
  padding-right: 10px;
}

.industry-text .eyebrow {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.industry-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.industry-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2px;
  max-width: 480px;
}

.talk-button {
    background: linear-gradient(
        0deg,
        rgba(58, 71, 96, 0.4) 37.5%,
        rgba(42, 52, 71, 0.4) 100%
    );
    border: 1px solid #5A6C87;
    padding: 8px 28px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #7EA6FF 0%, #C7DBFF 100%);

    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.talk-button:hover {
    transform: translateY(-3px);
    color: #ffffff;               
    -webkit-text-fill-color: #fff;
    background-clip: border-box;  
    -webkit-background-clip: border-box;
    filter: brightness(1.15);
}

@media (max-width: 980px) {
  .industry-wrap { flex-direction: column-reverse; text-align: center; gap: 26px; padding: 28px 24px; }
  .industry-image-card { justify-content: center; }
  .industry-card-img { width: 100%; max-width: 520px; height: 260px; }
  .industry-text { max-width: 900px; padding: 0 18px; }
  .industry-title { font-size: 32px; }
}

.infrastructure-section {
  padding: 80px 0 120px;
  z-index: 8;
  background: transparent;
}

.industry-second-wrap {
  align-items: center;
  gap: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.infrastructure-text {
  flex: 1;
  max-width: px;
  text-align: left;
  color: #fff;
  padding-right: 10px;
  margin-left: -30px;
}

.infrastructure-text .eyebrow-second {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.infrastructure-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: 1px;
  max-width: 550px;
}

.infrastructure-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2px;
  max-width: 500px;
}

.infrastructure-cta {
    background: linear-gradient(
        0deg,
        rgba(58, 71, 96, 0.4) 37.5%,
        rgba(42, 52, 71, 0.4) 100%
    );
    border: 1px solid #5A6C87;
    padding: 8px 28px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #7EA6FF 0%, #C7DBFF 100%);

    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}
.infrastructure-cta:hover {
    transform: translateY(-3px);
    color: #ffffff;               
    -webkit-text-fill-color: #fff;
    background-clip: border-box;  
    -webkit-background-clip: border-box;
    filter: brightness(1.15);
}

.infrastructure-image-card {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-right: -10px;
}

.infrastructure-card-img {
  width: 500px;           
  height: 500px;          
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  margin-right: -120px;
  margin-top: -10px;      
}


.infrastructure-card-img img {
  width: 120%;        
  height: 100%;
  object-fit: cover;
  object-position: -80px center;   
  display: block;
}

@media (max-width: 980px) {
  .industry-second-wrap { flex-direction: column; gap: 32px; text-align: center; padding: 28px 24px; }
  .infrastructure-image-card { justify-content: center; }
  .infrastructure-card-img { width: 100%; max-width: 520px; height: 300px; border-radius: 12px; }
  .infrastructure-text { padding: 0 12px; }
  .infrastructure-title { font-size: 34px; }
}

.research-section {
    position: relative;
    padding: 80px 0;
    background: transparent;
    min-height: 600px;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 40px;
    border-radius: 20px;
}

.research-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(83, 82, 82, 0.3) 100%
    ),
    linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2)
    ),
        url('Assets/IMG/28.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(1.35) contrast(1.1) saturate(1.05) blur(10px);
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.research-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
    padding-left: 80px;
    padding-right: 80px;
    height: 100%;
    flex-wrap: wrap;
}

.research-card,
.research-visual {
    min-height: clamp(360px, 36vw, 440px);
}

.research-card {
    flex: 1 1 420px;
    max-width: 520px;
    width: 100%;
    height: 100%;
    padding: 36px 44px;
    background: linear-gradient(135deg, rgba(48, 55, 67, 0.82) 0%, rgba(32, 36, 44, 0.78) 100%);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    color: #fff;
    backdrop-filter: blur(12px);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.research-visual {
    flex: 1 1 420px;
    max-width: 520px;
    height: 100%;
    border-radius: 10px;
    background-image: linear-gradient(120deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 50%, rgba(255,255,255,0.10) 100%), url('Assets/IMG/29.jpg');
    background-size: cover;
    background-position: center right;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 455px;
}

.research-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.0) 100%);
    pointer-events: none;
}

.research-card .cta-button {
    width: 135px;
    height: 39px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 36.7px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    align-self: center;
}

.research-card .cta-button:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.45);
}

.research-summary {
    transition: opacity 0.3s ease;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
}

.research-card.expanded .research-summary {
    opacity: 0;
    pointer-events: none;
}

.research-details {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.research-card.expanded .research-details {
    opacity: 1;
    pointer-events: auto;
}

.research-details-inner {
    max-width: 900px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 30px 36px;
}

.research-card .research-eyebrow,
.research-card .research-title,
.research-card .research-text {
    color: #fff;
    width: 100%;
    text-align: left;
}

.research-eyebrow {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.research-title {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 12px;
}

.research-text {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 12px;
}

.publication-feature {
    max-width: 1500px;
    margin: 48px auto 80px;
    padding: 0 20px;
    z-index: 8;
    margin-top: 0;
    padding-top: 200px;
    margin-left: 90px;
    margin-right: 90px;
    margin-bottom: 150px ;
    margin: 0 auto;
}


.pub-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.65);
    background: #000;
}


.pub-banner img {
    display: block;
    width: 1500px;
    height: 600px; 
    object-fit: cover;
    border-radius: 10px;
}

.pub-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 50px 32px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(102, 102, 102, 0.3) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(18,16,16,0.6) 60%);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.55);
    color: #fff;
    display: flex;
    align-items: center;
}


.pub-caption h3 {
    margin: 0;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.35;
    color: #fff;
    max-width: 980px;
}

@media (max-width: 980px) {
    .pub-banner img { height: 320px; }
    .pub-caption { left: 18px; right: 18px; bottom: 14px; padding: 20px; }
    .pub-caption h3 { font-size: 18px; }
}


@media (max-width: 520px) {
    .pub-banner img { height: 260px; }
    .pub-caption { padding: 14px; left: 12px; right: 12px; }
    .pub-caption h3 { font-size: 16px; }
}

.pub-listing {
    padding: 80px 60px 140px;
    max-width: 1500px;
    margin: 0 auto;
}

.pub-grid {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.pub-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pub-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.pub-title {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
    max-width: 90%;
}

.solutions-carousel {
  margin: 120px 0 80px;
  padding: 60px 0 80px;
  position: relative;
  z-index: 6;
}

.solutions-title {
  position: absolute;
  top: -36px;                      
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  font-size: 22px;                 
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);    
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.carousel-wrap { 
  overflow: visible;               
}

.carousel-viewport { 
  overflow: hidden;
  width: 100%;
  outline: none;
  white-space: nowrap;
  cursor: pointer;            
}

.carousel-item {
  min-width: 78%;                  
  box-sizing: border-box;
  border-radius: 12px;
  height: 500px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
  white-space: normal;           
}

.carousel-item-inner {
  z-index: 2;
  color: #fff;
  padding: 40px 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.carousel-item-inner h3 {
  font-size: 44px;                 
  font-weight: 400;
  margin-bottom: 15px;
  color: #C84B4B;                  
  letter-spacing: 0.4px;
  text-shadow: none;
}

.carousel-item-inner h2 {
  font-size: 44px;                 
  font-weight: 300;
  margin: 0 0 12px 0;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6); 
}

.carousel-item-inner p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 900px;
  margin-top: 270px;
}

.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 28px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-width: 78%;
  height: 500px;
  background-color: #070707;        
  border: 1px solid rgba(0, 0, 0, 0.6); 
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 1px; 
  border-radius: calc(12px - 1px);
  background: rgba(0,0,0,0.65); 
  z-index: 1;
  pointer-events: none;
}

.carousel-item-inner {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
  color: #fff;
}

@media (max-width: 980px) {
  .carousel-item { min-width: 86%; height: 380px; }
  .carousel-item-inner h3 { font-size: 28px; }
  .carousel-item-inner h2 { font-size: 36px; }
}
@media (max-width: 680px) {
  .carousel-item { min-width: 94%; height: 320px; }
  .carousel-item-inner h3 { font-size: 22px; }
  .carousel-item-inner h2 { font-size: 26px; }
}

.integrations-section {
  padding: 100px 0;
  width: min(92%, 1200px);
  margin-left: 110px;
  margin-right: 110px;
  margin: 0 auto; 
}

.integrations-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 40px;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.integration-card {
    width: 300px;
    height: 170px;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.15);
    color: #000;
}

.integration-text {
    margin: 0;                 
}

.integration-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.integration-text p {
    font-size: 12px;
    color: #555;
}

.products-grid-section {
    padding: 120px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.products-grid {
    width: min(90%, 1000px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.product-card {
    background: #fff;
    color: #000;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    min-height: 220px;   
}

.product-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 42px;
    height: 42px;
    background: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-box img {
    width: 35px;
    height: 35px;
    filter: invert(1);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 13px;
    line-height: 1.6;
}

.products-comingsoon {
    width: 100%;
    margin-top: 80px;
    position: relative;
    color: #fff;
}

.products-hero-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px 20px;
}

.products-platform-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
    color: #fff;
}

.products-platform-desc {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-top: 6px;
}

.earth-video-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 10px;
    padding: 0 100px;
}

.earth-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.earth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(15.3px);
    z-index: 2;
}

.comingsoon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.comingsoon-text h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 18px rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .products-platform-title {
        font-size: 24px;
    }

    .comingsoon-text h2 {
        font-size: 28px;
    }

    .earth-video-wrapper {
        height: 55vh;
    }
}

.three-card-container {
  display: flex;
  gap: 48px;
  align-items: stretch;    
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 250px;
  margin-bottom: 100px;
}

.three-card {
  position: relative;      
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 10px;
  padding: 36px 34px;
  min-height: 300px;       
  overflow: hidden;
  color: #fff;
  margin-bottom: 100px;
  margin-top: 50px;
}

.three-card:hover {
  background: rgba(0, 0, 0, 0.35); 
}

.tc-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.tc-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
}

.card-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  background: transparent;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  font-size: 15px;
  border: none;
  cursor: pointer;
  padding: 0;
}

.card-button::after {
  content: "→";
  font-weight: 600;
  transition: transform .20s ease;
  margin-left: 4px;
}
.three-card.expanded .card-button::after {
  transform: translateX(6px);
}

.tc-details {
  position: absolute;
  inset: 0;                     
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12); 
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 5;
  text-align: left;
  padding: 40px 30px;
}

.tc-details-inner {
  max-width: 720px;
  line-height: 1.8;
  font-size: 15px;
}

.three-card.expanded .tc-details {
  opacity: 1;
  pointer-events: auto;
}
.three-card.expanded .tc-text,
.three-card.expanded .tc-title {
  opacity: 0;                  
  pointer-events: none;
  transition: opacity .2s ease;
}

.three-card.expanded .card-button {
    opacity: 0;
    pointer-events: none;
}

.three-card:hover {
    background: rgba(255, 255, 255, 0.12); 
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.three-card.expanded:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: none;
    box-shadow: none;
}

@media (max-width: 980px) {
  .three-card-container { flex-direction: column; gap: 24px; }
  .three-card { min-height: auto; }
}

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

.team-header { margin-bottom: 30px; color: #1f2b33; }
.team-title { font-size: 36px; font-weight: 800; margin: 0 0 10px; color: #123; }
.team-sub { color: rgba(0,0,0,0.6); margin: 0 0 6px; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.member-wrap { display: flex; flex-direction: column; gap: 12px; }

.showcase-card {
  width: 100%;
  height: 300px;             
  border-radius: 16px;
  background-size: cover;    
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10,10,10,0.25);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 230, 230, 0.12);
  opacity: 0;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
  display: flex;
  align-items: flex-start;
  padding: 18px;
}

.showcase-card:hover .showcase-overlay,
.showcase-card:focus .showcase-overlay,
.showcase-card[aria-expanded="true"] .showcase-overlay {
  opacity: 1;
}

.showcase-details p { 
  margin: 0; 
  color: #272731; 
  font-size:13px; 
  line-height:1.5; 
  text-align: justify;
}

.member-caption { display:flex; flex-direction:column; gap:6px; padding-left:4px; }
.member-name {
    display: inline-block;
    padding: 4px 14px;         
    border: 1.5px solid rgba(0,0,0,0.8);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    background: transparent;
    width: auto;               
    max-width: fit-content;    
    white-space: nowrap;
}

.member-caption {
    text-align: left;
}

.member-role {
    font-size: 15px;
    font-weight: 300;
    color: #1d1c1c;
    margin-top: -10px;
    margin-left: 5px;
}
.name-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.member-icons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.icon-box {
  background: rgba(255,255,255,0.12);
  border-radius: 20%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: filter 0.25s, background 0.25s;
  text-decoration: none;
}
.icon-box:hover {
  filter: brightness(1.18);
  background: rgba(255,255,255,0.24);
}

@media (max-width: 1100px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .team-title { font-size: 30px; }
}

.team-bg-panel {
  background-image: url('Assets/IMG/45.jpg'); 
  background-size: cover;
  background-position: center;
  margin-left: 50px;   
  margin-right: 50px;  
  padding: 60px 0;     
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.team-divider {
  width: 100%;
  border-top: 2px dotted rgba(0, 0, 0, 0.25);
  margin: 20px 0 30px 0;
}

.team-showcase-grid {
  position: relative;
  padding: 0px 0;
  z-index: 5;
}

.team-bg-panel {
  max-width: 1500px;
  position: relative;
  padding: 40px 0;
  margin: 60px auto 60px auto;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    url('Assets/IMG/45.jpg');   
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  backdrop-filter: blur(42.58229064941406px);
  -webkit-backdrop-filter: blur(42.58229064941406px);
}

.showcase-card {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    background-color: transparent !important;
    opacity: 1 !important;
    filter: brightness(0.9); 
}

.showcase-card .showcase-overlay {
    background: rgb(169, 166, 166); 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}


@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card { height: 260px; }
  .member-caption { align-items: center; text-align:center; padding-left:0; }
}

.stay-tuned-section {
  position: relative;
  padding: 80px 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.stay-tuned-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 92%;
  text-align: center;
  padding: 40px 16px;
}

.stay-title {
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: 0.4px;
  color: #fff;
  text-rendering: optimizeLegibility;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
  margin-bottom: 80px;
}

.stay-sub {
  max-width: 860px;
  margin: 0 auto 28px;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  font-weight: 300;
}

@media (max-width: 720px) {
  .stay-title { font-size: clamp(20px, 7.6vw, 28px); }
  .stay-sub { font-size: 14px; padding: 0 6px; }
  .stay-form-row input[type="email"] { width: 100%; max-width: none; }
  .stay-form-row { gap: 8px; }
}