* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  min-height: 200vh;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 0;
  z-index:1000;
}

.container-nav{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo-nav img{
  height:50px;
}

/* NAV LINKS */

.nav-links-nav{
  display:flex;
  align-items:center;
  gap:25px;
  background:#f5f5f5;
  padding:18px 40px;
  border-radius:40px;
}

.nav-links-nav a,
.dropbtn-nav{
  text-decoration:none;
  color:#64748b;
  font-size:15px;
  background:none;
  border:none;
  cursor:pointer;
}

.nav-links-nav a:hover,
.dropbtn-nav:hover{
  color:#0284c7;
}

/* MAIN DROPDOWN */

.dropdown-nav{
  position:relative;
}

.dropdown-content-nav{
  position:absolute;
  top:20px;
  left:0;

  width:260px;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  display:none;
  flex-direction:column;
  padding:10px 0;
}

.dropdown-nav:hover .dropdown-content-nav{
  display:flex;
}

/* MENU ITEM */

.menu-item{
  position:relative;
}

.menu-item > a{
  display:block;
  padding:10px 18px;
  color:#475569;
}

.menu-item > a:hover{
  background:#f1f5f9;
  color:#0284c7;
}

/* SUBMENU RIGHT SIDE */

.submenu{
  position:absolute;
  top:0;
  left:100%;

  width:260px;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  display:none;
  flex-direction:column;
  padding:10px 0;
}

/* SHOW SUBMENU */

.menu-item:hover .submenu{
  display:flex;
}

/* SUBMENU LINKS */

.submenu a{
  padding:10px 18px;
  color:#475569;
  font-size:14px;
}

.submenu a:hover{
  background:#f1f5f9;
  color:#0284c7;
}

/* BUTTON */

.btn-nav{
  padding:10px 20px;
  border-radius:30px;
  background:linear-gradient(to right,#0284c7,#2563eb);
  color:white;
  text-decoration:none;
  font-size:14px;
}

.btn-nav:hover{
  box-shadow:0 0 20px rgba(2,132,199,0.4);
}

/* MOBILE TOGGLE BUTTON */

.menu-toggle-nav{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#0284c7;

}


/* MOBILE RESPONSIVE */

@media(max-width:1024px){

  .menu-toggle-nav{
    display:block;
  }

  .nav-btn-nav{
    display:none;
  }
  
  .nav-links-nav{
    position:absolute;
    top:90px;
    left:0;
    width:100%;

    flex-direction:column;
    align-items:flex-start;

    background:white;
    padding:25px;

    border-radius:0;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    display:none;
  }

  /* show menu */

  .nav-links-nav.mobile-active-nav{
    display:flex;
  }

  /* show toggle */

  .menu-toggle-nav{
    display:block;
  }

  /* dropdown full width */

  .dropdown-content-nav{
    position:static;
    width:100%;
    box-shadow:none;
    display:none;
    padding-left:15px;
  }

  .dropdown-nav.active-nav .dropdown-content-nav{
    display:flex;
  }

  /* submenu mobile */

  .submenu{
    position:static;
    width:100%;
    box-shadow:none;
    display:none;
    padding-left:20px;
  }

  .menu-item.active-submenu .submenu{
    display:flex;
  }

  /* nav items full width */

  .nav-links-nav a,
  .dropbtn-nav{
    width:100%;
    padding:12px 0;
    text-align:left;
  }

}

/* -------------------------- */
/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f172a;
  text-align: center;
  padding: 0 20px;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAYS */
.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.6);
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8), transparent, rgba(15,23,42,0.4));
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  color: white;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(56,189,248,0.3);
  background: rgba(14,165,233,0.1);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* TITLE */
.hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 65px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 75px;
  }
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, #38bdf8, #22d3ee, #38bdf8);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* SUBTEXT */
.hero-subtext {
  font-size: 18px;
  color: #e2e8f0;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(226,232,240,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #38bdf8, transparent);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ------------------- */

/* ===============================
FOUNDATION SECTION
=============================== */

.foundation-section{
  padding:120px 8%;
  background:#ffffff;
}

.foundation-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* ===============================
TAG
=============================== */

.foundation-tag{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:25px;
}

.foundation-tag .line{
  width:40px;
  height:2px;
  background:#0284c7;
}

.tag-text{
  font-size:12px;
  letter-spacing:3px;
  font-weight:bold;
  color:#0284c7;
  text-transform:uppercase;
}

/* ===============================
TITLE
=============================== */

.foundation-title{
  font-size:48px;
  font-weight:bold;
  margin-bottom:30px;
  line-height:1.1;
}

.foundation-title span{
  background:linear-gradient(to right,#0284c7,#1e40af);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ===============================
DESCRIPTION
=============================== */

.foundation-description{
  font-size:18px;
  color:#475569;
  line-height:1.7;
  margin-bottom:40px;
  max-width:550px;
}

/* ===============================
FEATURES
=============================== */

.foundation-features{
  margin-bottom:50px;
}

.feature{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:18px;
  font-weight:600;
  color:#334155;
  transition:0.3s;
}

.feature .icon{
  width:26px;
  height:26px;
  background:#e0f2fe;
  color:#0284c7;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature:hover .icon{
  background:#0284c7;
  color:white;
}

/* ===============================
BUTTON
=============================== */

.foundation-btn{
  display:flex;
  align-items:center;
  gap:15px;
  font-weight:bold;
  text-transform:uppercase;
  font-size:13px;
  background:none;
  border:none;
  cursor:pointer;
}

.foundation-btn .arrow{
  width:40px;
  height:40px;
  background:#f1f5f9;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.foundation-btn:hover .arrow{
  background:#0284c7;
  color:white;
  transform:translateX(5px);
}

/* ===============================
IMAGE SIDE
=============================== */

.foundation-image-wrapper{
  position:relative;
}

.image-container{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:1/1;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.image-container img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.2);
  transition:1.5s ease;
}

.image-container:hover img{
  transform:scale(1.1);
}

/* ===============================
SHUTTER
=============================== */

.shutter{
  position:absolute;
  inset:0;
  background:white;
  z-index:5;
  transition:1.2s cubic-bezier(.76,0,.24,1);
}

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(15,23,42,0.3),transparent);
}

/* ===============================
FLOATING CARD
=============================== */

.floating-stat{
  position:absolute;
  bottom:-40px;
  left:-20px;
  background:white;
  padding:20px;
  border-left:4px solid #0284c7;
  border-radius:10px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
  display:flex;
  gap:15px;
  align-items:center;
}

.stat-icon{
  background:#e0f2fe;
  padding:12px;
  border-radius:50%;
}

.stat-small{
  font-size:12px;
  text-transform:uppercase;
  color:#94a3b8;
  font-weight:bold;
}

.stat-big{
  font-size:20px;
  font-weight:bold;
}

/* ===============================
DECORATIVE DOTS
=============================== */

.dots{
  position:absolute;
  top:-60px;
  right:-60px;
  width:160px;
  height:160px;
  background:radial-gradient(circle,#0ea5e9 2px,transparent 2px);
  background-size:12px 12px;
  opacity:0.2;
}

/* ===============================
ANIMATIONS
=============================== */

.reveal-up,
.reveal-left,
.reveal-img,
.reveal-float{
  opacity:0;
  transition:1s ease;
}

.reveal-up{transform:translateY(40px);}
.reveal-left{transform:translateX(-40px);}
.reveal-img{transform:scale(1.2);}
.reveal-float{transform:translateY(50px);}

.active.reveal-up,
.active.reveal-left,
.active.reveal-img,
.active.reveal-float{
  opacity:1;
  transform:none;
}

.active.reveal-img img{
  transform:scale(1);
}

.active .shutter{
  height:0%;
}

/* ===============================
TABLET RESPONSIVE
=============================== */

@media(max-width:1024px){

.foundation-section{
  padding:100px 6%;
}

.foundation-container{
  gap:50px;
}

.foundation-title{
  font-size:40px;
}

.foundation-description{
  font-size:17px;
}

}

/* ===============================
MOBILE RESPONSIVE
=============================== */

@media(max-width:768px){

.foundation-section{
  padding:80px 20px;
}

.foundation-container{
  grid-template-columns:1fr;
  gap:40px;
}

.foundation-text{
  text-align:center;
}

.foundation-title{
  font-size:32px;
}

.foundation-description{
  font-size:16px;
  margin:auto;
}

.foundation-features{
  text-align:left;
  max-width:400px;
  margin:40px auto;
}

.foundation-btn{
  justify-content:center;
}

.foundation-image-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.image-container{
  aspect-ratio:4/3;
}

.floating-stat{
  left:0;
}

}

/* ===============================
SMALL MOBILE
=============================== */

@media(max-width:480px){

.foundation-title{
  font-size:26px;
}

.foundation-description{
  font-size:15px;
}

.feature{
  font-size:14px;
}

.stat-big{
  font-size:16px;
}

.floating-stat{
  position:relative;
  bottom:auto;
  left:auto;
  margin-top:20px;
}

.dots{
  display:none;
}

}
/* -------------------------- */

.infrastructure {
  margin: 0;
  position: relative;
  padding: 120px 20px;
  background: #0f172a;
  overflow: hidden;
}

/* Subtle Tech Mesh Background */
.infrastructure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#38bdf8 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.08;
}

/* Container */
.containerC {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ============================= */
/* HEADER */
/* ============================= */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.section-header h2 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(to right, #38bdf8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 350px;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */

.gridC {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

/* Base Card */
.cardC {
  background: #1e293b;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Hover Effect */
.cardC:hover {
  transform: translateY(-5px);
  border-color: rgba(56,189,248,0.4);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* SPECIFIC BLOCKS */
/* ============================= */

/* Main Factory Block */
.main-block {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
}

.main-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.main-block:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.main-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.badge {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  display: inline-block;
}

/* Statistic Block */
.statC-block {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.statC-number {
  font-size: 64px;
  font-weight: bold;
}

.statC-number span {
  color: #38bdf8;
  font-size: 40px;
}

.statC-desc {
  font-size: 14px;
  color: #94a3b8;
}

/* Quality Block */
.quality-block {
  grid-column: span 4;
  display: flex;
  padding: 0;
}

.quality-text {
  padding: 40px;
  flex: 1;
}

.quality-image {
  flex: 1;
  overflow: hidden;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: 0.6s;
}

.quality-block:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */

@media (max-width: 1024px){

  .section-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-header h2{
    font-size: 40px;
  }

  .section-desc{
    max-width: 100%;
  }

  .gridC{
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: 220px;
  }

  .main-block{
    grid-column: span 2;
    grid-row: span 2;
  }

  .statC-block{
    grid-row: span 1;
  }

  .quality-block{
    grid-column: span 2;
  }

}


/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px){

  .infrastructure{
    padding: 80px 20px;
  }

  .section-header h2{
    font-size: 32px;
  }

  .section-desc{
    font-size: 16px;
  }

  .gridC{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .cardC{
    padding: 24px;
  }

  .main-block{
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
  }

  .main-content{
    bottom: 20px;
    left: 20px;
  }

  .statC-number{
    font-size: 48px;
  }

  .quality-block{
    grid-column: span 1;
    flex-direction: column;
  }

  .quality-text{
    padding: 30px;
  }

  .quality-image{
    height: 250px;
  }

}


/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width: 480px){

  .section-header h2{
    font-size: 26px;
    line-height: 1.3;
  }

  .tag{
    font-size: 11px;
  }

  .section-desc{
    font-size: 15px;
  }

  .statC-number{
    font-size: 40px;
  }

  .cardC{
    border-radius: 18px;
  }

}

/*-----------------------------*/
.sectionStage{
  padding:100px 20px;
}

.containerStage{
  max-width:1200px;
  margin:auto;
}

/* ===================== */
/* HEADER */
/* ===================== */

.headerStage{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:50px;
}

.badgeStage{
  display:inline-block;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  padding:6px 14px;
  font-size:12px;
  font-weight:bold;
  border-radius:30px;
  margin-bottom:15px;
  text-transform:uppercase;
}

.headerStage h3{
  font-size:32px;
  margin:0;
}

/* Controls */

.controlsStage{
  display:flex;
  gap:10px;
}

.controlsStage button{
  width:45px;
  height:45px;
  border-radius:50%;
  border:1px solid #e2e8f0;
  background:white;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.controlsStage button:hover{
  border-color:#0ea5e9;
}

.controlsStage .nextStage{
  background:#0ea5e9;
  color:white;
  border:none;
}

/* ===================== */
/* CAROUSEL */
/* ===================== */

.carouselStage{
  position:relative;
  min-height:500px;
  background:white;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  border:1px solid #e2e8f0;
}

.slideStage{
  position:absolute;
  inset:0;
  display:flex;
  opacity:0;
  transform:translateX(50px);
  transition:.5s ease;
}

.slideStage.activeStage{
  opacity:1;
  transform:translateX(0);
  z-index:1;
}

/* IMAGE SIDE */

.slideStage-image{
  width:50%;
  overflow:hidden;
}

.slideStage-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.1);
  transition:5s linear;
}

.slideStage.activeStage .slideStage-image img{
  transform:scale(1);
}

/* CONTENT SIDE */

.slideStage-content{
  width:50%;
  padding:60px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.stepStage-id{
  position:absolute;
  top:20px;
  right:40px;
  font-size:120px;
  font-weight:bold;
  color:#f1f5f9;
}

.iconStage-box{
  width:60px;
  height:60px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
  font-size:28px;
}

.slideStage-content h4{
  font-size:28px;
  margin:0 0 15px;
}

.slideStage-content p{
  font-size:18px;
  color:#64748b;
  margin-bottom:40px;
}

/* Progress Bar */

.progressStage{
  height:4px;
  width:100%;
  background:#e2e8f0;
  border-radius:10px;
  overflow:hidden;
}

.progressStage-bar{
  height:100%;
  width:0%;
  background:#0ea5e9;
  transition:width 5s linear;
}

.slideStage.activeStage .progressStage-bar{
  width:100%;
}

/* DOTS */

.dotsStage{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:30px;
}

.dotsStage button{
  height:8px;
  width:8px;
  border-radius:20px;
  border:none;
  background:#e2e8f0;
  cursor:pointer;
  transition:.3s;
}

.dotsStage button.activeStage{
  width:35px;
  background:#0ea5e9;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width:1024px){

  .headerStage h3{
    font-size:28px;
  }

  .carouselStage{
    height:450px;
  }

  .slideStage-content{
    padding:40px;
  }

  .slideStage-content h4{
    font-size:24px;
  }

  .slideStage-content p{
    font-size:16px;
  }

  .stepStage-id{
    font-size:90px;
    right:25px;
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:768px){

  .sectionStage{
    padding:80px 20px;
  }

  .headerStage{
    flex-direction:column;
    align-items:flex-start;
  }

  .controlsStage{
    align-self:flex-end;
  }

  .carouselStage{
    height:auto;
    border-radius:20px;
  }

  .slideStage{
    flex-direction:column;
  }

  .slideStage-image{
    width:100%;
    height:250px;
  }

  .slideStage-content{
    width:100%;
    padding:30px;
  }

  .slideStage-content h4{
    font-size:22px;
  }

  .slideStage-content p{
    font-size:15px;
    margin-bottom:30px;
  }

  .iconStage-box{
    width:50px;
    height:50px;
  }

  .stepStage-id{
    font-size:70px;
    top:10px;
    right:20px;
  }

}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width:480px){

  .badgeStage{
    font-size:10px;
    padding:5px 12px;
  }

  .headerStage h3{
    font-size:22px;
  }

  .controlsStage button{
    width:38px;
    height:38px;
  }

  .slideStage-image{
    height:200px;
  }

  .slideStage-content{
    padding:25px;
  }

  .slideStage-content h4{
    font-size:20px;
  }

  .slideStage-content p{
    font-size:14px;
  }

  .stepStage-id{
    font-size:55px;
  }

  .dotsStage button.activeStage{
    width:25px;
  }

}

/* --------------------------------- */

.globe-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #020617;
}

/* ⭐ Stars */
.stars div {
  position: absolute;
  background: #fde047;
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* Glow */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(59,130,246,0.15);
  filter: blur(120px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Heading */
.heading {
  position: absolute;
  top: 40px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(15,23,42,0.8);
  border: 1px solid #facc15;
  color: #facc15;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.heading h2 {
  color: white;
  font-size: 48px;
  margin: 0;
}

.heading span {
  background: linear-gradient(to right, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

/* Globe container */
#globeViz {
  width: 100%;
  height: 100%;
}

/* Bottom Stats */
.stats {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  z-index: 20;
}

.stat-box {
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: white;
}

.stat-box p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.stat-box h3 {
  margin: 5px 0 0;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 1024px){

  .heading h2{
    font-size:38px;
  }

  .glow{
    width:450px;
    height:450px;
  }

  .stats{
    gap:25px;
  }

  .stat-box{
    padding:12px 20px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:768px){

  .globe-section{
    height:auto;
    min-height:100vh;
    padding-bottom:120px;
  }

  .heading{
    top:30px;
    padding:0 20px;
  }

  .heading h2{
    font-size:30px;
    line-height:1.3;
  }

  .badge{
    font-size:11px;
  }

  #globeViz{
    height:70vh;
  }

  .glow{
    width:350px;
    height:350px;
  }

  .stats{
    flex-direction:column;
    align-items:center;
    gap:15px;
    bottom:20px;
  }

  .stat-box{
    width:200px;
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width:480px){

  .heading h2{
    font-size:24px;
  }

  .glow{
    width:280px;
    height:280px;
    filter: blur(90px);
  }

  #globeViz{
    height:60vh;
  }

  .stat-box{
    width:180px;
    padding:10px 16px;
  }

  .stat-box h3{
    font-size:16px;
  }

}
/* ------------------------------------------------- */
.sectionNum {
  padding: 100px 20px 0;
  max-width: 1200px;
  margin: auto;
}

.statsNum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid #f1f5f9;
}

.statNum {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.statNum.show {
  opacity: 1;
  transform: translateY(0);
}

.statNum-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 15px;
}

.statNum-number {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 15px;
}

.statNum-desc {
  color: #64748b;
  line-height: 1.6;
}

/* CTA Section */

.cta1 {
  background: #0f172a;
  color: white;
  border-radius: 40px 40px 0 0;
  padding: 100px 40px;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.cta1 h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta1 h2 span {
  color: #0ea5e9;
}

.cta1 p {
  color: #94a3b8;
  font-size: 18px;
  max-width: 600px;
}

.cta1-btn {
  align-self: center;
  padding: 18px 40px;
  background: #0ea5e9;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(14,165,233,0.4);
}

.cta1-btn:hover {
  background: #0284c7;
}
/* ----------------------------- */
.footer{
  position:relative;
  background:#020617;
  color:#94a3b8;
  padding:100px 20px 40px;
  overflow:hidden;
  background:#0f172a;

}

/* Top Scan Border */
.scan-border{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:#1e293b;
  overflow:hidden;
}
.scan-border::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:2px;
  background:linear-gradient(to right,transparent,#0ea5e9,transparent);
  animation:scan 4s linear infinite;
}
@keyframes scan{
  from{left:-10%;}
  to{left:110%;}
}

/* Background Glow */
.footer::before{
  content:"";
  position:absolute;
  top:-200px;
  right:-200px;
  width:500px;
  height:500px;
  background:rgba(14,165,233,0.08);
  filter:blur(120px);
  border-radius:50%;
}

/* Layout */
.container1{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:1;
}

.grid1{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
  margin-bottom:60px;
}

/* Headings */
.footer h3{
  color:white;
  margin-bottom:20px;
}

/* Links */
.footer a{
  text-decoration:none;
  color:#94a3b8;
  transition:0.3s;
}
.footer a:hover{
  color:#0ea5e9;
  transform:translateX(4px);
}

/* List */
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer ul li{
  margin-bottom:12px;
  font-size:14px;
}

/* Status Badge */
.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#0f172a;
  border:1px solid #1e293b;
  padding:6px 12px;
  border-radius:20px;
  margin-top:20px;
  font-size:12px;
  color:#10b981;
}
.dot{
  width:8px;
  height:8px;
  background:#10b981;
  border-radius:50%;
  position:relative;
}
.dot::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#10b981;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%{transform:scale(1);opacity:0.6;}
  100%{transform:scale(2);opacity:0;}
}

/* Bottom Bar */
.bottom{
  border-top:1px solid #0f172a;
  padding-top:20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:13px;
  color:#64748b;
}

.socials{
  display:flex;
  gap:15px;
}
.socials a{
  background:#0f172a;
  padding:10px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.socials a:hover{
  background:#0ea5e9;
  color:white;
}

/* Scroll Animation */
.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:0.8s ease;
}
.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* -------------------------- */
/* -------------------------- */

/* Scroll To Top Button */

#scrollTopBtn{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:#0ea5e9;
  color:white;
  font-size:22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all .3s ease;
  z-index:999;
}

/* Show button */

#scrollTopBtn.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Hover */

#scrollTopBtn:hover{
  background:#0284c7;
  transform:translateY(-3px);
}


/* =========================================
   DYNAMIC BREADCRUMBS CSS
========================================= */
.breadcrumb-wrapper {
    width: 90%;
    margin: 120px auto 20px; /* 120px top margin clears a fixed navbar */
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

#dynamic-breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    margin: 0;
    padding: 0;
}

#dynamic-breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

#dynamic-breadcrumbs a {
    text-decoration: none;
    color: #0284c7;
    transition: color 0.2s ease;
}

#dynamic-breadcrumbs a:hover {
    color: #1e40af;
    text-decoration: underline;
}

#dynamic-breadcrumbs .separator {
    color: #cbd5e1;
    margin: 0 4px;
}

#dynamic-breadcrumbs .active {
    color: #334155;
    font-weight: 600;
}

/* Mobile Adjustments */
@media(max-width: 1024px) {
    .breadcrumb-wrapper {
        margin-top: 100px; 
    }
}

        /* Circular container styling */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 20px;
            background-color: #25d366;
            width: 60px;  /* Set a fixed width */
            height: 60px; /* Set a fixed height equal to width */
            border-radius: 50%; /* This makes it a perfect circle */
            display: flex;
            align-items: center;
            justify-content: center; /* Centers the icon perfectly */
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        /* Icon size inside the circle */
        .whatsapp-icon {
            width: 35px;
            height: 35px;
        }

        /* Hover effect */
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: translateY(-5px);
        }

        /* Slightly smaller circle on mobile screens */
        @media screen and (max-width: 480px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }
            .whatsapp-icon {
                width: 30px;
                height: 30px;
            }
        }