.chairman-section {
  background: #f8f9fb;
}

/* Image */
.chairman-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.chairman-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Gradient Overlay */
.chairman-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 36, 91, 0.7),
    rgba(2, 36, 91, 0)
  );
}

/* Content */
.chairman-content {
  padding-left: 20px;
}

.chairman-subtitle {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chairman-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.chairman-text {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 15px;
}

.chairman-name {
  margin-top: 20px;
  font-weight: 700;
}

.chairman-designation {
  color: #0d6efd;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .chairman-content {
    padding-left: 0;
    text-align: center;
  }

  .chairman-title {
    font-size: 30px;
  }
}



.mission-section {
    background: #ffffff;
  }
  
  /* Content */
  .mission-subtitle {
    color: #0d6efd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .mission-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 20px;
  }
  
  .mission-text {
    color: #6c757d;
    line-height: 1.8;
  }
  
  /* Points */
  .mission-points {
    margin-top: 20px;
  }
  
  .mission-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .mission-item i {
    color: #0d6efd;
    margin-right: 10px;
    font-size: 18px;
  }
  
  /* Image */
  .mission-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .mission-img-box img {
    border-radius: 20px;
  }
  
  /* Overlay effect */
  .mission-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(2, 36, 91, 0.4),
      rgba(2, 36, 91, 0)
    );
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .mission-title {
      font-size: 28px;
    }
  
    .mission-content {
      text-align: center;
    }
  
    .mission-item {
      justify-content: center;
    }
  }


  .zigzag-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .zigzag-section p {
    color: #6c757d;
    line-height: 1.8;
  }
  
  .zigzag-section img {
    border-radius: 20px;
  }


  ul li::marker {
    color: red; /* your color */
  }


  .quality-section {
    background: #f8f9fb;
  }
  
  /* Image */
  .quality-img-box {
    border-radius: 20px;
    overflow: hidden;
  }
  
  .quality-img-box img {
    border-radius: 20px;
    width: 100%;
  }
  
  /* Content */
  .quality-subtitle {
    color: #0d6efd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .quality-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 20px;
  }
  
  .quality-text {
    color: #6c757d;
    line-height: 1.8;
  }
  
  /* List */
  .quality-list {
    margin-top: 20px;
    padding-left: 20px;
  }
  
  .quality-list li {
    margin-bottom: 10px;
  }
  
  /* Change bullet color */
  .quality-list li::marker {
    color: #0d6efd;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .quality-content {
      text-align: center;
    }
  
    .quality-title {
      font-size: 28px;
    }
  }



  .satisfaction-section {
    background: #fff;
  }
  
  /* Circle */
  .satisfaction-circle {
    width: 220px;
    height: 220px;
    background: orange;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .satisfaction-circle span {
    font-size: 40px;
    font-weight: 700;
  }
  
  .satisfaction-circle p {
    margin: 0;
    font-size: 16px;
  }
  
  /* List */
  .satisfaction-list {
    padding-left: 20px;
  }
  
  .satisfaction-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Bullet Color */
  .satisfaction-list li::marker {
    color: orange;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .satisfaction-circle {
      width: 180px;
      height: 180px;
    }
  
    .satisfaction-circle span {
      font-size: 32px;
    }
  
    .satisfaction-content {
      text-align: center;
    }
  
    .satisfaction-list {
      padding-left: 0;
      list-style-position: inside;
    }
  }


  .email-section {
    background: #f8f9fb;
  }
  
  /* Card */
  .email-card {
    background: #fff;
    padding: 12px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .email-card:hover {
    transform: translateY(-5px);
  }
  
  /* Icon */
  .email-icon {
    width: 70px;
    height: 70px;
    background: orange;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
  }
  
  /* Text */
  .email-title {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .email-link {
    color: orange;
    font-size: 18px;
    text-decoration: none;
  }
  
  .email-link:hover {
    text-decoration: underline;
  }



  .blog-meta span {
    margin-right: 15px;
    color: #6c757d;
    font-size: 14px;
  }
  
  .blog-meta i {
    margin-right: 5px;
    color: #0d6efd;
  }
  
  .blog-title {
    font-weight: 700;
  }
  
  .blog-quote {
    background: #f8f9fb;
    padding: 20px;
    border-left: 4px solid #0d6efd;
    font-style: italic;
    margin: 20px 0;
  }
  
  .blog-tags a {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 12px;
    margin: 5px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
  }
  
  .blog-share a {
    margin-left: 10px;
    color: #0d6efd;
    font-size: 16px;
  }
  
  /* Sidebar */
  .sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  
  .sidebar-list {
    padding-left: 0;
    list-style: none;
  }
  
  .sidebar-list li {
    margin-bottom: 10px;
  }
  
  .sidebar-list a {
    text-decoration: none;
    color: #333;
  }
  
  .recent-post img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .recent-post a {
    font-weight: 600;
    text-decoration: none;
    color: #000;
  }
  
  .recent-post small {
    display: block;
    color: #6c757d;
  }


  .contact-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
  }


  /* Container Setup */
.contact-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    font-family: sans-serif;
  }

  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  
  /* Icons and Colors */
  .icon-box {
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  }
  
  .blue-border { border-top-color: #3498db; }
  .blue-bg { background-color: #3498db; }
  
  .green-border { border-top-color: #27ae60; }
  .green-bg { background-color: #27ae60; }
  
  .red-border { border-top-color: #e74c3c; }
  .red-bg { background-color: #e74c3c; }
  
  /* Text Styling */
  h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #444;
  }
  
  /* Responsive adjustment for small screens */
  @media (max-width: 768px) {
    .contact-card {
      flex: 1 1 100%;
    }
  }


  /* Container using Flexbox */
.contact-grid {
    display: flex;
    flex-direction: row; /* Desktop: side-by-side */
    flex-wrap: wrap;     /* Allows wrapping to next line */
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Base Card Styling */
  .contact-card {
    background: #fff;
    /* This is the secret sauce: 
       It tries to be 30% width, but won't go below 300px */
    flex: 1 1 300px; 
    padding: 30px;
    text-align: center;
    border-top: 5px solid #ccc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
  }
  
  /* MOBILE RESPONSIVE FIX */
  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column; /* Forces them to stack vertically */
      align-items: center;
    }
  
    .contact-card {
      width: 100%;       /* Full width on mobile */
      flex: 1 1 100%;    /* Overrides the 300px basis */
      max-width: 100%;   /* Prevents horizontal overflow */
    }
  }



  .map-section {
    padding: 40px 0;
    background: #fff;
  }
  
  .map-container {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
  }
  
  .map-container h4 {
    margin-bottom: 15px;
    color: #333;
  }
  
  /* This ensures the iframe stays within the screen width */
  iframe {
    width: 100%;
    border-radius: 4px;
  }
  
  @media (max-width: 768px) {
    iframe {
      height: 300px; /* Shorter height for mobile screens */
    }
  }



  .contact-split-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .contact-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  /* Info Column Styling */
  .info-column {
    flex: 1 1 400px;
  }
  
  .sub-title {
    color: #e74c3c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .info-column h2 {
    font-size: 28px;
    margin: 15px 0 30px 0;
    color: #2c3e50;
    line-height: 1.3;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .info-text h5 {
    margin: 0;
    font-size: 16px;
    color: #7f8c8d;
  }
  
  .info-text p {
    margin: 5px 0 0 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
  
  /* Form Column Styling */
  .form-column {
    flex: 1 1 400px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
    box-sizing: border-box; /* Important for responsive width */
  }
  
  .submit-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #2980b9;
  }
  
  /* Responsive Fix */
  @media (max-width: 768px) {
    .contact-flex-wrapper {
      flex-direction: column;
    }
    
    .info-column, .form-column {
      flex: 1 1 100%;
      width: 100%;
    }
  }



  .main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the product image isn't cropped weirdly */
    background-color: #fff;
  }
  
  .thumb-row img {
    cursor: pointer;
    transition: 0.3s;
    height: 80px;
    width: 100%;
    object-fit: cover;
  }
  
  .thumb-row img:hover {
    opacity: 0.7;
  }
  
  .active-thumb {
    border: 2px solid #3498db !important;
  }
  
  



  /* Custom primary-soft background for icons */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
  }
  
  /* Rx Symbol Styling */
  .rx-symbol {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: bold;
    color: #0d6efd;
    line-height: 1;
  }
  
  /* Typography adjustments */
  .italic { font-style: italic; }
  
  .card {
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .badge i {
    font-size: 1.5rem;
  }
  
  @media (max-width: 991px) {
    .display-5 {
      font-size: 2rem;
    }
  }