0/*
Theme Name: Bazayan
Template: twentytwenty
Version: 1.0
*/


li {
      margin: 0px 2px;
}



/* Hero slider css */
input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"], textarea { 
      color: #000000;
      border-radius: 10px;
      padding: 0.7rem 1.8rem;
}


input[type="search"]::placeholder {
  color: #000000;
}


/* =========================
   HERO SLIDER MAIN
========================= */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* =========================
   SLIDES
========================= */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide p {
  font-family: nunito, sans;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* =========================
   BACKGROUND IMAGE
========================= */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   DARK OVERLAY (NO GRADIENT)
========================= */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 16, 0.75);
}

/* =========================
   CONTENT CONTAINER (1260px)
========================= */
.content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1260px;
  padding: 0 40px;
  color: #fff;
  top: 50%;
transform: translate(-50%, -50%);
justify-content: center;

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* =========================
   TEXT STYLING
========================= */
.content .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:#b8975a;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}

.content h1 {
  font-size: 63px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin-bottom: 20px;
 margin:0px;
  max-width: 700px;
}

.content em {
  color: #D4B07A;
  font-style: normal;
}

.content p {
  font-size: 16px;
  max-width: 500px;
  margin-top:10px;
  opacity: 0.9;
}

/* =========================
   TEXT ANIMATION
========================= */
.content * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slide.active .content * {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ARROWS
========================= */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* =========================
   DOTS PAGINATION
========================= */
.dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots span.active {
  width: 26px;
  border-radius: 4px;
  background: #D4B07A;
}

/* =========================
   CTA BUTTONS
========================= */
.actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* COMMON BUTTON STYLE */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: #004438;
  color: #fff;
}

.btn.primary:hover {
  background: #002f26;
}

/* OUTLINE BUTTON */
.btn.outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}

.btn.outline:hover {
  background: #fff;
  color: #004438;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .content h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {

  /* HEIGHT FIX */
  .hero-slider {
    height: 75vh; /* pehle 100vh tha */
    min-height: 500px;
  }

  /* IMAGE POSITION */
  .slide img {
    object-position: center;
  }

  /* CONTENT POSITION */
  .content {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    text-align: left;
  }

  /* TEXT SIZE */
  .content h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .content p {
    font-size: 14px;
  }

  /* CTA spacing */
  .actions {
    margin-top: 20px;
  }

  /* ARROWS FIX (move slightly down & inside) */
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
    top: 85%; /* IMPORTANT: overlap avoid */
    transform: translateY(-50%);
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }

  /* DOTS POSITION */
  .dots {
    bottom: 15px;
  }
}

@media (max-width: 480px) {

  .hero-slider {
    height: 70vh;
    min-height: 420px;
  }

  .content h1 {
    font-size: 24px;
  }

  .slider-arrow {
    top: 88%;
  }
}


/*product page css*/

/* ===== GRID WRAPPER ===== */
.products-grid {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

/* ===== EACH CELL ===== */
.product-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #f5f5f5;

    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* ===== TEXT ===== */
.product-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.product-info .meta {
    margin-top: 5px;
    font-size: 12px;
    color: #777;
    letter-spacing: 1px;
}

/* ===== BUTTON ===== */
.add-btn {
    width: 34px;
    height: 50px;
    border-radius: 100%;
    border: none;
    background: #e0e6e2;
    color: #2f4f3f;
    font-size: 18px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn.active {
    background: yellow;
    color: #fff !IMPORTANT;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* about us page timeline */


.our-story-section {
/*     background-color: #f2f0eb; */
    padding: 80px 20px 100px;
    font-family: 'Playfair Display', serif;
  }
 
  .our-story-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
 
  .our-story-inner {
    max-width: 620px;
    margin: 0 auto;
  }
 
  /* Label */
  .our-story-label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
  }
 
  .our-story-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: #1e4035;
  }
 
  .our-story-label span {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1e4035;
  }
 
  /* Heading */
  .our-story-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: #0f1a14;
    text-align: center;
    margin-bottom: 60px;
  }
 
  .our-story-heading em {
    font-style: italic;
    font-weight: 600;
  }
 
  /* Timeline */
  .our-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }
 
  .timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 36px;
    position: relative;
  }
 
  /* Vertical line */
  .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 22px;
    bottom: 0;
    width: 1.5px;
    background-color: #c5c9bd;
  }
 
  /* Icon dot */
  .timeline-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #1e4035;
    background-color: #f2f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    position: relative;
    z-index: 1;
  }
 
  .timeline-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #1e4035;
    border-radius: 50%;
  }
 
  /* Content */
  .timeline-content {
    flex: 1;
  }
 
  .timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: #1f4e3d;
    font-weight: 400;
    margin-bottom: 4px;
    display: block;
  }
 
  .timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #0f1a14;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
  }
 
  .timeline-desc {
    font-family: "Nunito Sans", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #7a8a7f;
    line-height: 1.65;
  }
 
  /* Responsive */
  @media (max-width: 600px) {
    .our-story-heading {
      font-size: 32px;
    }
    .our-story-section {
      padding: 60px 16px 80px;
    }
  }

/*   .cta-band::before {
    content: "信 · Z · पा";
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.06);
    font-style: italic;
    pointer-events: none;
	z-index:9999;
} */


.cta-band {
    background: var(--primary);
    color: var(--white);
/*     padding: 4.5rem 0; */
    position: relative;
    overflow: hidden;
}


.cta-band::before {
    content: "信 · Z · पा";
    position: absolute;
    right: -3rem;
/*     top: 50%; */
    transform: translateX(70%);
    font-family: serif;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.06);
    font-style: italic;
    pointer-events: none;
    z-index: 0;
}


/* Map section - home page */
/* =========================
SECTION
========================= */

.global-map-section{
    background:#03130d;
    min-height:100vh;
    padding:50px 30px 40px;
    overflow:hidden;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}


/* =========================
TOP CONTENT
========================= */

.map-top-content{
    text-align:center;
    max-width:720px;
    margin:0 auto 35px;
}


/* SUB HEADING */

.mini-title{
    font-family:'Nunito Sans', sans-serif;
    text-transform:uppercase;
    color:#a8c99f;
    letter-spacing:5px;
    font-size:12px;
    display:inline-block;
    margin-bottom:18px;
    position:relative;
}

.mini-title::before{

    content:'';
    width:60px;
    height:1px;
    background:#a8c99f;
    position:absolute;
    left:-75px;
    top:50%;
}


/* MAIN HEADING */

.map-top-content h2{

    font-family:'Playfair Display', serif;
    font-size:58px;
    font-weight:400;
    line-height:1.1;
    margin-bottom:18px;
    color:#fff;
    margin-top:10px;
}

.map-top-content h2 em{

    color: #a0762b;
    font-style:italic;
    font-weight:400;
}


/* PARAGRAPH */

.map-top-content p{

    font-family:'Nunito Sans', sans-serif;
    color:#ffffffbf;
    line-height:1.7;
    font-size:15px;
    max-width:650px;
    margin:auto;
}





/* =========================
BOTTOM INFO
========================= */

.bottom-info{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;
}


.info-box h4{

    font-family:'Playfair Display', serif;
    color:#a8c99f;
    font-size:22px;
    margin-bottom:12px;
    font-weight:500;
    font-style:italic;
}


.info-box p{

    font-family:'Nunito Sans', sans-serif;

    color:#ffffffb3;

    font-size:14px;

    line-height:1.7;
}


/* =========================
LAPTOP
========================= */

@media(max-width:1200px){

    .map-top-content h2{
        font-size:48px;
    }

    .world-map{
        max-height:320px;
    }
}


/* =========================
TABLET
========================= */

@media(max-width:991px){

    .global-map-section{

        min-height:auto;

        padding:70px 5px;
    }

    .map-top-content h2{
        font-size:42px;
    }

    .bottom-info{

        grid-template-columns:2fr 1fr;
    }

    .world-map{
        max-height:300px;
    }
}


/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .global-map-section{

        padding:60px 18px;
    }

    .mini-title{

        font-size:10px;

        letter-spacing:3px;
    }

    .mini-title::before{
        display:none;
    }

    .map-top-content h2{
        font-size:32px;
        line-height:1.2;
		margin-top:5px;
    }

    .map-top-content p{

        font-size:14px;
    }

    .world-map{

        max-height:220px;
    }

    .marker span{

        font-size:8px;

        padding:4px 7px;
    }

    .bottom-info{
        
          grid-template-columns:repeat(2,1fr);

        gap:25px;
    }

    .info-box h4{
        font-size:20px;
        margin-top:5px;
    }

    .hd-mb {
      display: none !important;
    }
}


/* =========================
DARK GREEN PREMIUM BORDER
========================= */

.our-values-cards{
position:relative;
overflow:hidden;
border:1px solid rgba(22, 80, 55, 0.35);
border-radius:15px;
background:rgba(255,255,255,0.02);
backdrop-filter:blur(10px);
transition:transform .4s ease,
border-color .4s ease,
box-shadow .4s ease;
}



/* HOVER BORDER */

.our-values-cards:hover{

transform:translateY(-6px);
border:1px solid #1F6B4B;
box-shadow:0 10px 30px rgba(0,0,0,.25),
0 0 18px rgba(31,107,75,.18);
}



/* OPTIONAL INNER GLOW */

.our-values-cards::before{

content:'';

position:absolute;

inset:0;

border-radius:15px;

border:1px solid rgba(53, 122, 88, 0);

transition:.4s ease;

pointer-events:none;
}



/* SHOW PREMIUM GLOW */

.our-values-cards:hover::before{

  border-color:rgba(78, 160, 119, 0.45);
}


/* =========================
CTA HOVER EFFECT ONLY
========================= */

.my-custom_btn{
position:relative;
overflow:hidden;
transition:transform .4s ease,
box-shadow .4s ease,
border-color .4s ease;
}


.my-custom_btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    transform:skewX(-25deg);
    transition:1s ease;
    pointer-events:none;
}

.my-custom_btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 12px 28px rgba(0,0,0,.22),
    0 0 18px rgba(0,255,180,.10);
}

.my-custom_btn:active{
    transform:scale(.98);
}

/* =========================
TABLE IN excipient section
========================= */
    :root{
        --green:#004438;
        --text:#3A4A3F;
        --border:#d9e4df;
        --bg:#f8fbf9;
    }

  .excipient-section{
        max-width:1400px;
        margin:auto;
    }

    .excipient-title{
        font-family: "Playfair Display", serif;
        font-size:42px;
        line-height:1.2;
        color:var(--green);
        margin-bottom:30px;
        text-align:center;
    }

    .table-wrapper{
        width:100%;
        overflow-x:auto;
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    table{
        width:100%;
        min-width:1000px;
        border-collapse:collapse;
        background:#fff;
            margin: 0px 0px;
    }

    thead{
        background:var(--green);
    }

    thead th {
        color:#fff;
        padding:20px;
        text-align:left;
        font-size:16px;
        font-weight:700;
        font-family: "Playfair Display", serif;
        border-right:1px solid rgba(255,255,255,0.1);
        white-space:nowrap;
    }

    thead th:last-child{
        border-right:none;
    }

    tbody tr{
        border-bottom:1px solid var(--border);
        transition:0.3s ease;
        font-family: "Nunito Sans", sans-serif;
    }

    tbody tr:nth-child(even){
        background:var(--bg);
    }

    tbody tr:hover{
        background:#eef6f3;
    }

    tbody td{
        padding:18px 20px;
        font-size:15px;
        line-height:1.7;
        vertical-align:top;
        color:var(--text);
    }

    tbody td:first-child{
        font-weight:700;
        color:var(--green);
        min-width:50px;
    }

    tbody td:nth-child(2),
    tbody td:nth-child(3){
        white-space:nowrap;
        font-weight:600;
    }

    /* Mobile Card Layout */
    @media (max-width: 768px){

        .excipient-title{
            font-size:32px;
            margin-bottom:20px;
        }

        table,
        thead,
        tbody,
        th,
        td,
        tr{
            display:block;
            width:100%;
        }

        table{
            min-width:100%;
        }

        thead{
            display:none;
        }

        tbody tr{
            background:#fff !important;
            /*border:1px solid var(--border);*/
            border-radius:15px;
            overflow:hidden;
            margin-bottom:20px;
            box-shadow:0 5px 18px rgba(0,0,0,0.05);
        }

        tbody td{
            display:flex;
            flex-direction:column;
            padding:14px 16px;
            border-bottom:1px solid #edf2ef;
        }

        tbody td:last-child{
            border-bottom:none;
        }

        tbody td::before{
            content:attr(data-label);
            font-size:13px;
            font-weight:700;
            color:var(--green);
            margin-bottom:6px;
            text-transform:uppercase;
            letter-spacing:0.5px;
        }

        tbody td:first-child{
            background:var(--green);
            color: #858585;
            font-size:18px;
            font-weight:700;
        }

        tbody td:first-child::before{
            color:rgba(255,255,255,0.75);
        }
    }

/* =========================
ENDS HERE
========================= */

    /* ══════════════════════════════════════
       BAZAYAN – CEP/EU ASMF PRODUCT TABLE
    ══════════════════════════════════════ */

    .baz-table-wrap {
      font-family: 'Nunito', sans-serif;
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 0px;
    }

    /* ── Filter Bar ── */
    .baz-filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
      align-items: center;
    }
    .baz-filter-label {
      font-size: 11px;
      font-weight: 600;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-right: 4px;
      font-family: 'Nunito Sans';
    }
    
    .baz-filter-btn {
      padding: 7px 16px;
      border-radius: 15px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      font-size: 13.5px;
      font-family: 'Nunito Sans';
      cursor: pointer;
      transition: all 0.2s;
      color: #1f2937;
      font-weight: bold;
    }
    .baz-filter-btn:hover {
      border-color: #b8860b;
      color: #b8860b;
    }
    .baz-filter-btn.active {
      background: #004438;
      color: #ffffff;
      border-color: #B8975A;
    }
    .baz-search-wrap {
      margin-left: auto;
      position: relative;
    }
    .baz-search-wrap input {
      padding: 9px 14px 9px 34px;
      border: 1px solid #e5e7eb;
      border-radius: 15px;
      font-family: 'Nunito', sans-serif;
      font-size: 13.5px;
      outline: none;
      width: 220px;
      transition: border-color 0.2s;
    }
         
         #bazSearch::placeholder {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #999;
}
    .baz-search-wrap input:focus {
      border-color: #b8860b;
    }
    .baz-search-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      font-size: 14px;
      pointer-events: none;
    }

    /* ── Legend ── */
    .baz-legend {
      background: #f4f8f5;
      border: 1px solid black;
      border-radius: 15px;
      padding: 12px 18px;
      font-size: 14px;
      color: black;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      font-family: 'Nunito Sans';
      font-weight: 700;
    }
    .baz-legend strong { margin-right: 4px; }

    /* ── Table Container ── */
    .baz-table-container {
      /*border: 1px solid #e5e7eb;*/
      border-radius: 15px;
      overflow: hidden;
    }
    .baz-product-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13.5px;
    }

    /* ── Table Head ── */
    .baz-product-table thead {
      background: #004438;
    }
    .baz-product-table th {
      padding: 14px 18px;
      text-align: left;
      font-weight: 600;
      font-size: 15.5px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #ffffff;
      font-family: 'Nunito Sans';
    }

    /* ── Table Body ── */
    .baz-product-table td {
      padding: 13px 18px;
      border-bottom: 1px solid #e5e7eb;
      vertical-align: middle;
      font-size: 16px;
    }
    .baz-product-table tbody tr:last-child td {
      border-bottom: none;
      
    }
   
    .baz-product-table tbody tr:hover td {
      background: #f9fafb;
    }

    /* ── Cell Styles ── */
    .baz-sr { color: #9ca3af; font-size: 13px; }
    .baz-product-name { font-weight: 600; color: #0a0f1a; }
    .baz-cas-num {
      font-size: 11.5px;
      color: #9ca3af;
      font-family: 'Nunito Sans';
      margin-top: 2px;
    }
    .baz-cat { font-size: 13px; color: #6b7280; }

    /* ── Status Badges ── */
    .baz-status-done {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #dcfce7;
      color: #15803d;
      padding: 3px 10px;
      border-radius: 15px;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      font-family: 'Nunito Sans';
    }
    code.cas-code{
        
        font-family: 'Nunito Sans';
        font-size: 13px;
        font-weight: 700;
        
        
    }
    .baz-status-filed {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #dbeafe;
      color: #1d4ed8;
      padding: 3px 10px;
      border-radius: 15px;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      font-family: 'Nunito Sans';
    }
    .baz-status-plan {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #dcdcdc;
      color: black;
      padding: 3px 10px;
      border-radius: 15px;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      font-family: 'Nunito Sans';
    }
    .baz-status-na {
      color: #d1d5db;
      font-size: 18px;
      line-height: 1;
      font-family: 'Nunito Sans';
    }
    .baz-support {
      color: #16a34a;
      font-size: 13px;
      font-weight: 600;
    }

    /* ── No Results ── */
    .baz-no-results {
      text-align: center;
      padding: 48px 20px;
      color: #9ca3af;
      font-size: 15px;
      display: none;
      color:red;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .baz-search-wrap { margin-left: 0; width: 100%; }
      .baz-search-wrap input { width: 100%; }
      .baz-product-table th:nth-child(4),
      .baz-product-table td:nth-child(4) { display: none; } /* hide CAS col on mobile */
    }
    
    
    
    
    
    
    
    
/*new css add for world map backup page test*/





.global-map-section{
    width:100%;
    /*padding:80px 20px;*/
    background:linear-gradient(90deg,#1a241e,#0a6f5c);
    overflow:hidden;
}

.map-wrapper{
    position:relative;
    width:100%;
    max-width:1600px;
    margin:auto;
    /*height: 753px;*/
}

.world-map{
    width:100%;
    display:block;
}

/* PIN */

.map-pin{
    position:absolute;
    transform:translate(-50%,-50%);
}

/* DOT */

.pin-marker{
    width:15px;
    height:15px;
    border-radius:50%;
    background:#fff;
    border:4px solid #b8975a;
    position:relative;
    z-index:2;
}

/* PULSE */

.pin-marker::after{
    content:'';
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.5);
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

/* LABEL */

.pin-label{
    position:absolute;
    background:#fff;
    color:#111;
    padding:6px 9px;
    border-radius:6px;
    font-size:10px;
    font-weight:800;
    white-space:nowrap;
    font-family: 'Nunito Sans';
}

/* LEFT */

.pin-label.left{
    right:40px;
    top:50%;
    transform:translateY(-50%);
}

.pin-label.left::after{
    content:'';
    position:absolute;
    right:-30px;
    top:50%;
    width:30px;
    height:2px;
    background:#fff;
}

/* RIGHT */

.pin-label.right{
    left:40px;
    top:50%;
    transform:translateY(-50%);
}

.pin-label.right::after{
    content:'';
    position:absolute;
    left:-30px;
    top:50%;
    width:30px;
    height:2px;
    background:#fff;
}

/* TOP */

.pin-label.top{
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
}

.pin-label.top::after{
    content:'';
    position:absolute;
    bottom:-30px;
    left:50%;
    width:2px;
    height:30px;
    background:#fff;
    transform:translateX(-50%);
}

/* BOTTOM */

.pin-label.bottom{
    top:40px;
    left:50%;
    transform:translateX(-50%);
}

.pin-label.bottom::after{
    content:'';
    position:absolute;
    top:-30px;
    left:50%;
    width:2px;
    height:30px;
    background:#fff;
    transform:translateX(-50%);
}

/* =========================
   MOBILE RESPONSIVE FIX
========================= */

/* MOBILE FIX */

@media(max-width:768px){

    .map-wrapper{
        position:relative;
        overflow:hidden;
    }

    /* Smaller pins */

    .pin-marker{
        width:15px;
        height:15px;
        border:3px solid #b8975a;
    }

    /* Hide labels by default */

    .pin-label{
        opacity:0;
        visibility:hidden;
        transition:.3s ease;
        font-size:7px;
        padding:4px 6px;
        z-index:99;
    }

    /* Show on tap */

    .map-pin.active .pin-label{
        opacity:1;
        visibility:visible;
    }
    
.pin-label.right::after{
    content:'';
    position:absolute;
    left:-30px;
    top:50%;
    width:22px !important;
    height:2px;
    background:#fff;
}



}
  
  
  
 /*vetinery page hero section */
 


 .custom-hero{
    position: relative;
    height: 470px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Different Images */
.hero-veterinary{
    background-image: url('https://bazayan.ch/wp-content/uploads/2026/06/Veterinary-APIs-CEP-Grade.png');
}

.hero-pharma{
    background-image: url('https://bazayan.ch/wp-content/uploads/2026/06/Human-APIs.png');
}

.hero-nutra{
    background-image: url('image-3.jpg');
}



.custom-hero .hero-overlay{
    position: absolute;
    inset: 0;
    background: #0B1610;
    opacity: .82;
}

.custom-hero .hero-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.custom-hero .breadcrumb{
    margin-bottom: 15px;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    line-height: 1.5;
}

.custom-hero .breadcrumb a{
    color: #fff;
    text-decoration: none;
}

.custom-hero .breadcrumb span{
    margin: 0 5px;
}

.custom-hero h2{
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: #fff;
    max-width: 800px;
}

.veterinary em{
    color: #b8975a !important;
    font-style: italic;
}


/* ==========================
   Large Desktop
========================== */
@media (max-width: 1400px){

    .custom-hero .hero-content{
        padding-left: 40px;
        padding-right: 40px;
    }

}


/* ==========================
   Laptop
========================== */
@media (max-width: 1200px){

    .custom-hero{
        height: 420px;
    }

    .custom-hero h2{
        font-size: 50px;
    }

}


/* ==========================
   Tablet
========================== */
@media (max-width: 992px){

    .custom-hero{
        height: 380px;
    }

    .custom-hero .hero-content{
        padding: 0 30px;
    }

    .custom-hero h2{
        font-size: 42px;
        max-width: 100%;
    }

}


/* ==========================
   Mobile Landscape
========================== */
@media (max-width: 768px){

    .custom-hero{
        height: 320px;
    }

    .custom-hero .hero-content{
        padding: 0 20px;
    }

    .custom-hero .breadcrumb{
        font-size: 11px;
        margin-bottom: 10px;
    }

    .custom-hero h2{
        font-size: 34px;
        line-height: 1.2;
    }

}


/* ==========================
   Mobile Portrait
========================== */
@media (max-width: 576px){

    .custom-hero{
        height: 280px;
    }

    .custom-hero .hero-content{
        padding: 0 15px;
    }

    .custom-hero .breadcrumb{
        font-size: 10px;
        margin-bottom: 8px;
    }

    .custom-hero h2{
        font-size: 28px;
        line-height: 1.25;
    }

}


/* ==========================
   Small Phones
========================== */
@media (max-width: 375px){

    .custom-hero{
        height: 250px;
    }

    .custom-hero h2{
        font-size: 24px;
    }

}
  

  
  div#google_language_translator{
      height: 35px;
  }
  


    
    
    
    
    
    
    
    
    
    
    
    
    

