/* =========================
   GLOBAL RESET
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f8fc;
    color: #333;
}

/* =========================
   CONTAINER
========================= */
.pcd-wrapper {
    background: #f8f9fd;
}

.pcd-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* =========================
   HERO
========================= */
.pcd-hero {
    text-align: center;
    margin: 80px 0;
}

.pcd-hero h1 {
    font-size: 34px;
    font-weight: 800;
    color: #273a97;
    margin-bottom: 14px;
}

.pcd-hero p {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* =========================
   FORM
========================= */
.pcd-form-full {
    margin-bottom: 90px;
}

.pcd-form-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 24px;
    border: 1px solid #e3e7f3;
    box-shadow: 0 20px 45px rgba(39,58,151,0.18);
}

.pcd-form-box h2 {
    text-align: center;
    font-size: 34px;
    color: #273a97;
}

.pcd-form-subtext {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

/* Contact Form 7 Grid */
.pcd-form-box .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pcd-form-box textarea,
.pcd-form-box .full-width {
    grid-column: span 4;
}

.pcd-form-box input,
.pcd-form-box textarea,
.pcd-form-box select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dbe0f0;
    font-size: 15px;
    background: #f9faff;
}

.pcd-form-box input:focus,
.pcd-form-box textarea:focus {
    outline: none;
    border-color: #273a97;
    box-shadow: 0 0 0 2px rgba(39,58,151,0.15);
}

.pcd-form-box input[type="submit"] {
    grid-column: span 4;
    background: linear-gradient(135deg, #273a97, #0b5ed7);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
}

/* =========================
   ABOUT
========================= */
.about-pharma-section {
    margin: 20px 0;
}

.about-pharma-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-pharma-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.about-label {
    font-size: 14px;
    font-weight: 700;
    color: #0b5ed7;
    letter-spacing: 1px;
}

.about-pharma-content h2 {
    font-size: 34px;
    color: #273a97;
    margin: 12px 0 16px;
}

.about-pharma-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #273a97;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   CORE COMPETENCIES
========================= */
/* =========================
   CORE COMPETENCIES
========================= */
.acon-core-section {
    margin: 20px 0;
}

.acon-core-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
    align-items: stretch;
}

/* LEFT BIG CARD – Gradient (NO WHITE BG) */
.acon-core-left {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 45px;
    border-radius: 24px;

    grid-row: span 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 🔥 FIX GAP ISSUE */

    box-shadow: 0 20px 45px rgba(39,58,151,0.18);
}

/* Heading */
.acon-core-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #273a97;
    line-height: 1.3;
}

/* Paragraph */
.acon-core-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 0;
}

/* RIGHT CARDS – GLASS STYLE (NO WHITE) */
.acon-core-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    padding: 35px 30px;
    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,255,255,0.4);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.35s ease;
}

.acon-core-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(39,58,151,0.25);
}

/* ICON */
.acon-core-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #273a97, #0b5ed7);
    color: #ffffff;
    border-radius: 50%;

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

    font-size: 26px;
    margin-bottom: 18px;
}

/* CARD TEXT */
.acon-core-card h3 {
    font-size: 20px;
    color: #273a97;
    margin-bottom: 10px;
}

.acon-core-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* =========================
   PRODUCT RANGE
========================= */
/* =========================
   PRODUCT RANGE – MODERN CARD
========================= */

.pcd-product-section {
    text-align: center;
    margin: 20px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #273a97;
    padding-bottom: 30px;
}

.pcd-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* PRODUCT CARD */
.pcd-product-card {
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transition: all 0.35s ease;
}

/* TOP BLUE ICON AREA */
.pcd-product-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 35px;
    background: #0b3f8a;
}

/* BOTTOM TEXT AREA */
.pcd-product-card span {
    display: block;
    background: #ffffff;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* HOVER EFFECT */
.pcd-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(11,94,215,0.35);
}


/* =========================
   FAQ
========================= */
.pcd-faq-section {
    max-width: 950px;
    margin: 0 auto 90px;
}

.pcd-faq-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #273a97;
    margin-bottom: 25px!important
}

.pcd-faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

.pcd-faq-question {
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #273a97;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.pcd-faq-answer {
    display: none;
    padding: 0 24px 22px;
    font-size: 15px;
    color: #555;
}

.pcd-faq-item.active .pcd-faq-answer {
    display: block;
}

/* =========================
   BLOG GRID LAYOUT
========================= */

.custom-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
}

.blog-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #273a97;
    margin-bottom: 40px;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================
   BLOG CARD
========================= */

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Image */
.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Content */
.blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-post-title a {
    color: #273a97;
    text-decoration: none;
}

.blog-post-title a:hover {
    text-decoration: underline;
}

.blog-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* =========================
   READ MORE BUTTON
========================= */

/* =========================
   READ MORE BUTTON
========================= */

.blog-readmore {
    align-self: flex-start;
    background: #273a97;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Arrow hidden by default */
.blog-readmore .arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

/* Hover effect */
.blog-readmore:hover {
    background: #273a97;
    color: #ffffff;
}

.blog-readmore:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =========================
   PAGINATION
========================= */

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 6px;
    background: #f0f2f8;
    color: #273a97;
    text-decoration: none;
    font-weight: 600;
}

.blog-pagination .current {
    background: #273a97;
    color: #ffffff;
}

/* =========================
   DETAIL PAGE CONTENT
========================= */

.single-post .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 15px;
    font-family: Arial, sans-serif;
    line-height: 1.75;
    color: #333;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    color: #273a97;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.single-post .entry-content p {
    margin-bottom: 18px;
    font-size: 16px;
}

/* Featured Image */
.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol {
    margin-left: 20px;
    margin-bottom: 18px;
}

.single-post .entry-content li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #444;
}

/* Links in Content */
.single-post .entry-content a {
    color: #273a97;
    text-decoration: underline;
}

/* Blockquote */
.single-post .entry-content blockquote {
    border-left: 4px solid #273a97;
    padding-left: 14px;
    margin: 20px 0;
    font-style: italic;
    background: #f5f8ff;
}

/* Tables (if any) */
.single-post .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.single-post .entry-content th,
.single-post .entry-content td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 16px;
}

/* =========================
   SINGLE BLOG DETAIL PAGE
========================= */

.single-post article {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 15px;
}

/* Post title */
.single-post h1 {
    color: #273a97;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Featured image */
.single-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Content text */
.single-post p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #333;
}

/* Headings inside content */
.single-post h2,
.single-post h3,
.single-post h4 {
    color: #273a97;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Lists */
.single-post ul,
.single-post ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.single-post li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Links */
.single-post p a {
    color: #273a97;
    text-decoration: underline;
}

/* Tables */
.single-post table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.single-post th,
.single-post td {
    border: 1px solid #ddd;
    padding: 10px;
}


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

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .blog-title {
        font-size: 28px;
    }
}


/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
}

/* =========================
   COMMON CONTAINER
========================= */
.aconwell-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================
   INTRO SECTION
========================= */
.aconwell-intro {
  padding: 20px 0;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #273a97;
  margin-bottom: 18px;
}

.lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  color: #0b5ed7;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
  color: #444;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b5ed7;
}

.intro-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* =========================
   WHAT WE DO SECTION
========================= */
.aconwell-what-we-do {
  padding: 30px 20px 0;
  position: relative;
  overflow: visible !important;
}

/* HALF PURPLE BACKGROUND */
.aconwell-what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 75%;
  background: #7b65b5;
  z-index: 0;
}

/* Elementor safe */
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap {
  overflow: visible !important;
}

/* =========================
   SECTION HEADING
========================= */
.aconwell-head {
  max-width: 900px;
  margin: 0 auto 45px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.aconwell-head h6 {
  color: #e7ddff;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.aconwell-head h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.aconwell-head p {
  color: #f1ecff;
  font-size: 16px;
}

/* =========================
   FLIP CARDS
========================= */
.aconwell-flip-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.flip-card {
  perspective: 1200px;
}

.flip-inner {
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 32px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  backface-visibility: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.flip-front {
  background: #ffffff;
}

.flip-front h3 {
  color: #6b4dbb;
  font-size: 22px;
  margin-bottom: 10px;
}

.flip-front p {
  font-size: 15px;
  color: #555;
}

.flip-back {
  background: #5a3fbf;
  transform: rotateY(180deg);
}

.flip-back p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   WHY CHOOSE US
========================= */
.aconwell-why-choose {
  background: #f6f8fc;
  padding: 20px 0 100px;
  position: relative;
  z-index: 1;
}

.aconwell-why-choose h3 {
  font-size: 30px;
  font-weight: 800;
  color: #273a97;
  margin-bottom: 30px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .aconwell-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .aconwell-head h2 {
    font-size: 32px;
  }

  .aconwell-what-we-do::before {
    height: 60%;
  }
}


/* 2nd Section after banner */

/* Section spacing */
.our-division-wrap {
  padding: 60px 0;
  background: #f8fbff;
}

.division-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.division-slider,
.division-content-card {
  height: 100%;
}

/* SLIDER IMAGE */
.division-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.division-content-card {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.division-main-title {
  font-size: 23px;
  font-weight: 700;
  color: #0b3c6d;
  margin-bottom: 15px;
}

.division-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* FEATURE ROW */
.division-features-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.division-feature {
  flex: 1;
  display: flex;
  gap: 12px;
  background: #f4f8fd;
  padding: 15px;
  border-radius: 10px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 24px;
  color: #1b75bb;
  margin-top: 4px;
}

.feature-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.feature-text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .division-features-row {
    flex-direction: column;
  }
}

/*****2nd Section End ****/

/***** Counter Section *****/

.stats-section {
    padding: 80px 0;
    background: #fafafa;
}

.circle-box {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

.circle-box svg {
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
}

.circle-box circle {
    fill: none;
    stroke-width: 8;
    stroke: #ddd;
}

.circle-box .progress {
    stroke: #273a97;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 2s ease;
}

.circle-box .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #273a97;
}

.stats-section h3 {
    font-size: 38px;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 5px;
}

.stats-section p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}
.icon .dashicons {
    font-size: 36px;
    color: #2e6f4e;
}

.stats-title {
   font-size: 36px;
   font-weight: 700;
   color: #223a66;
   text-transform: capitalize;
}

/*****Choose Us *****/

.why-choose-section {
  padding: 80px 0;
}

.why-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-text {
  font-size: 18px;
  line-height: 1.7;
}

.vertical-line {
  width: 4px;
  height: 220px;
  background: #0a67b2;
}

.feature-box {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #0000CD;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 15px;
  margin: 0;
}

@media (max-width: 767px) {
  .vertical-line {
    display: none;
  }
}

/***** Reviews Css ******/

.testimonial-section {
  padding: 80px 0;
  background: #e9e4e2;
}

.testimonial-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #2f4f3a;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.stars {
  font-size: 22px;
  color: #ffa500;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #2f4f3a;
}

.testimonial-location {
  font-size: 14px;
  color: #666;
}

/****** Division Css ********/

.innovation-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;  
  color: #1f3b6d;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* GRID */
.boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* LINK RESET */
.division-link {
  text-decoration: none;
}

/* CARD */
.box {
  background: #007bff4f;
  padding: 40px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 IMPORTANT PART */
  border-radius: 60px 20px 60px 20px;
  /*
    top-left     → 60px
    top-right    → 20px
    bottom-right → 60px
    bottom-left  → 20px
  */

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}


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

/* HOVER EFFECT */
.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

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

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

/******Product Table Css ******/

body {
	font-family: "Roboto", sans-serif;
}

/* MAIN WRAPPER */
.product-contact-wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

/* LEFT SIDE */
.product-section {
	flex: 70%;
}

.product-section h2 {
	margin-bottom: 10px;
}

.osti-para {
	margin-bottom: 20px;
	line-height: 1.6;
}

/* TABLE */
#watran-table {
	width: 100%;
	border-collapse: collapse;
}

#watran-table th {
	background: #223a66;
	color: #fff;
	padding: 10px;
}

#watran-table td {
	border: 1px solid #ddd;
	padding: 10px;
}

.view-detail-btn {
	color: #223a66;
	text-decoration: none;
	font-weight: 500;
}

.view-detail-btn:hover {
	text-decoration: underline;
}

/* RIGHT SIDE COLUMN */
.right-sidebar {
	flex: 30%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* CONTACT FORM BOX */
.contact-section {
	background: #ffa31987;
	padding: 25px;
	border-radius: 8px;
	position: sticky;
	top: 20px;
}

.contact-section h3 {
	margin-bottom: 15px;
}

.contact-section label {
	display: block;
	margin: 12px 0 6px;
	font-weight: 600;
}

.contact-section input,
.contact-section textarea {
	width: 100%;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

.contact-section textarea {
	min-height: 90px;
}

.contact-section button {
	margin-top: 15px;
	background: #223a66;
	color: #fff;
	padding: 10px 18px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.contact-section button:hover {
	background: #1a2f52;
}

/* PRODUCT LIST BOX */
.sidebar-products {
	background: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-products h4 {
	margin-bottom: 10px;
}

.product-random-list {
	padding-left: 18px;
	margin: 0;
}

.product-random-list li {
	padding: 6px 0;
	font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
	.product-contact-wrapper {
		flex-direction: column;
	}

	.right-sidebar {
		width: 100%;
	}

	.contact-section {
		position: relative;
	}
}
.btn-send-query {
    display: inline-block;
    background: #223a66;
    color: #fff !important;
    padding: 7px 19px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
	margin-top: 5px;
}

.btn-send-query:hover {
    background: #223a66c9;
    text-decoration: none;
}

/* Remove theme pseudo-elements */
.view-pdf-link::before,
.view-pdf-link::after,
.btn-send-query::before,
.btn-send-query::after {
    content: none !important;
}

.product-actions-vertical br {
    display: none;
}
/* Wrapper */
.product-short-specs.simple-style {
    margin-top: 15px;
}

/* Text rows */
.product-short-specs.simple-style p {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #000;
    font-size: 16px;
    line-height: 1.6;
	color: #000;
}

.product-short-specs.simple-style strong {
    color: #000;
}
.view-pdf-link {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

body {
  font-family: 'Roboto', sans-serif;
}

.product-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #223a66;
}

.osti-para {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

/* Table Wrapper */
.table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Table */
#aconwell-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

/* Header */
#aconwell-table thead {
  background: #273a97;
}

#aconwell-table th {
  padding: 14px;
  text-align: left;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

/* Body */
#aconwell-table td {
  padding: 14px;
  font-size: 16.5px;
  color: #333;
  border-bottom: 1px solid #eee;
}

/* Zebra Rows */
#aconwell-table tbody tr:nth-child(even) {
  background: #f8f9fb;
}

#aconwell-table tbody tr:hover {
  background: #eef2f8;
}

/* Links */
.product-section td a {
  color: #223a66;
  text-decoration: none;
  font-weight: 500;
}

.product-section td a:hover {
  text-decoration: none;
}

/* Detail Button */
.view-detail-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #273a97;
  color: #fff !important;
  font-size: 13px;
  transition: 0.3s;
}

.view-detail-btn:hover {
  background: #162746;
}

/* Pagination */
#watran-pagination {
  text-align: center;
  margin-top: 25px;
}

#watran-pagination button {
  margin: 4px;
  padding: 8px 16px;
  border: 1px solid #223a66;
  background: #fff;
  color: #223a66;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

#watran-pagination button.active,
#watran-pagination button:hover {
  background: #223a66;
  color: #fff;
}
table {    
    line-height: 1!important;    
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    line-height: 50px;
    height: 50px;
    padding: 5px 1px 0px 27px!important;  
    font-size: 17px!important;
    font-weight: normal;
    outline: none;
}
.products {
    margin: 40px 0 20px 0!important;
}
.product-slider{
	margin: 170px 0 20px 0!important;
}
.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    image-rendering: auto;
}
.woocommerce-product-gallery {
    max-width: 520px; /* match your design */
}

.woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
img[loading="lazy"] {
    filter: none !important;
}

.woocommerce-product-gallery__trigger,
.woocommerce-product-gallery__image a {
    pointer-events: none !important;
    cursor: default !important;
}
.cf7-beauty-form {
  font-family: 'Roboto', sans-serif;
}

.cf7-field {
  margin-bottom: 15px;
}

.cf7-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.cf7-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.cf7-field input:focus {
  border-color: #0a7cff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(10,124,255,0.15);
}

.cf7-submit input {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0a7cff, #005ecb);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cf7-submit input:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Error messages */
.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
}

.wpcf7-response-output {
  border-radius: 8px;
  font-size: 14px;
}

div#popmake-1824{
	min-width: 0%;
    max-width: 550px!important;
    top: 100px;
    left: 800px!important;
    opacity: 1;
    display: block;
}
.navbar {
    background-color: #273a97;
	margin-top: 5px;    
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {  
    color: #fff!important;  
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {   
    color: #fff;    
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus {
	color: #fff;    
}
.phone-numb {   
    font-size: 21px;    
}
a.phone-numb:hover{   
    text-decoration:none;  
}

/******** Division Page Css Start *******/
/* Wrapper spacing */
/* Container for AJAX table with horizontal scroll */
.ajax-product-table {
    margin-top: 30px;
    overflow-x: auto;
}

/* Table base */
.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    table-layout: fixed; /* Fixes column widths for long content */
}

/* Header */
.product-table thead {
    background: linear-gradient(90deg, #0d2c54, #1e4b87);
    color: #ffffff;
}

.product-table th {
    padding: 16px 14px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Rows */
.product-table td {
    padding: 14px;
    border-bottom: 1px solid #eef1f5;
    font-size: 14px;
    color: #333;
    vertical-align: top;
    word-wrap: break-word; /* Wrap long content */
    white-space: normal;
}

/* Alternating rows */
.product-table tbody tr:nth-child(even) {
    background: #f9fbff;
}

/* Hover effect */
.product-table tbody tr:hover {
    background: #eef5ff;
    transition: 0.3s ease;
}

/* Product category style */
.product-table td:first-child a {
    background: #e8f1ff;
    color: #1e4b87;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}

/* Brand name */
.product-table td:nth-child(2) {
    font-weight: 600;
    color: #0d2c54;
}

/* View button */
.view-btn {
    display: inline-block;
    padding: 7px 14px;
    background: #0d2c54;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.view-btn:hover {
    background: #1e4b87;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(13,44,84,0.25);
}

/* Pagination */
.ajax-pagination {
    margin-top: 25px;
    text-align: center;
}

.ajax-pagination .page-numbers {
    display: inline-block;
    margin: 4px;
    padding: 8px 12px;
    background: #f1f4f9;
    border-radius: 6px;
    text-decoration: none;
    color: #0d2c54;
    font-weight: 600;
}

.ajax-pagination .page-numbers.current {
    background: #0d2c54;
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .product-table th,
    .product-table td {
        padding: 10px;
        font-size: 13px;
    }

    .view-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .product-table {
        display: block;
        width: 100%;
    }

    .product-table thead {
        display: none;
    }

    .product-table tbody tr {
        display: block;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        padding: 10px;
    }

    .product-table td {
        display: block;
        text-align: right;
        padding: 8px 10px;
        border: none;
        position: relative;
    }

    .product-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: 600;
        color: #0d2c54;
        text-align: left;
    }

    .view-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

/* TAB STYLING */
.deltis-tabs {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.tab-btn {
    background: #3858e969 !important;
    border: none;
    padding: 12px 22px;
    margin: 6px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: #273a97;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.tab-btn.active {
    background: #273a97!important;
    color: #fff;
    box-shadow: 0 8px 18px rgba(90, 75, 129, 0.35);
    transform: translateY(-2px) scale(1.05);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 3px rgba(123,107,179,0.25);
}

/*****Product Slider Section ******/

/* ===============================
   SECTION WRAPPER
================================ */
.pharma-slider-section {
  padding: 70px 0;
  background: #f5f9ff;
  position: relative;
}

/* ===============================
   SLIDER WRAPPER
================================ */
.pharma-slider {
  padding: 40px 0 60px;
}

/* ===============================
   SLIDE CARD
================================ */
.pharma-slider .swiper-slide {
  height: 220px;
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Hover effect */
.pharma-slider .swiper-slide:hover {
  transform: translateY(-8px);
}

/* ===============================
   ICON + CONTENT
================================ */
.card-icon {
  font-size: 40px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.5;
}

/* ===============================
   COLOR PALETTE (PHARMA STYLE)
================================ */
.green  { background: linear-gradient(135deg,#0000CD,#0000CD); }
.orange { background: linear-gradient(135deg,#1E90FF,#1E90FF); }
.red    { background: linear-gradient(135deg,#0000CD,#0000CD); }
.blue   { background: linear-gradient(135deg,#1E90FF,#1E90FF); }
.purple { background: linear-gradient(135deg,#0000CD,#0000CD); }
.teal   { background: linear-gradient(135deg,#1E90FF,#1E90FF); }
.dark   { background: linear-gradient(135deg,#0000CD,#0000CD); }

/* ===============================
   CENTER ACTIVE SLIDE
================================ */
.swiper-slide-active {
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  z-index: 2;
}

/* Fade side slides slightly */
.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.7;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .pharma-slider .swiper-slide {
    height: auto;
    padding: 22px;
  }
}






