/* Home page */
:root {
  --nav-blue: #0E4A62;
  --nav-red: #C43333;
  --accent-grad: linear-gradient(120deg, var(--nav-blue), #3e6b95, var(--nav-red));
  --muted: #f6f7f9;
  --glass: rgba(255, 255, 255, 0.06);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
  -webkit-font-smoothing: antialiased;
}

.text {
  color: black !important;
}

.text-none {
  text-decoration: none !important;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid rgba(15, 20, 25, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand h1 {
  color: var(--nav-blue);
}

/* Banner: parallax + world map faint background */
.banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: white;
  text-align: left;
  background: linear-gradient(120deg, rgba(4, 38, 59, 0.9), rgba(14, 74, 98, 0.85) 50%, rgba(196, 51, 51, 0.85));
}

.banner .wrap {
  position: relative;
  z-index: 3;
}

.banner::after {
  /* content: ""; */
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('https://i.ibb.co/0F4yV4p/world-map.png');
  /* decorative world map */
  background-position: center;
  background-size: cover;
  opacity: 0.08;
  transform: translateY(-10%);
  /* parallax base */
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: 1.03rem;
  margin-top: .75rem;
  opacity: .95;
}

/* About snippet card */
.about-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #ffffff);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(10, 20, 30, 0.06);
}

/* Categories */
.category-card {
  border-radius: 12px;
  padding: 22px;
  background: white;
  transition: transform .36s cubic-bezier(.2, .9, .2, 1), box-shadow .36s;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 74, 98, 0.12);
}

/* Export Process (improved visuals + step animation) */
.process {
  background: linear-gradient(180deg, rgba(14, 74, 98, 0.03), rgba(196, 51, 51, 0.01));
  padding: 40px;
  border-radius: 14px;
}

.process .step {
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(4, 38, 59, 0.06);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.2, .9, .2, 1), opacity .35s;
  opacity: .98;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

/* form */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Modal Background */
.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* Modal Box */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  animation: pop 0.3s ease;
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-box h2 {
  margin: 0 0 15px 0;
  font-size: 22px;
  text-align: center;
}

input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #aaa;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

.close-btn {
  text-align: right;
  cursor: pointer;
  font-size: 18px;
  margin-top: -10px;
}

.icon-blue {
  background: var(--nav-blue);
}

.icon-red {
  background: var(--nav-red);
}

/* Product scroller: horizontal smooth single-card swipe */
.product-scroller {
  --gap: 18px;
  display: block;
  position: relative;
  padding: 20px 8px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-radius: 14px;
}

.scroller-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: var(--gap);
  padding: 12px;
  scroll-snap-type: x mandatory;
}

.product-card {
  flex: 0 0 280px;
  /* card width */
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(12, 30, 45, 0.06);
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform .35s, box-shadow .35s;
  will-change: transform;
}

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

.product-card .body {
  padding: 14px;
}

.product-card h5 {
  margin: 0 0 6px 0;
  color: var(--nav-blue);
  font-weight: 700;
}

.product-card p {
  margin: 0;
  color: #666;
  font-size: .92rem;
}

/* Active / center card effect */
.product-card.center {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(4, 38, 59, 0.12);
}

/* scroller controls */
.scroller-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.scroller-controls button {
  pointer-events: auto;
  /* background: rgba(66, 61, 61, 0.95); */
  background: linear-gradient(120deg, rgba(4, 38, 59, 0.9), rgba(14, 74, 98, 0.85) 50%, rgba(196, 51, 51, 0.85));
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(2, 18, 30, 0.08);
}

.scroller-controls .prev {
  position: absolute;
  left: 8px;
}

.scroller-controls .next {
  position: absolute;
  right: 8px;
}

.footer {
  background: #fff;
  padding: 40px 20px;
  border-top: 2px solid #eee;
}

.footer-top {
  text-align: center;
  margin-bottom: 25px;
}

.footer-top .brand {
  font-size: 28px;
  font-weight: 700;
  color: #0E4A62;
  margin-bottom: 5px;
  border-bottom: 3px solid #C43333;
  display: inline-block;
  padding-bottom: 3px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-links div h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0E4A62;
  border-left: 4px solid #C43333;
  padding-left: 8px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #333;
  margin: 4px 0;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #C43333;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

@media(max-width: 768px) {
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
}

/* small responsive tweaks */
@media (max-width:900px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .product-card {
    flex: 0 0 240px;
  }
}

@media (max-width:600px) {
  nav {
    display: none;
  }
}

/* --- Scroll reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.99);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* subtle floating star / accent animation */
.pulse-accent {
  display: inline-block;
  background: linear-gradient(90deg, var(--nav-blue), var(--nav-red));
  color: white;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(196, 51, 51, 0.06);
  transform: translateY(0);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }

  100% {
    transform: translateY(0)
  }
}

/* About */
:root {
  --navy: #0E4A62;
  --brand-red: #C43333;
  --accent-1: #073544;
  --gradient: linear-gradient(135deg, var(--brand-red), var(--navy));
  --glass: rgba(255, 255, 255, 0.75);
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff 60%);
  -webkit-font-smoothing: antialiased;
}

/* BANNER */
.banner {
  background: radial-gradient(1200px 400px at 10% 10%, rgba(196, 51, 51, 0.08), transparent 10%),
    radial-gradient(1000px 400px at 90% 90%, rgba(14, 74, 98, 0.08), transparent 10%),
    linear-gradient(135deg, #073544 0%, #0E4A62 45%, #246a78 100%);
  color: white;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.banner .tag {
  font-size: 1.05rem;
  opacity: 0.9;
  font-weight: 600;
}

.banner h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #fff, #fff8);
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.banner .subtext {
  max-width: 720px;
  opacity: .95;
  margin-top: 10px;
}

/* world map faint */
/* .banner::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 640px;
  height: 640px;
  background: url('https://cdn.pixabay.com/photo/2016/11/14/03/16/world-1820994_1280.png') no-repeat center/contain;
  opacity: 0.06;
  transform: rotate(-10deg);
} */


.card-glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(14, 74, 98, 0.06);
}

.h2-gradient {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--brand-red), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ABOUT COLUMNS */
.about-img {
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 10, 30, 0.08);
}

.lead-para {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #153245;
}

/* SERVICES / SYSTEM CARDS */
.service-card {
  border-radius: 14px;
  padding: 20px;
  background: white;
  transition: transform .35s, box-shadow .35s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(14, 74, 98, 0.09);
}

/* POPULARITY */
.popularity-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: #123045;
}

.pop-pill {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--brand-red));
  color: white;
  font-weight: 700;
  margin-right: 8px;
}

/* EXPORT TREND */
.trend-card {
  background: linear-gradient(180deg, #fff, #fbfdff);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(2, 10, 30, 0.04);
}

.trend-bars .bar {
  height: 12px;
  border-radius: 8px;
  background: #eef6fb;
  margin-bottom: 12px;
  overflow: hidden;
}

.trend-bars .bar>i {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--brand-red), var(--navy));
  width: 0%;
  transition: width 1.2s ease;
}

/* SOLUTIONS */
.solutions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.solutions .sol {
  flex: 1;
  min-width: 240px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 30px rgba(2, 10, 30, 0.04);
}

/* CATEGORIES (animated grid) */
.categories {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cat-card {
  flex: 1 1 23%;
  background: linear-gradient(180deg, #fff, #fefefe);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: transform .4s;
  box-shadow: 0 10px 30px rgba(2, 10, 30, 0.04);
}

.cat-card:hover {
  transform: translateY(-12px) rotate(-0.8deg);
  box-shadow: 0 26px 60px rgba(14, 74, 98, 0.08);
}

.cat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
}

/* EXPORT PROCESS (YOUR EXACT CODE INTEGRATED) */
.process-section {
  background: linear-gradient(120deg, #f9f9f9, #eef5ff);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.text-gradient {
  background: linear-gradient(45deg, #C43333, #0E4A62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(196, 51, 51, 0.35), transparent);
  border-radius: 50%;
  filter: blur(90px);
}

.process-section::before {
  top: -50px;
  left: -50px;
}

.process-section::after {
  bottom: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(14, 74, 98, 0.35), transparent);
}

.timeline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 30px; */
  position: relative;

}

/* .timeline::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C43333, #0E4A62);
  animation: growLine 2s ease-in-out forwards;
  transform-origin: left;
  width: 0%;
} */

@keyframes growLine {
  from {
    width: 0%
  }

  to {
    width: 100%
  }
}


.timeline-box {
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  border-radius: 18px;
  /* padding: 25px; */
  /* width: 23%; */
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.timeline-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #C43333, #0E4A62);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 20px rgba(14, 74, 98, 0.3);
  transition: 0.4s ease;
}

.timeline-box:hover .icon-circle {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(196, 51, 51, 0.5);
}

/* MISSION / VISION */
.circle-stat {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 12px 30px rgba(2, 10, 30, 0.04);
}

/* FOUNDER */
.founder {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.founder .avatar {
  width: 220px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(2, 10, 30, 0.06);
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, var(--navy), var(--brand-red));
  color: white;
  padding: 36px 0;
  margin-top: 40px;
}

footer a {
  color: rgba(255, 255, 255, 0.95);
}

/* RESPONSIVE ADJUST */
@media(max-width: 992px) {
  .cat-card {
    flex: 1 1 45%;
  }

  /* .neine
  {
    display: none;
  } */

  /* .timeline-box {
    width: 25%;
  } */
}

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

  .timeline-box {
    width: 90%;
  }

  .banner h1 {
    font-size: 1.75rem;
  }
}

.trend-bars.show .bar>i {}

/*  contact */
:root {
  --red: #C43333;
  --blue: #0E4A62;
  --light-bg: #f4faff;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

/* HEADER */
header {
  background: var(--blue);
}

header a {
  color: white !important;
  font-weight: 600;
}

header a:hover {
  color: #ddd !important;
}

/* BANNER */
.banner {
  background: linear-gradient(to right, var(--blue), var(--red));
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner h1 {
  font-size: 48px;
  font-weight: 700;
}

/* CONTACT FORM */
.contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

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

.btn-brand {
  background: linear-gradient(45deg, var(--red), var(--blue));
  color: white;
  font-weight: 600;
  border-radius: 8px;
}

.btn-brand:hover {
  opacity: 0.85;
  color: #fff;
}

/* INFO CARDS */
.info-box {
  padding: 25px;
  background: var(--light-bg);
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(14, 74, 98, 0.2);
}

.info-box i {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 15px;
}

/* MAP */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
  background: var(--blue);
  color: white;
  padding: 20px 0;
}

/* Gallery */
:root {
  --red: #C43333;
  --blue: #0E4A62;
  --gradient: linear-gradient(45deg, #C43333, #0E4A62);
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
}

/* HEADER */
header {
  background: var(--blue);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

header a {
  color: #fff !important;
  font-weight: 600;
  margin: 0 12px;
}

/* BANNER */
.banner {
  /* background: url('https://i.ibb.co/QY7QtYC/world-bg.jpg') center/cover fixed; */
  background: linear-gradient(120deg, rgba(4, 38, 59, .9), rgba(14, 74, 98, .85) 50%, rgba(196, 51, 51, .85));
  padding: 120px 0;
  text-align: center;
  color: white;
  position: relative;
}

/* .banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 74, 98, 0.65);
} */

.banner h1 {
  position: relative;
  z-index: 2;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  /* background: var(--gradient); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FILTER BUTTONS */
.filter-btns button {
  border: none;
  padding: 10px 28px;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  border-radius: 50px;
  margin: 8px;
  transition: 0.3s;
  border: 2px solid var(--blue);
}

.filter-btns button.active,
.filter-btns button:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

/* GALLERY GRID */
.gallery-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-img:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* FOOTER */
footer {
  background: var(--blue);
  color: white;
  padding: 25px 0;
  text-align: center;
}