  /* about */
  .about-sectionn {
      max-width: 1400px;
      margin: 0 auto;
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
  }

  .about-headerr {
      text-align: center;
      padding: 40px 20px 30px;
      background-color: #fff;
  }

  .about-headerr h1 {
      color: #2C5AA0;
      font-size: 2.5rem;
      font-weight: 600;
  }

  .content-wrapperr {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 20px;
      gap: 40px;
  }

  .image-containerr {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .image-containerr img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
  }

  .text-containerr {
      flex: 1;
      min-width: 280px;
      padding: 0 20px;
  }

  .text-containerr p {
      color: #2C5AA0;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .about-headerr h1 {
          font-size: 2rem;
      }

      .content-wrapperr {
          flex-direction: column;
          padding: 20px 15px;
          gap: 30px;
      }

      .text-containerr {
          padding: 0 10px;
      }

      .text-containerr p {
          font-size: 1rem;
          text-align: left;
      }
  }

  @media (max-width: 480px) {


      .about-headerr {
          padding: 30px 15px 20px;
      }

      .about-headerr h1 {
          font-size: 1.75rem;
      }

      .content-wrapperr {
          padding: 15px 10px;
          gap: 20px;
      }

      .image-containerr {
          min-width: 100%;
      }

      .text-containerr {
          padding: 0;
      }

      .text-containerr p {
          font-size: 0.95rem;
          line-height: 1.6;
      }
  }

  /* vision & mission */
  .visionMission {
      background-color: #2A4A7C;
  }

  .header {
      text-align: center;
      padding: 30px 20px;
      color: white;
  }

  .header h1 {
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 20px;
  }

  .tabs {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
  }

  .tab-button {
      background-color: white;
      color: #3d5a80;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
  }

  .tab-button:hover {
      background-color: #e8f0fe;
      transform: translateY(-2px);
  }

  .tab-button.active {
      background-color: #2c4766;
      color: white;
  }

  .content-section {
      margin: 20px;
      border-radius: 15px;
      overflow: hidden;
      min-height: 400px;
  }

  .tab-content {
      display: none;
      animation: fadeIn 0.5s ease;
  }

  .tab-content.active {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      padding: 40px;
  }



  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .image-side img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
  }

  .text-side {
      flex: 1;
      min-width: 280px;
      padding: 35px;
      background: white;
      border-radius: 20px;
  }

  .text-side h2 {
      color: #3d5a80;
      font-size: 1.5rem;
      margin-bottom: 20px;
  }

  .text-side p {
      color: #2c4766;
      line-height: 1.8;
      font-size: 1.05rem;
      margin-bottom: 15px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .header h1 {
          font-size: 1.4rem;
      }

      .tabs {
          gap: 10px;
      }

      .tab-button {
          padding: 10px 20px;
          font-size: 0.9rem;
      }

      .tab-content.active {
          flex-direction: column;
          padding: 25px;
      }

      .content-section {
          margin: 15px;
      }

      .text-side h2 {
          font-size: 1.3rem;
      }

      .text-side p {
          font-size: 1rem;
      }
  }

  @media (max-width: 480px) {
      .header {
          padding: 20px 15px;
      }

      .header h1 {
          font-size: 1.2rem;
      }

      .tab-button {
          padding: 8px 16px;
          font-size: 0.85rem;
      }

      .tab-content.active {
          padding: 20px;
          gap: 20px;
      }

      .image-side,
      .text-side {
          min-width: 100%;
      }
  }

  /* our founder */
  .founder-section {
      max-width: 1400px;
      margin: 20px auto;
      overflow: hidden;
  }

  .founder-header {
      text-align: center;
      padding: 40px 20px 30px;
      background-color: #fff;
  }

  .founder-header h1 {
      color: #2c5a8d;
      font-size: 2.5rem;
      font-weight: 600;
  }

  .founder-content {
      display: flex;
      align-items: center;
      padding: 40px 60px 60px;
      gap: 50px;
      background-color: #fafafa;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  }

  .image-container {
      flex-shrink: 0;
      width: 600px;
  }

  .image-container img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
  }

  .text-container {
      flex: 1;
      padding-top: 10px;
  }

  .quote {
      color: #2c5a8d;
      font-size: 1.15rem;
      line-height: 1.8;
      margin-bottom: 25px;
      font-style: italic;
  }

  .quote:before {
      content: '"';
  }

  .quote:after {
      content: '"';
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .founder-content {
          padding: 40px 40px 50px;
          gap: 40px;
      }

      .image-container {
          width: 240px;
      }
  }

  @media (max-width: 768px) {
      .founder-header h1 {
          font-size: 2rem;
      }

      .founder-content {
          flex-direction: column;
          align-items: center;
          padding: 30px 30px 40px;
          gap: 30px;
      }

      .image-container {
          width: 280px;
      }

      .text-container {
          padding-top: 0;
      }

      .quote {
          font-size: 1.1rem;
          text-align: left;
      }
  }

  @media (max-width: 480px) {

      .founder-header {
          padding: 30px 15px 20px;
      }

      .founder-header h1 {
          font-size: 1.75rem;
      }

      .founder-content {
          padding: 25px 20px 35px;
          gap: 25px;
      }

      .image-container {
          width: 100%;
          max-width: 280px;
      }

      .quote {
          font-size: 1rem;
          line-height: 1.7;
          margin-bottom: 20px;
      }
  }

  /* certification */
  .compliance-header {
      text-align: center;
      padding: 40px 20px 30px;
      background-color: #fff;
  }

  .compliance-header h1 {
      color: #2c5a8d;
      font-size: 2.5rem;
      font-weight: 600;
  }

  .certifications-container {
      background: linear-gradient(180deg, #c8d5f0 0%, #b8c9e8 100%);
      padding: 50px 40px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .logos-wrapper {
      max-width: 900px;
      width: 100%;
  }

  .logos-wrapper img {
      width: 100%;
      height: auto;
      display: block;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .compliance-header {
          padding: 30px 20px 25px;
      }

      .compliance-header h1 {
          font-size: 2rem;
      }

      .certifications-container {
          padding: 40px 30px;
      }

      .logos-wrapper {
          max-width: 100%;
      }
  }

  @media (max-width: 480px) {

      .compliance-header {
          padding: 25px 15px 20px;
      }

      .compliance-header h1 {
          font-size: 1.5rem;
      }

      .certifications-container {
          padding: 30px 20px;
      }
  }

  /* last Product Explore Section */
  .anchorTag:focus,
  .anchorTag:visited,
  .anchorTag:active {
      color: #fff;
  }

  .products-section {
      max-width: 1200px;
      margin: 0 auto;
      background-color: white;
      overflow: hidden;
  }

  .products-header {
      text-align: center;
      padding: 40px 20px 30px;
      background-color: #fff;
  }

  .products-header h1 {
      color: #2c5a8d;
      font-size: 2.5rem;
      font-weight: 600;
  }

  .products-content {
      display: flex;
      align-items: center;
      padding: 40px 60px 60px;
      gap: 60px;
      background-color: #fff;
  }

  .image-container {
      flex: 1;
      min-width: 280px;
  }

  .image-container img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
  }

  .text-container {
      flex: 1;
      min-width: 280px;
      text-align: center;
  }

  .brand-name {
      color: #2c5a8d;
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 15px;
  }

  .tagline {
      color: #2c5a8d;
      font-size: 1.3rem;
      margin-bottom: 30px;
      font-weight: 500;
  }

  .cta-button {
      background-color: #2c5a8d;
      color: white;
      padding: 15px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: Georgia, serif;
  }

  .cta-button:hover {
      background-color: #234a73;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .cta-button:active {
      transform: translateY(0);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .products-content {
          padding: 40px 40px 50px;
          gap: 40px;
      }

      .brand-name {
          font-size: 2.2rem;
      }

      .tagline {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 768px) {
      .products-header h1 {
          font-size: 2rem;
      }

      .products-content {
          flex-direction: column;
          padding: 30px 30px 40px;
          gap: 30px;
      }

      .image-container {
          width: 100%;
          max-width: 400px;
      }

      .text-container {
          width: 100%;
      }

      .brand-name {
          font-size: 2rem;
      }

      .tagline {
          font-size: 1.15rem;
      }

      .cta-button {
          padding: 14px 35px;
          font-size: 1.05rem;
      }
  }

  @media (max-width: 480px) {
      .products-header {
          padding: 30px 15px 20px;
      }

      .products-header h1 {
          font-size: 1.6rem;
      }

      .products-content {
          padding: 25px 20px 35px;
          gap: 25px;
      }

      .brand-name {
          font-size: 1.8rem;
      }

      .tagline {
          font-size: 1.05rem;
          margin-bottom: 25px;
      }

      .cta-button {
          padding: 12px 30px;
          font-size: 1rem;
      }
  }