body{
    font-family:'Rajdhani', sans-serif;
    color:#0b1b2b;
}
header,
.header-main,
.navbar{
    background:#ffffff !important;
}

/* make menu text dark */
header a,
.navbar a,
.header-main a{
    color:#0b1b2b !important;
}
/* =========================
BACKGROUND HERO
========================= */

.bio-hero-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
   padding-top: 80px; /* 👈 ADD THIS */
   padding-top: clamp(80px, 10vh, 120px);
}

/* OVERLAY FOR TEXT READABILITY */
.bio-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(244, 247, 250, 0) 35%,
    rgba(244, 247, 250, 0) 55%,
    rgba(255, 255, 255, 0) 80%
  );
  
}

/* CONTENT */
.bio-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: clamp(20px, 8vw, 120px);
}

/* TEXT */
.bio-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #1f5c99;
  display: inline-block;
  margin-bottom: 15px;
}
.hero-mobile-img {
    display: none;
}@media (max-width: 992px) {

    .hero-mobile-img {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 20px auto 0;
    }
}@media (max-width: 992px) {

    .hero-mobile-img {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
        border-radius: 10px;
    }
}
.bio-title {
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  line-height: 1.1;
  color: #0b1b2b;
  font-family: 'Rajdhani', sans-serif;
}

.bio-title span {
  color: #1f5c99;
}

.bio-sub {
  margin-top: 15px;
  font-size: 15px;
  color: #1f2d3d;
  max-width: 400px;
}

.bio-desc {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #5c6b7a;
  width: 90%;
  max-width: 440px;
}

/* BUTTONS */
.bio-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.bio-btn-primary {
  background: #1f5c99;
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.bio-btn-outline {
  border: 1.5px solid #1f5c99;
  color: #1f5c99;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
TABLET
========================= */
@media (max-width: 992px) {

  .bio-hero-bg {
    height: auto;
    padding: 100px 0;
  }

  .bio-hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .bio-buttons {
    justify-content: center;
  }

  .bio-overlay {
    background: rgba(244, 247, 250, 1);
  }
}

/* =========================
MOBILE
========================= */
@media (max-width: 600px) {

  .bio-title {
    font-size: 34px;
  }

   .bio-hero-bg {
    padding: 80px 20px 250px;
  }
  .bio-desc {
    font-size: 14px;
    text-align: center;
  }

  .bio-buttons {
    flex-direction: column;
  }

  .bio-btn-primary,
  .bio-btn-outline {
    width: 100%;
    text-align: center;
  }
}
/* ===============================
   DEFINITION SECTION
================================ */

.w3d-definition {
    padding: 5rem 3rem;
    background: #f0f4f8;
    border-top: 1px solid #c8d8e8;
    border-bottom: 1px solid #c8d8e8;
}

.w3d-definition-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
}

/* LEFT VERTICAL TEXT */

.w3d-definition-left {
    width: 100px;
    position: relative;
}

.w3d-vertical-text {
    font-family: 'Rajdhani', sans-serif;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 65px;
    font-weight: 700;
    color: rgba(31, 92, 153, 0.1);
    letter-spacing: 8px;
}

/* RIGHT CONTENT */

.w3d-definition-right {
    flex: 1;
}

.w3d-astm-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: #1f5c99;
    font-weight: 700;
}

.w3d-quote {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 100;
    font-family:'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #0b1b2b;
    border-left: 3px solid #1f5c99;
    padding-left: 30px;
}

.w3d-definition-text {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.5;
    color: #5c6b7a;
    max-width: 700px;
}


/* TAGS */

.w3d-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.w3d-tags span {
    padding: 8px 16px;
    border: 1px solid #b8c7d8;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #1f5c99;
}
.w3d-tags span:hover{
    background-color: #3367d1;
    color: rgb(255, 255, 255);
}

/* ===============================
   TABLET
================================ */

@media (max-width: 992px) {

    .w3d-definition-container {
        flex-direction: column;
        gap: 30px;
    }

    .w3d-definition-left {
        display: none;
    }

}



/* =========================
FAQ SECTION
========================= */

.w3d-faq {
  padding: 80px 120px;
  background: #ffffff;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;

  /* 🔥 important fix */
  align-items: start;
}

/* CARD */
.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d6e0ea;
  background: #fff;
  transition: 0.3s;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(31, 92, 153, 0.1);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #fff;
  background: linear-gradient(135deg, #1f5c99, #3a7bd5);
}

/* ICON */
.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 15px 20px;
  font-size: 14px;
  color: #5c6b7a;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* =========================
RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .w3d-faq {
    padding: 60px 20px;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-question{
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   STATS SECTION
================================ */


.w3d-stats {
    padding: 20px 0;
    background: #ffffff;
}

.w3d-stats-container {
    width: 90%;
    max-width: 1800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #d6e0ea;
    border-radius: 10px;
    overflow: hidden;
    gap:0
}

.w3d-stat-box {
    text-align: center;
    padding: 40px 10px;
    border-right: 1px solid #d6e0ea;
}

.w3d-stat-box:last-child {
    border-right: none;
}

.w3d-stat-box h3 {
    font-size:2.2rem;
    color: #1f5c99;
    font-weight: 700;
    font-family:'Rajdhani', sans-serif;
}

.w3d-stat-box p {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #5c6b7a;
    flex-wrap: no-wrap;
}

.w3d-platform-tag {
    color: #005b99;
    font-weight: 600;
}


/* ===============================
   KEY CAPABILITIES
================================ */
.w3d-capabilities {
  padding: 20px 120px;
  background: #ffffff;
}

/* Wrapper layout */
.w3d-capabilities-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

/* LEFT TEXT */
.w3d-cap-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #5c6b7a;
  max-width: 420px;
}

/* RIGHT GRID */
.w3d-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ITEM */
.w3d-cap-item {
  padding: 25px;
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  transition: 0.3s ease;
  background: #f9fbfd;
}

.w3d-cap-item:hover {
  border-color: #1f5c99;
  transform: translateY(-5px);
  background: #ffffff;
}

/* TEXT */
.w3d-cap-item h4 {
  font-size: 16px;
  color: #0b1b2b;
  font-weight: 600;
}

.w3d-cap-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #5c6b7a;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .w3d-capabilities-wrapper {
    grid-template-columns: 1fr;
  }

  .w3d-cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .w3d-cap-grid {
    grid-template-columns: 1fr;
  }
}




/* Why Garuda3D Section Styles */
.why-garuda-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
}

.why-garuda-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-garuda-section .w3d-section-label {
    color: #1f5c99;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Rajadhani', sans-serif;
}

.why-garuda-section .main-heading {
    font-size: 44px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border: 1px solid #d6e0ea;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #1f5c99;
}

.w3d-features-strip {
  width: 100%;
  padding: 0;
}

.w3d-material-section {
  padding: 0;
}

.feature-card h3 {
    font-size: 16px;
    color: #0b1b2b;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #5c6b7a;
    line-height: 1.6;
    font-size:14px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .why-garuda-section .main-heading {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .feature-card {
        padding: 20px;
    }
}










/* =====================================================
SECTION 3 — KEY APPLICATIONS
===================================================== */


.w3d-applications {
    padding: 40px 120px;
    background: #f4f7fa;
}

.w3d-section-heading {
    margin-bottom: 60px;
}

.w3d-section-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: #1f5c99;
    font-weight: 700;
}

.w3d-section-heading h2 {
    margin-top: 10px;
    font-size: 44px;
    color: #0b1b2b;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.w3d-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #d6e0ea;
    border-radius: 10px;
    overflow: hidden;
}

.w3d-app-card {
    padding: 50px;
    border-right: 1px solid #d6e0ea;
    border-bottom: 1px solid #d6e0ea;
    transition: 0.3s ease;
}

.w3d-app-card:nth-child(3n) {
    border-right: none;
}

.w3d-app-card:hover {
    background: #0a7ac54e;
    border-bottom: #005b99 3px solid;
}

.w3d-app-number {
    font-size: 12px;
    letter-spacing: 2px;
    color: #8aa0b5;
}

.w3d-app-card h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #0b1b2b;
    font-family:'Rajdhani', sans-serif;
}

.w3d-app-card p {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #5c6b7a;
}



.why-trust {
  padding: 60px 120px;
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trust-grid div {
  padding: 20px;
  border: 1px solid #d6e0ea;
  border-radius: 8px;
}

.trust-note {
  margin-top: 20px;
  font-size: 14px;
  color: #5c6b7a;
}


/* =====================================================
SECTION 4 — PLATFORM
===================================================== */

.w3d-platform {
    padding: 70px 120px;
    border-top: #c8d8e8 1px solid;
    border-bottom: #c8d8e8 1px solid;
    background-color: #f0f4f8;
}

.w3d-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.w3d-platform-card {
    padding: 50px;
    border: 1px solid #d6e0ea;
    border-radius: 10px;
    position: relative;
    transition: 0.3s ease;
    border: #005b99 1px solid;
}

.w3d-platform-card span {
    font-size: 13px;
}

.w3d-platform-card:hover {
    transform: translateY(-5px);
    
}

.w3d-platform-card h3 {
    margin-top: 20px;
    font-size: 34px;
    font-weight: 700;
    color: #0b1b2b;
    font-family:'Rajdhani', sans-serif;
}

.w3d-platform-card p {
    margin-top: 20px;
    font-size: 13px;
    color: #5c6b7a;
}

.w3d-platform-card a {
    display: inline-block;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #1f5c99;
    text-decoration: none;
}




.w3d-hero{
    padding-top:100px;
}


/* =========================================
GLOBAL RESPONSIVE SPACING
========================================= */

.w3d-hero,
.w3d-definition,
.w3d-stats,
.w3d-applications,
.w3d-platform {
    padding-left: clamp(20px, 6vw, 120px);
    padding-right: clamp(20px, 6vw, 120px);
}

/* =========================================
HERO FIX (ALL DEVICES)
========================================= */
.w3d-right {
    justify-content: flex-end !important;
}

.w3d-title {
    font-size: clamp(36px, 6vw, 110px);
}

/* =========================================
TABLET VIEW (<= 992px)
========================================= */

@media (max-width: 992px) {

    /* HERO */
    .w3d-container {
        flex-direction: column;
        text-align: center;
    }

    .w3d-right {
        justify-content: center !important;
    }

    .w3d-buttons {
        justify-content: center;
    }

    /* DEFINITION */
    .w3d-definition-container {
        flex-direction: column;
        gap: 30px;
    }

    .w3d-definition-left {
        display: none;
    }

    /* STATS */
    .w3d-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .w3d-stat-box {
        border-bottom: 1px solid #d6e0ea;
    }

    /* APPLICATIONS */
    .w3d-app-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* PLATFORM */
    .w3d-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
MOBILE VIEW (<= 600px)
========================================= */

@media (max-width: 600px) {

    /* HERO */
    .w3d-title {
        font-size: 40px;
    }

    .w3d-description {
        font-size: 14px;
    }

    .w3d-buttons {
        flex-direction: column;
        align-items: center;
    }

    .w3d-btn-primary,
    .w3d-btn-outline {
        width: 100%;
        text-align: center;
    }

    /* STATS */
    .w3d-stats-container {
        grid-template-columns: 2fr 1fr;        
    }

    .w3d-stat-box h3{
        font-size: 20px;
    }
    .w3d-stat-box p{
        font-size: 9px;
    }
    /* APPLICATIONS */
    .w3d-app-grid {
        grid-template-columns: 1fr;
    }

    .w3d-app-card {
        border-right: none;
    }

    /* PLATFORM */
    .w3d-platform-grid {
        grid-template-columns: 1fr;
    }

    /* TEXT SCALING */
    .w3d-quote {
        font-size: 20px;
    }

    .w3d-definition-text {
        font-size: 15px;
    }
}

/* ===============================
   material
================================ */

.w3d-material-section{
    padding: 0px 120px;
}
.w3d-features-strip {
  background: #184f82;
  color: #ffffff;
}

.w3d-features-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.w3d-feature-item {
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;   /* ⭐ center horizontally */
  text-align: center;        /* ⭐ center text */
}

.w3d-feature-item:last-child {
  border-right: none;
}


.w3d-feature-item h3 {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 200px;   /* keeps text nicely wrapped */
}
.w3d-material-section {
  background: #f4f7fa;
  padding-top: 80px;
}
/* MATERIAL NOTE */
.w3d-material-note {
  max-width: 1200px;
  margin-top: 20px;
  padding: 10px 20px;
}

.w3d-material-note p {
  font-size: 13px;
  color: #5c6b7a;
  line-height: 1.6;
  border-left: 3px solid #1f5c99;
  padding-left: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .w3d-features-container {
    grid-template-columns: 1fr 1fr;
  }

  .w3d-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
}

@media (max-width: 600px) {
  .w3d-features-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .w3d-material-note {
    padding: 0 20px;
  }
}
/* =========================
MATERIAL COMPATIBILITY FIX
========================= */

.w3d-features-strip {
  background: #184f82;
  color: #ffffff;
  padding-top: 20px;
}

/* NOTE INSIDE BLUE BOX */
.w3d-material-note.inside {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 0 40px;
}

.w3d-material-note.inside p {
  color: #cfe8ff;
  border-left: 3px solid #00cfff;
  padding-left: 12px;
  font-size: 13px;
}

/* GRID FIX */
.w3d-features-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

/* TABLET */
@media (max-width: 992px) {
  .w3d-features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .w3d-features-container {
    grid-template-columns: 1fr;
  }

  .w3d-feature-item {
    text-align: center;
  }

  .w3d-material-note.inside {
    padding: 0 20px;
  }
}






/* =====================================================
BIO PREMIUM SECTION
===================================================== */

.bio-compare {
    padding: clamp(50px,6vw,0px) clamp(20px,6vw,120px);
    background: linear-gradient(to bottom, #f4f7fa, #ffffff);
}

.bio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.bio-box {
    background: #ffffff;
    border-radius: 16px;
    padding:15px;
    border: 1px solid #e3edf7;
    transition: all 0.35s ease;
    position: relative;
}

.bio-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31,92,153,0.08);
    border-color: #1f5c99;
}



/* HEADER */
.bio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bio-header h3 {
    font-size: 22px;
    color: #0b1b2b;
    font-weight: 700;
}

.bio-badge {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #e8f1fa;
    color: #1f5c99;
    font-weight: 600;
}


/* DESCRIPTION */
.bio-desc {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #5c6b7a;
    max-width: 400px;
}

/* SPECS */
.bio-spec-grid {
    margin-top: 20px;
    border-top: 1px solid #e3edf7;
}

.bio-spec-grid div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e3edf7;
}

.bio-spec-grid span {
    font-size: 11px;
    color: #8aa0b5;
    letter-spacing: 1px;
}

.bio-spec-grid p {
    font-size: 13px;
    font-weight: 600;
    color: #0b1b2b;
}

/* POINTS */
.bio-points {
    margin-top: 15px;
    padding-left: 16px;
}

.bio-points li {
    font-size: 13px;
    margin-bottom: 6px;
    color: #5c6b7a;
}

/* BUTTONS */
.bio-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: #1f5c99;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #154a7a;
}

.btn-outline {
    border: 1px solid #1f5c99;
    color: #1f5c99;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .bio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bio-container {
        grid-template-columns: 1fr;
    }

    .bio-actions {
        flex-direction: column;
    }

    .bio-actions a {
        width: 100%;
        text-align: center;
    }
}




.bio-workflow {
  background: #174f7c;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}


.bio-workflow .container {
  max-width: 1100px;
  margin: auto;
}

/* Subtitle */
.wf-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #00cfff;
  margin-bottom: 10px;
}

/* Title */
.wf-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  font-family: 'Rajdhani', sans-serif;
}

.wf-title span {
  color: #00cfff;
}

/* Steps Layout */
.wf-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 30px;
}

/* Connecting line */
.wf-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255,255,255,0.3);
  z-index: 0;
}

/* Step */
.wf-step {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Circle */
.wf-circle {
  width: 65px;
  height: 65px;
  border: 2px solid #00cfff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #174f7c;
  font-weight: 600;
  font-size: 14px;
  background-color: #ffffff;
}

/* Heading */
.wf-step h4 {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Description */
.wf-step p {
  font-size: 13px;
  color: #cfe8ff;
  line-height: 1.6;
  padding: 0 10px;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {
  .wf-title {
    font-size: 32px;
  }

  .wf-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wf-step {
    flex: 1 1 45%;
    max-width: 400px;
  }

  .wf-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .wf-title {
    font-size: 24px;
  }

  .wf-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .wf-step {
    max-width: 300px;
  }

  .wf-circle {
    width: 55px;
    height: 55px;
    font-size: 12px;
  }
}


/* how it works */
.bio-workflow {
  background: #174f7c;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.bio-workflow .container {
  max-width: 1100px;
  margin: auto;
}

/* Subtitle */
.wf-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #00cfff;
  margin-bottom: 10px;
}

/* Title */
.wf-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  font-family: 'Rajdhani', sans-serif;
}

.wf-title span {
  color: #00cfff;
}

/* Steps Layout */
.wf-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 30px;
}

/* Connecting line */
.wf-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255,255,255,0.3);
  z-index: 0;
}

/* Step */
.wf-step {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Circle */
.wf-circle {
  width: 65px;
  height: 65px;
  border: 2px solid #00cfff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00cfff;
  font-weight: 600;
  font-size: 14px;
}

.wf-circle:hover{
    background-color: #00cfff;
    color: #174f7c;

}
/* Heading */
.wf-step h4 {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Description */
.wf-step p {
  font-size: 13px;
  color: #cfe8ff;
  line-height: 1.6;
  padding: 0 10px;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {
  .wf-title {
    font-size: 32px;
  }

  .wf-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wf-step {
    flex: 1 1 45%;
    max-width: 400px;
  }

  .wf-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .wf-title {
    font-size: 24px;
  }

  .wf-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .wf-step {
    max-width: 300px;
  }

  .wf-circle {
    width: 55px;
    height: 55px;
    font-size: 12px;
  }
}







/* =========================
   GALLERY WRAPPER (SIDE SPACE)
========================= */
.gallery-wrapper {
  position: relative;
  padding: 10px 60px;
  /* desktop spacing */
}

/* =========================
   TRACK (SCROLL AREA)
========================= */
.gallery-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* =========================
   ROW
========================= */
.gallery-row {
  display: flex;
  gap: 24px;
}

/* =========================
   IMAGES (DESKTOP)
========================= */
.gallery-row img {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.gallery-row {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}
/* =========================
   BUTTONS
========================= */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #145a8d;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn:hover {
  background: var(--orange);
}

.gallery-btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .gallery-wrapper {
    padding: 0 40px;
  }

  .gallery-row img {
    width: 260px;
    height: 300px;
  }

  .gallery-btn {
    width: 38px;
    height: 38px;
  }
}


/* =========================
   SMALL MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-row img {
    width: 180px;
    height: 240px;
  }

  /* cleaner UI */
  .gallery-btn {
    display: flex;
  }
}

.feat-card {
  min-height: 220px;
}

.gallery-track {
  align-items: stretch;
  /* instead of center */
}

.gallery-row img {
  height: 300px;
}

.gallery-track {
  scroll-snap-type: x mandatory;
}

.gallery-row img {
  scroll-snap-align: start;
}



@media (max-width: 480px) {

  .gallery-row img {
    height: 100%;
  }

  .gallery-btn.prev {
    left: 8px;
  }

  .gallery-btn.next {
    right: 8px;
  }
}

@media (max-width: 768px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-track {
    overflow: hidden;
    position: relative;
  }

  .gallery-row {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
  }

  .gallery-row img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    flex-shrink: 0;
  }

  .gallery-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: rgba(13, 36, 97, 0.9);
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }
}












/* =========================
KEY CAPABILITIES RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {

  .w3d-capabilities {
    padding: 60px 20px;
  }

  .w3d-capabilities-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .w3d-cap-left p {
    max-width: 100%;
    text-align: center;
  }

  .w3d-cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .w3d-cap-grid {
    grid-template-columns: 1fr;
  }

  .w3d-cap-item {
    padding: 20px;
  }

  .w3d-cap-item h4 {
    font-size: 15px;
  }

  .w3d-cap-item p {
    font-size: 13px;
  }
}
/* =========================
HERO MOBILE FIX
========================= */

@media (max-width: 600px) {

  .bio-hero-bg {
    height: auto;
    padding: 80px 20px 250px; /* space for image */
    background-position: top center;
  }

  .bio-hero-content {
    text-align: center;
  }

  .w3d-material-section{
    margin-left: -40px;
  }
  .w3d-section-label{
    margin-left: -10px;
  }
}


/* ===============================
WHY TRUST SECTION
================================ */

.why-trust {
  padding: clamp(10px, 6vw, 20px) clamp(10px, 6vw, 20px) ;
  background: #ffffff;
}

.why-trust .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.why-trust h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #0b1b2b;
  margin-bottom: 40px;
  font-family: 'Rajdhani', sans-serif;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* BOX */
.trust-grid div {
  padding: 20px 25px;
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  background: #f9fbfd;
  font-size: 15px;
  color: #5c6b7a;
  line-height: 1.6;
  position: relative;
  transition: all 0.3s ease;
}

/* LEFT BORDER ACCENT */
.trust-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #1f5c99;
  border-radius: 10px 0 0 10px;
}

/* HOVER */
.trust-grid div:hover {
  transform: translateY(-5px);
  border-color: #1f5c99;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(31, 92, 153, 0.08);
}


/* ===============================
TABLET (≤ 992px)
================================ */
@media (max-width: 992px) {

  .why-trust {
    padding: 40px 10px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .trust-grid div {
    font-size: 14px;
    padding: 18px;
  }
}

/* ===============================
MOBILE (≤ 600px)
================================ */
@media (max-width: 600px) {

  .why-trust {
    padding: 30px 10px;
    text-align: center;
  }

  .why-trust h2 {
    font-size: 26px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    text-align: left;
  }

  .trust-note {
    font-size: 13px;
    text-align: left;
  }
}