/* Global Styles */
:root {
    --primary-color: #1a5276;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #c0392b;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgb(0 158 227), rgb(0 0 0)), url(https://images.unsplash.com/photo-1581093450023-4de467f7ddf9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Products Section */
.products {
    background-color: var(--light-color);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-category {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-list {
    list-style: none;
}

.product-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Franchise Section */
.franchise {
    background-color: white;
}

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.benefit-item:hover i {
    color: white;
}

/* Manufacturing Section */
.manufacturing {
    background-color: var(--light-color);
}

.manufacturing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Global Section */
.global {
    background-color: white;
}

.countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.country {
    background-color: var(--light-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

/* Certifications Section */
.certifications {
    background-color: var(--light-color);
}

.cert-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.cert-logo {
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cert-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* FAQ Section Styles */

.faq {
  padding: 60px 20px;
  background: #f0f4f8;
  font-family: Arial, sans-serif;
}

.faq .section-title h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0d47a1;
  font-size: 2.2rem;
  font-weight: 700;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
  overflow: hidden;
}

/* FAQ Question */

.faq-question {
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d47a1;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-question.active {
  background-color: #90caf9;
  color: #0d47a1;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

/* FAQ Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafafa;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
  /* prevent flicker */
  will-change: max-height, padding;
}

/* Show answer: padding added and max-height unlimited */

.faq-answer.show {
  padding: 15px 20px;
  max-height: 1000px; /* large enough to fit content */
}

.faq-answer p {
  margin: 0;
}


/* Contact Section */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 40px 0;
    }
}
/* Benefit List Styles */
.benefit-list {
    list-style: none;
    margin: 20px 0;
}

.benefit-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.product-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.section-title h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-title p {
    font-size: 1rem;
    color: #555;
}
.product-category h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}
  .pcd-franchise h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .pcd-franchise h3 {
    font-weight: 600;
    font-size: 1.75rem;
    color: #555;
  }
  .benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .pcd-franchise p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .manufacturing-section {
  padding: 60px 15px;
  background-color: #fff;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.manufacturing-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #007bff;
}

.manufacturing-section .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
  line-height: 1.6;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.feature-card .icon {
  font-size: 2.6rem;
  margin-right: 1.25rem;
  color: #007bff;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.feature-card h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-size: 1.25rem;
  color: #222;
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.benefits {
  margin-top: 3rem;
}

.benefits h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.benefits ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  color: #444;
}

.benefits ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.benefits ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 1.4rem;
  top: 0;
  line-height: 1;
  user-select: none;
}

.benefits p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background-color: #007bff;
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  font-size: 1.1rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive */

@media (max-width: 991px) {
  .features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .manufacturing-section h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1rem 1rem;
  }

  .feature-card .icon {
    font-size: 2rem;
    margin-right: 1rem;
  }
}
   .certifications-section {
      background: linear-gradient(135deg, #f9f9f9, #e6f2ff);
      padding: 80px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .certifications-section .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .certifications-section h2 {
      text-align: center;
      font-size: 2.8rem;
      color: #003366;
      margin-bottom: 20px;
    }

    .certifications-section p.intro {
      text-align: center;
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 50px;
      color: #555;
    }

    .certifications-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    @media (max-width: 991px) {
      .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .certifications-grid {
        grid-template-columns: 1fr;
      }
    }

    .cert-card {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .cert-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .cert-card i {
      font-size: 2.5rem;
      color: #007bff;
      margin-bottom: 15px;
    }

    .cert-card h3 {
      font-size: 1.3rem;
      color: #004080;
      margin-bottom: 10px;
    }

    .cert-card p {
      font-size: 0.95rem;
      color: #555;
    }

/*/demo 3*/

  .expertise-section {
    background: #f8f9fa;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .expertise-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.8rem;
  }

  .expertise-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
  }

  .expertise-section ul {
    list-style: none;
    padding-left: 0;
  }

  .expertise-section ul li {
    margin-bottom: 14px;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .expertise-section ul li .checkmark {
    color: #4caf50; /* green */
    font-size: 18px;
    flex-shrink: 0;
  }

  /* Responsive columns */
  @media (min-width: 768px) {
    .row-flex {
      display: flex;
      gap: 40px;
    }

    .col-flex {
      flex: 1;
    }
  }

  @media (max-width: 767px) {
    .row-flex {
      display: block;
    }

    .col-flex {
      margin-bottom: 30px;
    }
  }
    .trust-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #004080;
  }
  .trust-section p {
    font-size: 1.1rem;
    color: #333;
  }
  .trust-section ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #222;
  }

  /* Responsive tweaks */
  @media (max-width: 767px) {
    .trust-section h2 {
      font-size: 1.6rem;
    }
    .trust-section p, .trust-section ul li {
      font-size: 1rem;
    }
  }


/*  /demo 5*/

 .private-label-pharma {
    padding: 60px 20px;
    background-color: #f9fbfd;
  }

  .container {
    max-width: 1200px;
    margin: auto;
  }

  .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #0d47a1;
    margin-bottom: 50px;
    font-weight: 600;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .feature-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .feature-item h3 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .feature-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }

  @media (max-width: 480px) {
    .section-title {
      font-size: 1.8rem;
    }
  }
/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    animation: fadeIn 1s ease;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #0d47a1;
    margin: 10px auto 0;
    border-radius: 2px;
}
.hero {
    background: #0d47a1;
    color: white;
    padding: 60px 0;
    text-align: center;
    animation: slideDown 1s ease;
}
.about, .private-label-pharma, .nutra-section, .faqs-section {
    padding: 60px 0;
    animation: fadeInUp 1s ease;
}
.feature-item, .faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}
.feature-item:hover, .faq-item:hover {
    transform: translateY(-5px);
}
.btn {
    background: #0d47a1;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}
.btn:hover {
    background: #08306b;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  /* border-bottom: 1px solid #ddd; */ /* remove this if h2 has border */
  padding-bottom: 0;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d47a1;
  border-bottom: 3px solid #0d47a1;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 0;
}

