/* ==========================================================================
   WHAT WE DO - COMMON DESIGN SYSTEM & STYLESHEET (AMRUX TECH)
   ========================================================================== */

:root {
  --wwd-navy: #061928;
  --wwd-navy-light: #0d283e;
  --wwd-blue: #38b6ff;
  --wwd-blue-glow: rgba(56, 182, 255, 0.25);
  --wwd-green: #7ed957;
  --wwd-green-glow: rgba(126, 217, 87, 0.2);
  --wwd-dark-bg: #040f1a;
  --wwd-light-bg: #ffffff;
  --wwd-alt-light: #f4f8fb;
  --wwd-card-border: #e1edf5;
  --wwd-text-main: #08283f;
  --wwd-text-muted: #57738a;
  --wwd-radius: 20px;
}
.cyber-photo {
    background-size: cover !important;
    background-position: center !important;
}
.cyber-visual {
    min-height: 582px;
}
/* 1. Page Wrapper */
.wwd-page-wrapper {
  overflow-x: hidden;
  font-family: inherit;
  color: var(--wwd-text-main);
  background-color: #ffffff;
}

/* 2. Hero Banner (Dark Tech Grid) */
.wwd-hero {
  background: linear-gradient(135deg,#0d3551,#176b9d);
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-bottom: 1px solid rgba(56, 182, 255, 0.15);
}
.wwd-hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--wwd-blue-glow), transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  border-radius: 50%;
}
.wwd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.wwd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.35);
  color: var(--wwd-blue);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.wwd-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 20px;
}
.wwd-hero-title span {
  background: linear-gradient(135deg, var(--wwd-blue), var(--wwd-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wwd-hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: #a8cae2;
  margin-bottom: 35px;
  max-width: 580px;
}
.wwd-hero-img-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.wwd-hero-img-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.wwd-hero-glass-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(4, 20, 34, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 182, 255, 0.25);
  border-radius: 18px;
  padding: 16px 20px;
}

/* 3. Premium Light Introduction Section (Below Hero) */
.wwd-sec-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  padding: 70px 0;
  position: relative;
  border-bottom: 1px solid #e1edf5;
}
.wwd-intro-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(6, 25, 40, 0.1);
  border: 4px solid #ffffff;
  transition: transform 0.4s ease;
}
.wwd-intro-img-frame:hover {
  transform: translateY(-6px);
}
.wwd-intro-img-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.wwd-intro-float-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 12px 30px rgba(6, 25, 40, 0.15);
  animation: wwdFloatAnim 3.5s ease-in-out infinite alternate;
}
@keyframes wwdFloatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.wwd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wwd-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.wwd-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--wwd-navy);
  line-height: 1.25;
  margin-bottom: 18px;
}
.wwd-section-title-dark {
  color: #ffffff;
}
.wwd-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wwd-text-muted);
}

.wwd-check-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.wwd-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--wwd-text-main);
}
.wwd-check-grid li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(126, 217, 87, 0.2);
  color: var(--wwd-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 4. Stats Strip Section */
.wwd-stats-strip .row.g-4 {
    background: #fff;
    margin-top: -50px;
    z-index: 1;
    position: relative;
    border-radius: 12px;
    padding: 0 20px 29px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgb(0 0 0 / 0%) 0px 30px 60px -30px, rgb(10 37 64 / 8%) 0px -2px 6px 0px inset;
}
.wwd-stat-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #38b6ff;
    border-radius: 12px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.wwd-stat-num {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wwd-stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 5. Section Containers (Light / Dark) */
.wwd-sec-light {
  background: #ffffff;
  padding: 70px 0;
}
.wwd-sec-dark {
  background: linear-gradient(135deg,#0d3551,#176b9d);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
}
.wwd-sec-alt {
  background: #f4f8fb;
  padding: 70px 0;
}

/* 6. Capability Feature Cards (Light & Dark) */
.wwd-card-light {
  background: #ffffff;
  border: 1px solid #e1edf5;
  border-top: 4px solid var(--wwd-blue);
  border-radius: 16px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.wwd-card-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(6, 25, 40, 0.1);
  border-color: var(--wwd-blue);
}

.wwd-card-light h4, .wwd-card-light p, .wwd-card-light ul{padding: 0 16px 10px;}

.wwd-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--wwd-blue);
  border-top: 4px solid var(--wwd-blue);
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.wwd-card-dark:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.wwd-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--wwd-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(56, 182, 255, 0.25);
    box-shadow: 0 6px 15px rgba(6, 25, 40, 0.08);
    flex-shrink: 0;
}

.ind-icon-box {
  height: 240px;
  border-radius: 12px;
  margin-bottom: 22px;
  object-fit: cover;
}
.wwd-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.ind-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.wwd-card-light h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--wwd-navy);
  margin-bottom: 12px;
}
.wwd-card-dark h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

/* List Items inside Cards */
.wwd-card-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.wwd-card-list li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwd-card-light .wwd-card-list li { color: #57738a; }
.wwd-card-dark .wwd-card-list li { color: #ffffff;font-weight: 700; }
.wwd-card-list li i { color: var(--wwd-green); font-size: 12px; }

/* 7. Process / Delivery Roadmap Steps */
.wwd-step-card {
  background: #ffffff;
  border: 1px solid #e1edf5;
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  height: 100%;
  box-shadow: 0 8px 24px rgba(6, 25, 40, 0.04);
}
.wwd-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wwd-blue), var(--wwd-navy));
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* 8. Interactive Bootstrap Tabs Component (Horizontal Top Placement) */
.wwd-tabs-horizontal-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}
.wwd-tabs-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.wwd-tabs-nav .nav-link {
  background: #ffffff;
  border: 1px solid #dce8f0;
  border-radius: 10px;
  padding: 14px 28px;
  color: var(--wwd-navy);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(13, 53, 81, 0.04);
}
.wwd-tabs-nav .nav-link.active,
.wwd-tabs-nav .nav-link:hover {
  background: linear-gradient(135deg,#0d3551,#176b9d);
  color: #ffffff;
  border-color: var(--wwd-blue);
  box-shadow: 0 8px 25px rgba(12, 45, 72, 0.25);
}
.wwd-tabs-nav .nav-link i {
  font-size: 18px;
  color: var(--wwd-blue);
}
.wwd-tabs-nav .nav-link.active i {
  color: #38b6ff;
}

.wwd-tab-pane-card {
  background: #ffffff;
  border: 1px solid #dce8f0;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(6, 25, 40, 0.06);
}
.wwd-tab-img {
  border-radius: 18px;
  overflow: hidden;
  height: 300px;
}
.wwd-tab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 9. FAQ Accordion Component */
.wwd-faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.wwd-faq-accordion .accordion-button {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  padding: 20px 24px;
  box-shadow: none !important;
}
.wwd-faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(56, 182, 255, 0.15);
}
.wwd-faq-accordion .accordion-body {
  padding: 0 24px 24px;
  color: #a3c4dc;
  font-size: 15px;
  line-height: 1.7;
}

/* 10. New Light CTA Banner (Modern Asymmetric UI) */
.wwd-cta-sec {
  background: linear-gradient(135deg, #f0f7fc 0%, #ffffff 50%, #e8f4fb 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e1edf5;
}
.wwd-cta-sec::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  border-radius: 50%;
}
.wwd-cta-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 32px;
  padding: 50px 45px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  position: relative;
  z-index: 1;
}
.wwd-cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(56, 182, 255, 0.1);
  border: 1px solid rgba(56, 182, 255, 0.3);
  color: #0277bd;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.wwd-cta-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--wwd-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.wwd-cta-desc {
  font-size: 16px;
  color: var(--wwd-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.wwd-cta-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #0c2d48;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.wwd-card-dark p {
    color: #fff;
}
.cyber h2 {
    font-size: 38px;
}