
   * {
     /* margin: 0;
      padding: 0;*/
      box-sizing: border-box;
    }
    
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:    "wdth" 100;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
body, html {
    margin: 0;
    padding: 0;

  }
    section {
      padding: 60px 20px;
    }
     .hero-cards-fullpage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 85vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.card {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 50%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.title {
  font-size: 1.8rem;
  font-weight: 700;
  
  margin-bottom: 0.75rem;
}

.description {
  font-size: 1rem;
  font-weight: 300;

  opacity: 0.85;
}

/* Responsive grid collapse */
@media (max-width: 1200px) {
  .hero-cards-fullpage {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .card {
    height: 45vh;
  }
}

@media (max-width: 768px) {
  .hero-cards-fullpage {
    grid-template-columns: 1fr;
    height: auto;
  }

  .card {
    height: 60vh;
  }

  .title {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .card-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem;
    text-align: center;
    width: 100%;
    background: #318eb370;
}
}



    .intro-video iframe {
      width: 100%;
      height: 500px;
      border: none;
    }
    .swiper {
      width: 100%;
      position: relative;
    }
    .swiper-slide img {
      width: 100%;
      height: auto;
    }
    .swiper-button-next, .swiper-button-prev {
      color: #333;
    }
    

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  background: #f9f9f9;
  gap: 40px;
}

.split-section .text-content {
  flex: 1 1 50%;
  
}

.split-section .text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;

}

.split-section .text-content p {
  font-size: 1.25rem;

  color: #444;
  margin-bottom: 30px;
}

.split-section .image-content {
  flex: 1 1 40%;
  text-align: center;
}

.split-section .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Read More Button */


.footer-section {
  /* background: linear-gradient(109deg, #2898EC 36%, #17C73E 77%); */
  background: #f2f2f2;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
 
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #131313;
  border-bottom: 1px solid rgb(66 66 66 / 30%);
  padding-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #131313;
    text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.7;
}

.footer-column p {
  font-size: 0.85rem;
 
  margin: 0;
  color: #131313;
  color: ;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #eaeaea;
}


	  
	  /*Navigation*/
	  
	   .navbar {
     /* background: linear-gradient(109deg, #2898EC 36%, #17C73E 77%);*/
     background: #165da9;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1001;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }
.logo img{
	max-width: 220px;
	height: auto;
}
    /* FRIES HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
      display: flex;
    }

    .nav-links > ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 0.75rem;
      border-radius: 4px;
      transition: background 0.3s;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .has-dropdown .arrow {
      margin-left: 5px;
      font-size: 0.75rem;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      list-style-type: none;
      background: white;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      border-radius: 6px;
      padding: 0.5rem 0;
      z-index: 1002;
      min-width: 200px;
      text-align: center;
    }

    .has-dropdown:hover .dropdown {
      display: block;
    }

    .dropdown li {
      padding: 0.4rem 0;
      border-bottom: 1px solid #f1f1f1;
    }

    .dropdown li:last-child {
      border-bottom: none;
    }

    .dropdown li a {
      color: #333;
      text-decoration: none;
      padding: 0.5rem 1rem;
      display: block;
      transition: background 0.2s;
    }

    .dropdown li a:hover {
      background: #f9f9f9;
    }

    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }

.business-icons img {
			max-width: 250px;
      border: 1px solid #6ca6df30;
		}

    /* MOBILE */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }
		.business-icons img{
			width: 100%;
		}
      .nav-links {
        position: fixed;
        top: 0;
        left: -280px;
        height: 100vh;
        width: 280px;
        background: #ffffff;
        padding: 1rem 1.25rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease-in-out;
        z-index: 1002;
        overflow-y: auto;
        flex-direction: column;
      }

      .nav-links.open {
        left: 0;
      }

      .nav-links > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
      }

      .nav-links ul li {
        width: 100%;
      }

      .nav-links a {
        color: #333;
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.95rem;
        border-radius: 6px;
        transition: background 0.2s ease;
      }

      .nav-links a:hover {
        background-color: #f3f4f6;
      }

      .has-dropdown .dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        position: static;
        background: #f9f9f9;
        padding-left: 1rem;
        border-left: 2px solid #e5e7eb;
      }

      .has-dropdown.open .dropdown {
        max-height: 500px;
      }

      .dropdown li a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: 4px;
      }

      .arrow {
        transition: transform 0.3s ease;
        font-size: 0.7rem;
      }

      .has-dropdown.open .arrow {
        transform: rotate(180deg);
      }
    }
 

   @keyframes fadeInUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes textSlide {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .column {
        flex: 1 1 50%;
        height: 50vh;
      }
    }

    @media (max-width: 480px) {
      .column {
        flex: 1 1 100%;
        height: 50vh;
      }
    }
/*News Section*/

 .news-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      gap: 60px;
    }

    .news-left {
      flex: 1;
      font-size: 1.6rem;
      font-weight: 400;
      color: #333;
      
    }

    .news-right {
      flex: 3;
      display: flex;
      flex-direction: column;
      gap: 60px;
      position: relative;
      border-left: 1px solid #ccc;
      padding-left: 40px;
    }

    .news-item {
      display: flex;
      gap: 30px;
    }

    .news-date {
      color: #444;
      font-size: 0.95rem;
      min-width: 150px;
      margin-top: 5px;
    }

    .news-content {
      flex: 1;
    }

    .news-content h4 {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 10px;
      color: #111;
    }

    .news-content p {
      font-size: 0.95rem;
      
      margin: 10px 0;
      color: #555;
    }

    .news-content img,
    .news-content iframe {
      max-width: 100%;
      border-radius: 8px;
      margin-top: 10px;
    }

    .news-divider {
      height: 1px;
      background: #ddd;
      margin: 30px 0;
      width: 100%;
    }

 

    @media (max-width: 768px) {
      .news-container {
        flex-direction: column;
      }

      .news-right {
        padding-left: 0;
        border-left: none;
      }

      .news-item {
        flex-direction: column;
      }

      .news-date {
        margin-bottom: 10px;
      }
    }
/*Video Section Home page*/
 .video-carousel-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
  }

  .video-carousel-wrapper .video-section,
  .video-carousel-wrapper .carousel-section {
    flex: 1 1 45%;
    min-width: 300px;
  }

  .video-section iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
  }

  .carousel-section .swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .carousel-section .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* Optional: hide arrows if needed */
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .video-carousel-wrapper {
      flex-direction: column;
    }
  }

.swiper img {
	max-width: 250px;
}
/*Readmore*/
 .read-more-circle-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #2898EC;
      font-weight: 500;
      font-size: 1rem;
      position: relative;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .read-more-circle-btn .text {
      z-index: 1;
    }

    .icon-circle {
      position: relative;
      width: 40px;
      height: 40px;
      flex-shrink: 0;
    }

    .icon-circle svg.arrow-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      color: #2898EC;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .icon-circle svg.circle-stroke {
      width: 40px;
      height: 40px;
      transform: rotate(-90deg);
    }

    .circle-stroke circle {
      fill: none;
      stroke: #2898EC;
      stroke-width: 2;
      stroke-dasharray: 125.6; /* 2πr for r=20 */
      stroke-dashoffset: 125.6;
      transition: stroke-dashoffset 0.6s ease;
    }

    .read-more-circle-btn:hover .circle-stroke circle {
      stroke-dashoffset: 0;
    }

    .read-more-circle-btn:hover .arrow-icon {
      transform: translate(-45%, -50%);
    }   
/* Read More Button */
/*About Page css*/
.about-section {
  padding: 4rem 2rem;
  background-color: #fff;
  
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.about-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 50%;
  min-width: 280px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
 
  color: #444;
}

/*Management*/
.management-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  
  text-align: center;
}

.management-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.management-container {
  max-width: 1200px;
  margin: 0 auto;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 1.5rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #2898EC;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #111;
}

.team-card p {
  font-size: 0.95rem;
  color: #666;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/*Manufacturing Capablities*/
.manufacturing-section {
  padding: 4rem 1rem;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.manufacturing-section h2,
.manufacturing-section h3 {
  text-align: center;
  color: #222;
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.capability-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.capability-table th {
  background: #004aad;
  color: white;
  padding: 1rem;
  text-align: left;
}

.capability-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #ddd;
}

.capability-table tr:nth-child(even) {
  background-color: #f7f7f7;
}

/* Certifications */
.certifications {
  margin-top: 3rem;
  text-align: center;
}

.certifications h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.cert-logos img {
  height: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease;
}

.cert-logos img:hover {
  transform: scale(1.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .capability-table {
    font-size: 0.9rem;
    min-width: 100%;
  }

  .cert-logos {
    gap: 1rem;
  }

  .cert-logos img {
    height: 50px;
    max-width: 90px;
  }
}

@media (max-width: 480px) {
  .manufacturing-section h2,
  .manufacturing-section h3 {
    font-size: 1.3rem;
  }

  .cert-logos img {
    height: 45px;
  }
}



.video-carousel-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 4rem 2rem;
      justify-content: center;
      align-items: flex-start;
      background: #fff;
    }

    .video-section,
    .carousel-section {
      flex: 1 1 500px;
      min-width: 300px;
      /*max-width: 600px;*/
    }

    .video-section h2,
    .carousel-section h2 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      text-align: center;
      color: #222;
    }

    .video-section iframe {
      width: 100%;
      height: 320px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .swiper-container {
      width: 100%;
      padding: 1rem 0;
    }

    .swiper-slide {
      text-align: center;
    }

    .swiper-slide img {
      width: 100%;
      max-height: 150px;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .swiper-pagination {
      text-align: center;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .video-carousel-wrapper {
        flex-direction: column;
        padding: 2rem 1rem;
      }

      .video-section iframe {
        height: 250px;
      }

      .swiper-slide img {
        max-height: 120px;
      }
    }

    /* Ensure vertical swiper doesn't overflow on mobile */
@media (max-width: 767px) {
  .swiper-container {
    height: 350px; /* Matches Swiper height config */
  }

  .swiper-wrapper {
    flex-direction: column !important; /* Ensures Swiper stacks vertically */
  }

  .swiper-slide {
    height: auto !important;
  }
}
/*Api Page CSS*/
.product-block {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      min-height: 300px;
      opacity: 0;
      transform: translateY(50px);
      animation: fadeInUp 1s ease forwards;
    }

    .product-block.reverse {
      flex-direction: row-reverse;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .product-text,
    .product-image {
      flex: 1 1 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      box-sizing: border-box;
    }

    .product-text {
      flex-direction: column;
      text-align: left;
    }

    .product-text h3 {
      margin-top: 0;
    }

    .product-text p {
      margin: 1rem 0;
    }


    .product-image img {
      width: 100%;
      max-width: 500px;
      height: auto;
    }

    @media (max-width: 768px) {
      .product-block,
      .product-block.reverse {
        flex-direction: column;
      }
    }

    .table-section {
      padding: 2rem;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2rem;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 0.75rem;
      text-align: center;
    }

    th {
      background-color: #004fa2;
      color: white;
    }
/*API Page*/

 .product-section {
  background-color: #f3f4f6;
  padding: 5rem 2rem;
}

.product-container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.product-left {
  background: #fffbe5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-photo {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.product-right {
  padding: 3rem;
}

.product-right h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e3a34;
}

.desc {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.product-info {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-info li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-btn {
  display: inline-block;
  background: #1e3a34;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.product-btn:hover {
  background: #162c27;
}

@media screen and (max-width: 768px) {
  .product-item {
    grid-template-columns: 1fr;
  }
  .product-right {
    padding: 2rem;
  }
}

/*Clinical Stage */

.clinical-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin: 20px auto 50px;
  color: #004d99;
  position: relative;
  width: fit-content;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clinical-title::after{
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: #00c6ff;
  margin: 10px auto 0;
  border-radius: 5px;
}

.clinical-grid .section-title {

  font-size: 1.2rem;
  font-weight: 500;
  color: #004d99;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  border: none;
}

.clinical-grid .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: none;
    margin: 10px auto 0;
    border-radius: none;
    background: none;

}

.clinical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.clinical-card {
  background: linear-gradient(to bottom right, #ffffff, #e0f7fa);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid #b3e5fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.clinical-card h3 {
  background-color: #0288d1;
  color: white;
  padding: 10px 18px;
  display: inline-block;
  font-size: 1.2rem;
  border-radius: 30px;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 20px;
}

.section-title {
  font-weight: 700;
  color: #01579b;
  font-size: 1.05rem;
  margin-bottom: 8px;

  padding-left: 10px;
}

.clinical-card ul {
  margin: 0;
  padding-left: 20px;
}

.clinical-card ul li {
  margin-bottom: 6px;
  
  color: #333;
}
/*pre Clinical CSS*/
.pc-section {
      max-width: 100%;
      margin: auto;
      animation: fadeInUp 1s ease-in-out;
    }

    .pc-title {
      font-size: 3rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
    }

    .pc-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 5px;
      background: #00c6ff;
      margin: 12px auto 0;
      border-radius: 4px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pc-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 40px;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .pc-table thead {
      background: #0072ff;
    }

    .pc-table th {
      color: #fff;
      padding: 16px;
      text-align: center;
      font-weight: 600;
    }

    .pc-table td {
      padding: 20px;
      text-align: center;
      border-bottom: 1px solid #eaeaea;
      vertical-align: top;
      font-size: 1rem;
    }

    .pc-table tr:nth-child(even) td {
      background: #f1f6fb;
    }

    .pc-table td:first-child {
      font-weight: 600;
      color: #0072ff;
      background: #ecf4fc;
      width: 180px;
    }

    .pc-table ul {
      margin: 0;
      padding-left: 20px;
      text-align: left;
    }

    .pc-table ul li {
      margin-bottom: 6px;
    }

    @media (max-width: 768px) {
      .pc-table, .pc-table thead, .pc-table tbody, .pc-table tr, .pc-table td, .pc-table th {
        display: block;
        width: 100%;
      }

      .pc-table thead {
        display: none;
      }

      .pc-table tr {
        margin-bottom: 15px;
      }

      .pc-table td {
        padding: 12px 16px;
        text-align: left;
      }

      .pc-table td:first-child {
        background: #ecf4fc;
        font-weight: 700;
        color: #0072ff;
      }
    }

    /*EU Europe */
     .section-title {
      font-size: 3rem;
      font-weight: 800;
      text-align: center;
      color: #004d99;
      margin: 20px auto 50px;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      animation: fadeInDown 1s ease-in-out;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 5px;
      background: #00c6ff;
      margin: 10px auto 0;
      border-radius: 5px;
    }

    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Product Grid Layout */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      text-align: center;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .product-card:hover {
      transform: scale(1.05);
    }

    .product-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      transition: 0.3s ease;
    }

    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 80px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
    }

    .modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      animation: zoomIn 0.3s ease-in-out;
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: #fff;
      font-size: 36px;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.2rem;
      }
    }
    /*Dietry Supplement*/
      .section-title {
      font-size: 3rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 40px;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      animation: fadeInDown 1s ease-in-out;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 5px;
      background: #00c6ff;
      margin: 10px auto 0;
      border-radius: 5px;
    }

    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Grid layout */
    .supplement-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      max-width: 1300px;
      margin: auto;
    }

    .supplement-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.05);
      overflow: hidden;
      text-align: left;
      padding: 20px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .supplement-card:hover {
      transform: translateY(-5px);
    }

    .supplement-card img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .read-more {
      margin-top: 12px;
      font-weight: 600;
      color: #0072ff;
      text-decoration: none;
      display: inline-block;
    }

    /* Shared Popup Modal */
    .popup-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 80px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.75);
    }

    .popup-modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      animation: zoomIn 0.3s ease-in-out;
    }

    .popup-modal .close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: #fff;
      font-size: 36px;
      font-weight: bold;
      cursor: pointer;
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.2rem;
      }
    }


    /*Patents CSS*/
    
    .patent-section {
      margin-bottom: 60px;
    }

    .patent-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      overflow: hidden;
      margin-top: 20px;
    }

    .patent-table thead {
      background-color: #1659a7;
    }

    .patent-table th, .patent-table td {
      padding: 16px 20px;
      text-align: left;
      font-size: 0.95rem;
    }

    .patent-table th {
      color: #fff;
      font-weight: 600;
    }

    .patent-table td {
      color: #333;
    }

    .patent-table tbody tr:nth-child(even) {
      background-color: #f4f8fb;
    }

    .patent-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #1659a7;
      border-bottom: 2px solid #1659a7;
      display: inline-block;
      padding-bottom: 4px;
      margin-top: 60px;
    }

    @media (max-width: 768px) {
      .patent-table, .patent-table thead, .patent-table tbody, .patent-table th, .patent-table td, .patent-table tr {
        display: block;
      }

      .patent-table thead {
        display: none;
      }

      .patent-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
      }

      .patent-table td {
        padding: 10px 16px;
        border: none;
        background-color: #fff;
      }

      .patent-table td:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
        color: #1659a7;
      }
    }

    /* Research and Development Section */
    
    .rd-header-section {
      background: url('../img/research-development-bd.webp') center/cover no-repeat;
      padding: 120px 20px 100px;
      color: white;
      text-align: center;
    }

    .rd-header-section h1 {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(90deg, #393939, #000000);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0;
      animation: fadeDown 1s ease-out;
    }

    .rd-content-wrapper {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      animation: fadeIn 1.2s ease-in-out;
    }

    .rd-flex-row {
      display: flex;
      gap: 40px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .rd-image {
      width: 48%;
      max-width: 550px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
    }

    .rd-image:hover {
      transform: scale(1.02);
    }

    .rd-description {
      flex: 1;
      min-width: 280px;
    }

    .rd-description p {
     
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
      color: #333;
    }

    .rd-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 40px 0;
      animation: fadeInUp 1.2s ease-out;
    }

    .rd-tag-pill {
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      color: white;
      padding: 10px 22px;
      border-radius: 25px;
      font-weight: 500;
      font-size: 0.95rem;
      white-space: nowrap;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 114, 255, 0.15);
    }

    .rd-tag-pill:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
    }

    .rd-section-block {
      margin-top: 60px;
      border-top: 1px solid #e0e6ed;
      padding-top: 40px;
    }

    .rd-section-block h2 {
      font-size: 2rem;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .rd-section-block p {
      font-size: 1rem;
      
      color: #444;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .rd-flex-row {
        flex-direction: column;
      }

      .rd-image, .rd-description {
        width: 100%;
      }

      .rd-header-section h1 {
        font-size: 2.3rem;
      }
    }
   
/*Ophthalmology CSS*/
 .dt-container {
      /*max-width: 1200px;*/
      margin: auto;
      background: #fff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0, 114, 255, 0.1);
    }

    h2.dt-title {
      text-align: center;
      color: #0072ff;
      font-size: 2.4rem;
      margin-bottom: 40px;
      font-weight: 600;
    }

    .dt-table-wrapper {
      overflow-x: auto;
    }

    table.dt-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 900px;
    }

    .dt-table th,
    .dt-table td {
      border: 1px solid #e0ecf8;
      padding: 14px 12px;
      text-align: center;
      font-size: 0.95rem;
      vertical-align: middle;
    }

    .dt-table th {
      background-color: #0072ff;
      color: white;
      font-weight: 600;
    }

    .dt-table tr:nth-child(even) td {
      background-color: #f4f8ff;
    }

    .dt-left-align {
      text-align: left;
    }

    .dt-product-name {
      font-weight: 600;
      color: #0072ff;
      font-size: 1rem;
    }

    .dt-product-sub {
      font-style: italic;
      font-size: 13px;
      color: #555;
      display: block;
      margin-top: 4px;
    }

    .dt-progress-container {
      width: 100%;
      height: 14px;
      background: #dcefff;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .dt-progress-bar {
      height: 100%;
      width: 0;
      background: linear-gradient(to right, #00c6ff, #0072ff);
      border-radius: 10px;
      animation: dt-fillBar 2s ease-out forwards;
    }

    @keyframes dt-fillBar {
      from { width: 0; }
      to { width: var(--progress); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      body.dt-body {
        padding: 30px 10px;
      }

      .dt-container {
        padding: 20px;
        border-radius: 12px;
      }

      h2.dt-title {
        font-size: 1.6rem;
      }

      .dt-table th, .dt-table td {
        font-size: 13px;
        padding: 10px;
      }
    }

/* h2.dt-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin: 20px auto 50px;
  color: #004d99;
  position: relative;
  width: fit-content;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/

h2.dt-title::after{
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: #00c6ff;
  margin: 10px auto 0;
  border-radius: 5px;
}

/*Gynaecology*/
.gyn-title,  h2.dt-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #009eff;
      margin-bottom: 30px;
      position: relative;
    }

    .gyn-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 4px;
      background: #00c6ff;
      margin: 12px auto 0;
      border-radius: 2px;
    }

    .gyn-table {
      width: 100%;
      border-collapse: collapse;
      box-shadow: 0 0 15px rgba(0, 114, 255, 0.1);
    }

    .gyn-table th, .gyn-table td {
      padding: 16px 12px;
      text-align: center;
      border: 1px solid #d0e4ff;
      font-size: 14px;
    }

    .gyn-table th {
      background: #007bff;
      color: white;
      font-weight: 600;
    }

    .gyn-table td {
      background: #f9fbfd;
    }

    .gyn-product-name {
      font-weight: 700;
      color: #007bff;
    }

    .gyn-product-sub {
      font-size: 12px;
      color: #666;
      font-style: italic;
      display: block;
    }

    .gyn-progress-container {
      background: #e5f0ff;
      border-radius: 50px;
      width: 100%;
      height: 10px;
      overflow: hidden;
    }

    .gyn-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      width: 80%;
      border-radius: 50px;
      animation: gyn-fill 1.8s ease-out;
    }

    @keyframes gyn-fill {
      from { width: 0; }
      to { width: 80%; }
    }

    @media (max-width: 768px) {
      .gyn-title {
        font-size: 1.8rem;
      }

      .gyn-table th, .gyn-table td {
        font-size: 12px;
        padding: 12px 8px;
      }
    }

    /*CMS*/
   
   .cms-container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      animation: fadeInUp 1s ease-in-out;
    }

    .cms-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 20px;
      animation: slideInDown 1s ease-in-out;
    }

    .cms-description p, .cms-description ul {
      margin-bottom: 16px;
     
      animation: fadeIn 1.5s ease-in-out;
    }

    .cms-banner {
      width: 100%;
      height: 100vh;
      background: url("../img/cms-banner.webp") no-repeat center center/cover;
      position: relative;
    }

    .cms-banner-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 30px;
      border-radius: 10px;
    }

    .cms-banner-text h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .cms-banner-text p {
      font-size: 1.25rem;
		color: #ffffff;
    }

    .cms-grid-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 60px;
    }

    .cms-item {
      flex: 1 1 calc(50% - 30px);
      display: flex;
      flex-direction: column;
      animation: fadeInUp 0.8s ease-in-out;
    }

    .cms-item img {
      width: 100%;
      border-radius: 8px;
    }

    .cms-item h3 {
      margin-top: 12px;
      font-weight: 600;
    }

    .cms-item ul {
      padding-left: 20px;
    }

    .cms-item ul li {
      font-size: 14px;
      margin-bottom: 8px;
    }

    @media (max-width: 768px) {
      .cms-item {
        flex: 1 1 100%;
      }
      .cms-banner-text h1 {
        font-size: 2rem;
      }
      .cms-banner-text p {
        font-size: 1rem;
      }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    /*Gallery CSS*/
    h1.cms-gallery-title {
      text-align: center;
      margin: 40px 0 20px;
      font-size: 2rem;
      animation: cmsFadeInDown 1s ease-out;
    }

    .cms-gallery-section {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }

    .cms-gallery-section img.cms-gallery-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .cms-gallery-section img.cms-gallery-image:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .cms-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      animation: cmsFadeIn 0.5s ease-in-out;
    }

    .cms-modal-image {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 8px;
      transition: transform 0.3s ease-in-out;
    }

    .cms-close-btn,
    .cms-next-btn,
    .cms-prev-btn {
      position: absolute;
      top: 20px;
      background: #fff;
      color: #000;
      padding: 10px 16px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .cms-close-btn:hover,
    .cms-next-btn:hover,
    .cms-prev-btn:hover {
      background: #ddd;
    }

    .cms-close-btn {
      right: 20px;
    }

    .cms-next-btn {
      right: 100px;
    }

    .cms-prev-btn {
      right: 180px;
    }

    @keyframes cmsFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes cmsFadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /*Contact Page CSS*/
    .contact-address-block {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      background-color: #e9e4df;
      padding: 60px 40px;
      gap: 40px;
    }

    .contact-address-text {
      flex: 1 1 400px;
    }

    .contact-address-text h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .contact-address-text p {
      
      font-size: 1rem;
    }

    .contact-address-map {
      flex: 1 1 400px;
    }

    .contact-address-map iframe {
      width: 100%;
      height: 300px;
      border: none;
    }

    .contact-form-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      background-color: #ffffff;
      padding: 50px 20px;
    }

    .contact-form-intro h2 {
      font-size: 2rem;
      color: #004a9f;
      margin-bottom: 10px;
    }

    .contact-form-intro p {
      font-size: 1rem;
      color: #666;
    }

    .contact-form-wrapper form {
      display: grid;
      gap: 15px;
    }

    .contact-form-row {
      display: flex;
      gap: 15px;
    }

    .contact-form-row input,
    .contact-form-wrapper input,
    .contact-form-wrapper textarea {
      flex: 1;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    .contact-form-wrapper textarea {
      height: 120px;
      resize: vertical;
    }

    .contact-submit-btn {
      padding: 12px 24px;
      background-color: #004a9f;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-submit-btn:hover {
      background-color: #00336e;
    }

    @media (max-width: 768px) {
      .contact-form-row {
        flex-direction: column;
      }
    }


    

    .form-group input,
    .form-group textarea{
      width:100%;
      border:none;
      border-bottom:1px solid #cfd8e3; /* same look */
      padding:12px 0;
      font-size:16px;
      outline:none;
      transition:border-color .25s ease;
      background:transparent;
    }
    .form-group input:focus,
    .form-group textarea:focus{border-bottom-color:#4a90e2}

    .form-group.error input,
    .form-group.error textarea{border-bottom-color:#e03131}

    .form-group small{
      display:block;
      margin-top:6px;
      color:#e03131;
      font-size:13px;
      line-height:1.3;
      visibility:hidden;
    }
    .form-group.error small{visibility:visible}

    .btn{
      appearance:none;border:0;cursor:pointer;
      padding:12px 28px;border-radius:26px;
      background:#4285f4;color:#fff;font-size:16px;
      transition:background .2s ease;
    }
    .btn:hover{background:#357ae8}

    .form-message{margin-top:16px;font-size:14px}
    .form-message.success{color:#2b8a3e}
    .form-message.error{color:#e03131}




    
/*Career page css*/
 /* --- Hero Section --- */
    .career-hero {
      background: url('../img/career-header.webp') no-repeat center center/cover;
      height: 90vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .career-overlay {
      background: rgba(0, 40, 77, 0.7);
      padding: 60px 20px;
      text-align: center;
      width: 100%;
      animation: fadeIn 1.5s ease-in-out;
    }

    .career-hero-content h1 {
      font-size: 3rem;
      
    }

    .career-hero-content h1 span {
      color: #8ecae6;
    }

    .career-hero-content p {
      margin-top: 1rem;
      font-size: 1.2rem;
      color: #ffffff;
    }

    .career-arrow {
      font-size: 2rem;
      margin-top: 2rem;
      color: #8ecae6;
      display: inline-block;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .career-arrow:hover {
      transform: translateY(5px);
    }

    /* --- Why Work With Us Section --- */
    .career-section {
      padding: 80px 20px;
      background-color: #f8f9fb;
    }

    .career-section-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .career-section-text {
      flex: 1;
      animation: slideInLeft 1.2s ease-out;
    }

    .career-section-image {
      flex: 1;
      animation: slideInRight 1.2s ease-out;
    }

    .career-section-image img {
      width: 100%;
      border-radius: 12px;
    }

    .career-section h2 {
      font-size: 2.5rem;
      color: #00284d;
    }

    .career-section p {
      font-size: 1rem;
      color: #333;
      margin-top: 1rem;
      
    }

    .career-arrow-dark {
      font-size: 1.2rem;
      color: #004e92;
      margin-top: 1.5rem;
      cursor: pointer;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .career-arrow-dark:hover {
      transform: translateX(5px);
    }

    /* --- Job Listings --- */
    .career-jobs-section {
      padding: 80px 20px;
      background-color: #ffffff;
    }

    .career-jobs-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .career-jobs-title {
      font-size: 2.5rem;
      color: #00284d;
      margin-bottom: 40px;
    }

    .career-job-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .career-job-card {
      background: #f1f6fb;
      border-radius: 12px;
      padding: 30px;
      text-align: left;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .career-job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .career-job-card h3 {
      color: #004e92;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .career-job-location {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 15px;
    }

    .career-job-summary {
      color: #333;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .career-job-apply {
      color: #0066cc;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .career-job-apply:hover {
      color: #004e92;
    }

    /* --- Animations --- */
    @keyframes fadeIn {
      0% { opacity: 0; transform: scale(0.95); }
      100% { opacity: 1; transform: scale(1); }
    }

    @keyframes slideInLeft {
      0% { opacity: 0; transform: translateX(-50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      0% { opacity: 0; transform: translateX(50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

/*Contact CSS*/
 .contact-section {
      display: flex;
      flex-direction: row;
      min-height: 100vh;
    }
    .contact-left {
      background: #f1f4f8;
      padding: 80px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-left h2 {
      font-size: 36px;
      color: #1d4f91;
      margin-bottom: 20px;
    }
    .contact-left p {
      font-size: 18px;
      color: #3a3a3a;
    }
    .contact-right {
      flex: 1;
      background: #fff;
      padding: 80px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-form {
      width: 100%;
      max-width: 600px;
    }
    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .form-group {
      flex: 1;
      min-width: 100%;
      margin-bottom: 25px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      border: none;
      border-bottom: 2px solid #d2dce9;
      padding: 10px;
      font-size: 16px;
      background: transparent;
      color: #333;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-bottom-color: #1d4f91;
    }
    .form-group.error input,
    .form-group.error textarea {
      border-bottom-color: red;
    }
    .form-group small {
      color: red;
      display: block;
      margin-top: 5px;
      font-size: 14px;
    }
    .submit-btn {
      background-color: #437df7;
      color: #fff;
      padding: 14px 40px;
      font-size: 16px;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .submit-btn:hover {
      background-color: #1d4f91;
    }
    .form-message {
      text-align: center;
      font-size: 16px;
      margin-top: 20px;
    }
    .form-message.success {
      color: green;
    }
    .form-message.error {
      color: red;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }
      .contact-left, .contact-right {
        padding: 40px 20px;
      }
      .form-row {
        flex-direction: column;
      }
      .form-group {
        min-width: 100%;
      }
    }

/*JD form */

.jd-header {
  background-color: #00447c;
  color: white;
  padding: 40px 20px;
  text-align: center;
  animation: jd-fadeIn 1.2s ease-out;
}

.jd-title {
  font-size: 2.2rem;
  margin: 0;
}

.jd-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 10px;
  color: #ffffff;
}

.jd-section {
  padding: 60px 20px;
  background: #fff;
  animation: jd-fadeIn 1s ease;
}

.jd-section.jd-light {
  background: #eef5fa;
}

.jd-heading {
  font-size: 1.6rem;
  color: #00447c;
  margin-bottom: 20px;
}

.jd-container {
  max-width: 1000px;
  margin: auto;
}

.jd-list {
  list-style: disc;
  padding-left: 20px;
}



/* Animations */
@keyframes jd-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.jd-fade-in {
  animation: jd-fadeIn 1.2s ease forwards;
}

.jd-slide-up {
  animation: jd-fadeIn 1s ease-in-out forwards;
}

.jd-career-container {
  max-width: 960px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(127, 50, 196, 0.1);
}

/* Title */
.jd-career-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #262626;
}

/* Grid layout */
.jd-career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Form group */
.jd-career-group {
  display: flex;
  flex-direction: column;
}

.jd-career-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #4a4a4a;
}

/* Input styles */
.jd-career-group input,
.jd-career-group textarea,
.jd-career-group select {
  padding: 14px 16px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    border-bottom: 2px solid #d2dce9;
}

.jd-career-group input:focus,
.jd-career-group textarea:focus,
.jd-career-group select:focus {
  border-color: #437df7;
 
  outline: none;
}

/* Textarea specifics */
.jd-career-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Error message */
.jd-career-error-message {
  color: #e53935;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 18px;
}

/* Full-width fields */
.jd-career-full {
  grid-column: 1 / -1;
}

/* Submit button */
.jd-career-btn {
  background-color: #437df7;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s 
ease;
}
}

.jd-career-btn:hover {
  background-color: #1d4f91;
}


/* Confirmation message */
.jd-career-confirmation {
  margin-top: 20px;
  text-align: center;
  color: green;
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .jd-career-container {
    padding: 25px;
  }

  .jd-career-title {
    font-size: 1.7rem;
  }
}

.biodha-header {
      position: relative;
      padding: 80px 20px;
      background: linear-gradient(to right, #2898ec, #17c73e);
      color: white;
      overflow: hidden;
      text-align: center;
    }

    .biodha-header h1 {
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #ffffff;
      z-index: 1;
      position: relative;
    }

    .biodha-header .info-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 20px;
      z-index: 1;
      position: relative;
    }

    .biodha-header .info-item {
      color: #ffffff;
      font-size: 1.1rem;
    }

    .apply-btn {
      margin-top: 30px;
      display: inline-block;
      padding: 12px 30px;
      border: 2px solid #ffffff;
      border-radius: 30px;
      color: #ffffff;
      font-weight: 600;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 1;
      position: relative;
      text-decoration: none;
    }

    .apply-btn:hover {
      background-color: #ffffff;
      color: #17c73e;
    }

    .circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.3;
      z-index: 0;
    }

    .circle.red {
      width: 60px;
      height: 60px;
      background: #f14c4c;
      top: 20%;
      right: 10%;
    }

    .circle.blue {
      width: 100px;
      height: 100px;
      background: #00cfff;
      bottom: 10%;
      left: -30px;
    }

    .circle.yellow {
      width: 120px;
      height: 120px;
      background: #ffe600;
      top: -40px;
      right: -40px;
    }

    @media (max-width: 768px) {
      .biodha-header h1 {
        font-size: 2rem;
      }

      .biodha-header .info-item {
        font-size: 1rem;
      }

      .info-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
    }


    .jd-section {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }
        .jd-section h2 {
      color: #000000;
      margin-top: 40px;
      font-size: 1.5rem;
    }
        .jd-section ul {
      padding-left: 20px;
    }
       .jd-section ul li::marker {
      color: #17c73e;
      line-height: 1.7;
    }
      .jd-section  a {
      color: #2898ec;
      text-decoration: none;
    }
      .jd-section  .contact-info {
      margin-top: 40px;
      padding: 20px;
      background-color: #e8f5fd;
      border-left: 5px solid #2898ec;
    }
/*API CSS*/
.api-product-section {
  padding: 60px 20px;
  background: #ffffff;
}

.api-product-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.api-product-image {
  flex: 1 1 45%;
  background: #f5d33b;
}

.api-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.api-product-content {
  flex: 1 1 55%;
  padding: 40px;
  background: #fff;
}

.api-section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.api-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #2898ec, #17c73e);
  margin-top: 10px;
  border-radius: 2px;
}

.api-product-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.api-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.api-features li {
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  transition: transform 0.2s ease;
}

.api-features li span {
  font-size: 1.2rem;
  color: #ec008c;
}

.api-features li:hover {
  transform: translateX(6px);
}
/*Biodha CSS*/

    .biodha-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .biodha-container {
      max-width: 1200px;
      margin: auto;
      background: #ffffff;
      border-radius: 24px;
      padding: 50px 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    }

    .biodha-title {
      font-size: 2.8rem;
      font-weight: 600;
      color: #000000;
      margin-bottom: 30px;
      position: relative;
      text-align: center;
    }

    .biodha-title::after {
      content: '';
      display: block;
      width: 90px;
      height: 5px;
      background: linear-gradient(to right, #2898ec, #17c73e);
      margin: 15px auto 0;
      border-radius: 3px;
    }

    .biodha-intro {
      font-size: 1.15rem;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
    }

    .biodha-image {
      text-align: center;
      margin-bottom: 40px;
    }

    .biodha-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .biodha-highlight {
      background: #e9f8ff;
      border-left: 6px solid #2898ec;
      padding: 25px 30px;
      border-radius: 10px;
      margin-bottom: 40px;
      color: #333;
    }

    .biodha-highlight strong {
      display: block;
      margin-bottom: 10px;
      color: #17c73e;
    }

    .biodha-highlight ul {
      list-style: disc;
      padding-left: 25px;
      margin: 10px 0 15px;
    }

    .biodha-block {
      margin-bottom: 50px;
    }

    .biodha-block h3 {
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 18px;
      color: #2898ec;
    }

    .biodha-block p {
      font-size: 1.05rem;
      color: #444;
      line-height: 1.8;
    }

    @media (max-width: 768px) {
      .biodha-container {
        padding: 30px 20px;
      }
      .biodha-title {
        font-size: 2rem;
      }
    }

    /*Ever 2023*/
    .ever-header {
  background: linear-gradient(to right, #2898ec, #17c73e);
  padding: 15px 0;
}

.ever-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.ever-logo {
  max-height: 40px;
}

.ever-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.ever-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.ever-nav a:hover {
  color: #000;
}

.ever-article-container {
  max-width: 850px;
  margin: 60px auto;
  padding: 0 20px;
}

.ever-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #000;
}

.ever-date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #555;
}

.ever-article-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ever-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .ever-nav {
    justify-content: flex-start;
    margin-top: 10px;
    gap: 10px;
  }

  .ever-article-container {
    margin: 40px auto;
  }

  .ever-title {
    font-size: 22px;
  }

  .ever-article-text p {
    font-size: 15px;
  }
}



/*Privacy Policy CSS*/
 .privacy-container {
      max-width: 960px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .privacy-container h1 {
      font-size: 1.5rem;
      color: #000;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    .privacy-container h2 {
      font-size: 1rem;
      color: #000;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    .privacy-container h3 {
      font-size: 1.25rem;
      color: #000;
      margin-top: 25px;
      margin-bottom: 8px;
    }

    .privacy-container p {
      margin-bottom: 16px;
    }

    .privacy-container em {
      font-weight: 500;
      font-style: italic;
      display: inline-block;
      margin-top: 10px;
      color: #000;
    }

    .privacy-container strong {
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .privacy-container {
        padding: 20px 15px;
      }

      .privacy-container h1 {
        font-size: 1.75rem;
      }

      .privacy-container h2 {
        font-size: 1.375rem;
      }

      .privacy-container h3 {
        font-size: 1.125rem;
      }
    }
   /* Responsive for tablet (max-width: 820px) */
    @media (max-width: 820px) {
      .privacy-container {
        padding: 30px 18px;
      }

      .privacy-container h1 {
        font-size: 1.65rem;
      }

      .privacy-container h2 {
        font-size: 1.2rem;
      }

      .privacy-container h3 {
        font-size: 1.05rem;
      }

      .privacy-container p {
        font-size: 0.95rem;
      }
    }