:root {
  --primary: #1f4fff;
  --primary-soft: rgba(31, 79, 255, 0.08);
  --primary-hover: #173bcc;
  --accent: #ffb547;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-soft: #f3f4f6;
  --border-soft: #e5e7eb;
  --card-radius: 1.4rem;
}

/* Global */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #f9fafb;
}

.Topic {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}


/* NAVBAR MAIN */
.nav-navbar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand img {
    width: 130px;
}


/* SEARCH ICON */
.nav-search-btn {
    padding: 3px 8px 3px 8px ;
    background: #838485;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}
.nav-search-btn:hover {
    background: #beb6b6;
    color: black;
    transition: .6s;
}

/* NAV LINKS */
.nav-menu .nav-link {
    font-size: 16px;
    /* font-weight: 500; */
    padding: 8px 14px;
    color: #333;
}
.nav-menu .nav-link:hover {
    color: #111;
}

/* Hover effect on li */
.nav-menu li:hover {
    font-weight: 600;
}


/* MAIN BUTTON */
.nav-main-btn {
    display: inline-block;
    background: #cacaca;
    color: #333;
    border: 1px solid #000;
    padding: 4px 6px;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .3s ease;
}

.nav-main-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    height: 100%;
    background: #ababab;
    z-index: 0;
    transition: width .3s ease;
}

.nav-main-btn:hover::before {
    width: 100%;
}

.nav-main-btn span {
    position: relative;
    z-index: 1;
}



/* RESPONSIVE FIXES of NavBar */
@media (max-width: 1024px) {
    .nav-brand img {
        width: 100px;
    }

    .nav-main-btn {
        padding: 6px 14px;
        font-size: .85rem;
    }

    .nav-search-btn {
        padding: 2px 5px 2px 5px;
    }

    .nav-right {
        gap: .7rem;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        margin-top: 10px;
        text-align: center;
    }

    .nav-main-btn {
        margin: auto;
        margin-bottom: 10px;
    }

    .nav-search-btn {
        display: none;
    }

    .nav-icon {
        display: block;
        margin: 0 auto;
    }
}







/* ===================== HERO / TOP (TECH IMAGE + GLASS) ===================== */

.head {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}

/* Tech background image */
.head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/1181671/pexels-photo-1181671.jpeg?auto=compress&cs=tinysrgb&w=1600")
    no-repeat center center / cover;
  opacity: 0.65;
  z-index: 0;
}

/* Dark + gradient overlay */
.head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(31, 79, 255, 0.4), transparent 45%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  z-index: 0;
}

/* Glass block */
.head-detail {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding: 2rem 2.3rem;
  border-radius: 1.6rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 60%);
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.head-detail h1 {
  letter-spacing: -0.03em;
}

.head-detail .lead {
  color: #e5e7eb;
  margin-bottom: 0;
}

/* Small badge like contact page */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f9fafb;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(15, 23, 42, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-badge span {
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, var(--accent));
}

/* ===================== STORIES SECTION ===================== */

.stories {
  padding-bottom: 2rem;
}

.stories > .container > p {
  max-width: 850px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Story cards */
.storyBox .sub-box {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.storyBox .sub-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(31, 79, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.storyBox .sub-box h3 span {
  font-size: 1.02rem;
  font-weight: 600;
}

.storyBox .sub-box p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.storyBox .sub-box:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 79, 255, 0.6);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}

.storyBox .sub-box:hover::before {
  opacity: 1;
}

/* ===================== BRAND STORY (DARK SECTION) ===================== */

.brandStory {
  background: radial-gradient(circle at top left, #020617, #020617 40%, #020817 100%);
  padding: 3rem 0 3.2rem;
  color: #e5e7eb;
}

/* Toggle buttons */
.brand-tab {
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.brand-tab:hover {
  border-color: #ffffff;
}

.brand-tab.active-tab {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(59, 130, 246, 0.6);
}

.brandStory h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.brandStory h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.brandStory .point p {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.brandStory p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* ===================== ADVANTAGE COUNTERS ===================== */

.advantage {
  padding: 3rem 0;
}

.advantage .Topic {
  text-align: center;
}

.sub-adv,
.sub-text {
  background-color: #ffffff;
  border-radius: 1.4rem;
  padding: 1.4rem 0.75rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
  transition: all 0.2s ease;
}

.sub-adv p,
.sub-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.sub-adv .count,
.sub-text .count {
  color: var(--primary);
  font-weight: 700;
}

.sub-adv:hover,
.sub-text:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 79, 255, 0.6);
}

/* ===================== PARTNER / CLIENT SLIDERS ===================== */
/* ============================
   PARTNER SECTION (UPDATED)
===============================*/

.partner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 35%, rgba(11, 17, 32, 0.95) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding-bottom: 2rem;
}

.partner h1 {
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* Horizontal scroll */
.partner-scroll {
  overflow-x: auto;
  padding: 1rem 0 2.2rem;
  scroll-behavior: smooth;
  display: flex;
  gap: 1.25rem;
}

.partner-scroll::-webkit-scrollbar {
  height: 0;
}

/* Each logo box */
.partner-box {
  min-width: 150px;
  max-width: 150px;
  height: 82px;
  border-radius: 1rem;
  padding: 0.75rem;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.partner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.35);
}

.partner-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Arrows */
.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  border: 1px solid rgba(100, 116, 139, 0.45);
  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.arrow-btn:hover {
  background: rgba(30, 41, 59, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}


/* ===================== OUR VALUES ===================== */

.OurValues {
  padding: 3.5rem 0;
  background-color: #f3f4f6;
}

.OurValues .Topic {
  text-align: center;
}

.OurValues > .container > p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.value-box {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  height: 100%;
}

.value-span span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.value-box p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.value-box:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 79, 255, 0.6);
}

/* ===================== TEAM SECTION ===================== */
.team-wrapper { 
  padding: 3.5rem 0 3rem;
  background: #ffffff;
  position: relative;         /* ⭐ IMPORTANT */
}

/* Heading */
.Topic {
  /* text-align: center; */
  /* font-size: 24px; */
  margin-bottom: 2.2rem;
}

/* Scroll Row */
.team-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
  position: relative;         /* ⭐ keeps scroll under buttons */
  z-index: 1;
}
.team-scroll::-webkit-scrollbar {
  display: none;
}

/* Cards */
.team-card {
  min-width: 190px;
  max-width: 190px;
  background: #f9fafb;
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
  padding: 1rem 0.8rem 1.3rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
}

/* Images */
.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.team-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Line */
.team-line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0.3rem auto 0.5rem;
}

/* BUTTONS */
.team-nav-btn {
  position: absolute;
  top: 60%;                    /* perfectly centered */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15,23,42,0.12);
  z-index: 50;                 /* ⭐ stays above everything */
}

/* Left & Right */
.team-left {
  left: -25px;
}

.team-right {
  right: -25px;
}

/* Hover */
.team-nav-btn:hover {
  background: var(--primary);
  color: white;
}



/* ===================== MEDIA COVERAGE ===================== */

.media-box {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem 1.6rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.med-img {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.med-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.media-box h5 {
  font-size: 1rem;
}

.media-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 767.98px) {
  .head-detail {
    padding: 1.4rem 1.4rem;
    margin-inline: 1rem;
  }

  .head-detail h1 {
    font-size: 1.9rem;
  }

  .Topic {
    font-size: 1.6rem;
  }

  .nav-btn {
    display: none;
  }
}




/* Footer */
/* FOOTER SECTION */
.footer-section {
  background: #ffffff;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

/* Footer Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #555;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #000;
  margin-left: 3px;
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icon:hover {
  background: #000;
  color: #fff;
}

/* Footer Images */
#Footer .footImg img {
  max-width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  #Footer {
    text-align: center;
  }

  #Footer .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  #Footer .footImg img {
    max-width: 110px;
  }
}

@media (max-width: 576px) {
  #Footer img {
    max-width: 100%;
  }

  #Footer .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
