body {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

@media (max-width: 991.98px) {

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

/* scroll animation left right --------------- */
/* Animation for sliding in from the left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation for sliding in from the right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initially hide elements */
.hidden {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-in-out;
}

/* Apply left and right animations */
.animate-left {
  animation: slideInLeft 1s ease forwards;
}

.animate-right {
  animation: slideInRight 1s ease forwards;
}

/* ------------------------------------------- */


a {
  text-decoration: none;
  /* color: white; */
}

.bgcolored {
  background-color: #fb1916 !important;
}

.textred {
  color: #fb1916 !important;
}

.borderred {
  border-top-color: #fb1916 !important;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, .85);
  z-index: 1;
}


@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

/* navbar */

/* Define color variables */
:root {
  --primary-color: #003396;
  --secondry-color: #fb1916;
  --text-color: white;
}

/* Use variables in your styles */
.navbar {
  /* background-color: var(--primary-color); */
  background-color: white;
  border-bottom: 2px solid var(--primary-color);
  /* color: var(--text-color); */
  color: black;
  z-index: 100;
}

.navbar ul li a {
  color: black;
}

.primary-color {
  color: var(--primary-color);
  ;
}

.primary-bgcolor {
  background-color: var(--primary-color);
  color: white;
}

.secondry-color {
  color: var(--secondry-color)
}

.secondry-bgcolor {
  background-color: var(--secondry-color);
  color: white;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  height: 50px;
  width: 50px;
  color: black;
  padding: 15px;
  border-radius: 100%;
  display: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  z-index: 1000;
}
#float-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #ffffff;
  width: 60px;
  padding: 8px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  z-index: 1000;
}
#float-booking {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background-color: #ffffff;
  width: 60px;
  padding: 8px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  z-index: 1000;
}

#float-whatsapp a i {
  color: #25d366;
};

#back-to-top:hover {
  background-color: var(--primary-color);
}

/* nav-logo */
.nav-logo {
  width: 150px;
}

/* doctoer image */

/* feedback card */
#feedbacks {
  /*  margin: 120px;*/
  margin-bottom: 120px;
}

.feedback-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 10px;
  height: 100%;
}

.feedback-card::before {
  content: '';
  /* position: absolute; */
  /* top: -50px; */
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 0;
}

.feedback-card h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feedback-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feedback-card .user {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feedback-card .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #4d9c95;
}

.feedback-card .user .name {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}

.feedback-card button {
  background-color: #4d9c95;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.feedback-card button:hover {
  background-color: #3c7c76;
}

@media (max-width: 480px) {
  .feedback-card {
    width: 90%;
    padding: 15px;
  }

  .feedback-card h1 {
    font-size: 1.2rem;
  }

  .feedback-card p {
    font-size: 0.9rem;
  }
}

/* feedback */

/* Services */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f9f9f9;
}

.services-section {
  padding: 50px 0;
}


.service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
  font-size: 40px;
  padding: 12px 24px 12px 23px;
  border-radius: 100%;
  transition: transform 0.9s, box-shadow 0.3s;
  color: #fb1916;


}

.service-card:hover .icon {
  /* transform: translateY(-10px); */
  position: absolute;
  font-size: 50px;
  top: -20%;
  left: -10%;
  background-color: var(--primary-color);
  color: white;
}

.service-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.service-card:hover h3 {
  font-weight: bold;
}


.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* services */


/* ----------------------------- */
.bg-appointment {
  background: linear-gradient(rgba(9, 85, 131, 0.85), rgba(9, 30, 62, .85)), url('../img/docImge.jpg') bottom no-repeat;
  background-size: cover;

}

.bg-facts {
  background: linear-gradient(rgba(9, 85, 131, 0.9), rgba(9, 30, 62, .85)), url('../img/fact.jpg') bottom no-repeat;
  background-size: cover;

}

/* ----------------------------- */


.main-title {
  color: var(--foundation-secoundary-secoundary-500, #1D2026);
  /*  font-size: 45px;*/
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* position: absolute; */
}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.8rem;
  }

  .brand-para {
    font-size: 1rem;
  }
}

/* technolgy */
.box {
  /* position: absolute; */
  width: 180px;
  height: 100px;
  background: #f8f9fa;
  border: 2px solid #4d9c95;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
}

/* technology */
.brand-para {
  color: var(--foundation-secoundary-secoundary-400, #505766);
  font-size: 21px;
  font-weight: 500;
  line-height: 36px !important;
}

.first-doc-pic {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.index-doc-pic {
  width: 573px !important;
  overflow: hidden !important;
}

.page-Contant {
  padding: 70px 0 0 0;
}

/* about us  */
.page-title.parallax {
  height: 260px;
  margin-top: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}

.blog-info {
  width: 70%;
}

.blog-title {
  font-size: 3.5rem;
  font-weight: bold;
}

.blog-info p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-title {
  background: linear-gradient(rgba(55, 43, 126, 0.9), rgba(9, 19, 69, 0.85)), url('../img/docImge.jpg') bottom no-repeat;
  background-size: cover;
  padding: 15px;
}

.section-head-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px;
}

/* about us */


/* Contact us */

.contactus-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 10px;
  text-align: center;
}



.contactus-card .icon {
  display: flex;
  border-radius: 100%;
  border: 3px solid #E16408;
  width: 25%;
}

/* Contact us */


/* feedback form */
/* General Styles */

/* body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
  } */

/* Container */
.contact-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* max-width: 600px; */
  width: 100%;
  text-align: center;
}

.contact-container h1 {
  color: #2a69ac;
  margin-bottom: 10px;
}

.contact-container p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
}

/* Form Styles */
form {
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2a69ac;
  box-shadow: 0 0 5px rgba(42, 105, 172, 0.5);
}

/* Buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.assistance-section {
  background-color: #fee3d0;
  padding: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assistance-text {
  font-family: Arial, sans-serif;
}

.assistance-text h4 {
  font-weight: bold;
  margin: 0;
}

.assistance-text p {
  margin: 0;
}

.assistance-text a {
  color: #e65100;
  text-decoration: none;
}

.btn-request-demo:hover {
  background-color: #cc4a00;
}

.btn {
  background-color: var(--secondry-color);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1a4f82;
}

.btn.reset {
  background-color: #e0e0e0;
  color: #333;
}

.btn.reset:hover {
  background-color: #ccc;
}

/* Responsive Design */
@media (max-width: 480px) {
  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.viewbtn {
  color: var(--primary-color);

}

.viewbtn a {
  text-decoration: none;

}

.viewbtn:hover {
  color: var(--primary-color);
  font-weight: bold;
}

/* ------------- */

/* procuts design */
.features-section {
  background-color: #2f855a;
  color: white;
  padding: 40px 0;
}

.features-section ul {
  list-style: none;
  padding: 0;
}

.features-section ul li {
  margin-bottom: 10px;
}

.features-section ul li i {
  margin-right: 10px;
}

.products-section {
  padding: 60px 0;
}

.products-section h2 {
  margin-bottom: 40px;
}

.product-item img {
  margin-bottom: 20px;
}


/* ------------------------------------- */
.service-icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
}

.service-text {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-item {
  text-align: center;
}

.circle-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ---------------- */

/* GWS css */
.feature-box {
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  background-color: white;
  height: 100%;
}

.feature-box .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  padding: 15px 15px 15px 15px;
  border-radius: 100%;
  box-shadow: 2px 2px 5px gray;
}

.border-top-cyan {
  border-top: 4px solid #00bcd4;

}

.border-top-yellow {
  border-top: 4px solid #ffeb3b;
}

.border-top-red {
  border-top: 4px solid #f44336;
}

.bg-cyan {
  background-color: #00bcd4;
}

.bg-yellow {
  background-color: #ffc107;
}

.bg-red {
  background-color: #f44336;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

.feature-box:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-box h5 {
  color: #333;
}

.feature-box p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* -------------------- */

/* Services card */
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px gray;
  padding: 12px;


}

.icon-container i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.icon-container p {
  text-align: center;
  font-weight: bold;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  color: #1E3A8A;
}

.header h2 {
  color: #DC2626;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  color: #F59E0B;
}

.component-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.component-card:hover {
  transform: translateY(-5px);
  border: 2px solid var(--primary-color);
  box-shadow: 2px 2px 5px var(--primary-color);
  cursor: pointer;
}

.component-card:hover {
  transform: translateY(-5px);
  border: 2px solid var(--primary-color);
  box-shadow: 2px 2px 5px var(--primary-color);
  cursor: pointer;

}

.component-card i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.product-fr-card {
  border-top: 8px solid;
  background: #fff;
  /* Smooth gradient from white to light gray */
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Optional shadow for depth */
  /* text-align: justify; */
  height: 100%;
}

.product-fr-card:hover {
  box-shadow: none;

}

.product-fr-card:hover h5 {
  font-weight: bold;
  box-shadow: none;

}

.border-yellow {
  border-top-color: #FFC107;
}

.border-red {
  border-top-color: #DC3545;
}

.border-blue {
  border-top-color: #007BFF;
}

.border-green {
  border-top-color: #28A745;
}

/* ---------------------------- */

/* fundamental--------------- */
.fundamental {
  background-color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fundamental img {
  width: 100%;
  /* Make the image fill the width of the container */
  height: 100%;
  /* Make the image fill the height of the container */
  object-fit: cover;
  /* Ensures the image covers the container area */
  display: block;
}

.taglist {
  background-color: wheat;
  padding: 12px;
  border-radius: 56px;
}

.taglist {
  background-color: rgb(178, 227, 242);
  padding: 12px;
  border-radius: 56px;
  border: 4px solid rgb(239, 246, 249);
}

.taglist i {
  background-color: white;
  padding: 12px;
  border-radius: 56px;
  color: var(--primary-color);
  font-size: 25px;
}

/* ------------------------- */

/* Client--------------------- */
.client-logo img {
  width: 100%;
  height: 150px;
  /*filter: grayscale(100%);*/
  transition: filter 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-logo img:hover {
  filter: grayscale(0%);
}

/* -------------------------- */

/* -----------------------------HMS */

.hero-section {
  padding: 60px 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondry-color);
  margin-top: 10px;
}

.hero-section p {
  font-size: 1.125rem;
  color: #666;
  margin-top: 20px;
}

.hero-section .btn-primary {
  background-color: var(--secondry-color);
  border-color: var(--secondry-color);
}

.hero-section .btn-outline-secondary {
  border-color: #666;
  color: #666;
}

.hero-section .btn-outline-secondary:hover {
  background-color: #f8f9fa;
}

.image-section {
  position: relative;
}

.image-section .background-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(to right, #4fd1c5, #4299e1);
  border-radius: 50%;
  opacity: 0.2;
}

.image-section .icon-container {
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-section .icon-container img {
  width: 50px;
  height: 50px;
}

.image-section .hand-image-container {
  width: 200px;
  height: 200px;
  background-color: #ffecd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.image-section .hand-image-container img {
  width: 100px;
  height: 100px;
}

/* ---------------------------------- */
.highlight {
  color: #f97316;
}

.highlight .icon {
  width: 50px;
  height: 50px;
}

.fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card {
  bottom: 20px;
  right: 20px;
  background-color: white;
  padding: 25px;
  height: fit-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 1rem;
  color: var(--secondry-color);
}

.feature-text {
  font-size: 1rem;
  margin: -2px;
}

.feature-title {
  font-weight: bold;
  font-size: larger;
  margin: -2px;
}

.phone-image {
  max-width: 100%;
  height: auto;
}

.arrow-view {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.arrow-view-right {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.arrow-view a {
  color: black;
}

.arrow-view-right a {
  color: black;
}

.arrow-view a:hover {
  color: var(--secondry-color);
}

.arrow-view-right a:hover {
  color: var(--secondry-color);
}

.arrow-view:hover {
  color: var(--secondry-color);
  cursor: pointer;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

/* ---------------------ris */
.rsi-feature-item {
  background-color: white;
  padding: 10px;
  margin: 10px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}


.rsi-feature-item i {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 10px;
  margin: 3px;
  color: white;
}

.rsi-feature-item .title {
  font-weight: bold;
  font-size: 15px;

}

.rsi-feature-item .description {
  padding: 5px;
  text-align: justify;

}

.modalities-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 40px;
}

.modalities-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.modality-card {
  /* width: 250px; */
  height: 270px;
  border: 2px solid #ddd;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  /* Prevent shrinking */
}


.modality-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 10px;
}



.integration-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border: 2px solid beige;
}

.integration-card i {
  font-size: 50px;
  color: var(--secondry-color);
  margin-bottom: 15px;
}

.integration-card h5 {
  font-weight: bold;
}

.int-section {
  margin-top: -40px;
}

/* -----------------------about Us */
.header-section {
  background-color: #6a6fa3;
  color: white;
  padding: 40px 20px;
  text-align: center;
}


.content-section a {
  color: white;
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

.content-section i {
  font-size: 100px;
  color: #6a6fa3;
}

/* ---------team */
.team-member {
  text-align: center;
  padding: 30px 0px 30px 0px;

}

.team-member:hover {
  background-color: white;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.team-member img {
  width: 60%;
  border-radius: 100%;
}

/* -----------------------detail section */
.section-title {
  color: var(--secondry-color);
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-card {
  border: none;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
  height: 100%;
  margin: 8px;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  padding: 4px;

}

.card-text {
  color: #333;
}

.icon {
  font-size: 40px;
  color: var(--secondry-color);
}

.custom-card {
  background-color: #fbe4d0;
  border-radius: 10px;
  padding: 30px;
  text-align: left;

}

.custom-button {
  background-color: var(--secondry-color);
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-button a {
  color: white;
}

.custom-button:hover {
  background-color: #d00303;
}

.timeline-middle {
  position: relative;
  border: 2px solid var(--secondry-color);
  width: 1px;
  height: 100%;
}

.timeline-circle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--secondry-color);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* -------------lab card */
.wire-card {
  text-align: end;
  padding: 8px;
}

.wire-card-left {
  text-align: start;
  padding: 8px;
}

/* --------------------------- */
.benefit-icon {
  font-size: 50px;
  color: var(--primary-color);
}

.benefit-item {
  margin: 20px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
  color: #4d4d4d;
}

/* --------------------------- */
.contact-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.contact-card-body {
  padding: 20px;
  text-align: center;
}

.contact-card-title {
  font-size: 1.5rem;
  margin-top: 15px;
}

.contact-card-text {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
  border: 4px dotted var(--secondry-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.border-solid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 3px solid var(--secondry-color);
  border-radius: 50%;
}

.contact-card:hover .border-solid {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-card:hover .icon-wrapper {
  animation-name: rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.icon-wrapper i {
  font-size: 2rem;
  color: var(--secondry-color);
  transform: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* --------------------------- */
/*  map------------------- */
.map-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  border-radius: 0.5rem;
  /* Equivalent to Bootstrap's 'rounded' */
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  /* Apply rounded corners to iframe */
}

/* --------------------------- */

/* career---------------------- */
.career-title {
  text-align: center;
  margin-top: 20px;
}

.career-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.card-innovation {
  background-color: #ffe4cc;
}

.card-quality {
  background-color: #ccf2ff;
}

.card-unity {
  background-color: #e6ccff;
}

.card-accountability {
  background-color: #faecde;
  height: 100%;
}

.card-agility {
  background-color: rgb(198, 239, 198);
}

.career-card {
  border: none;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.join-team {
  text-align: right;
  padding: 20px;
}

.join-team h1 {
  font-size: 2rem;
  color: #000;
}

.join-team h1 span {
  color: var(--secondry-color);
}

.join-team p {
  font-size: 1rem;
  color: #666;
}

.join-line {
  padding: 20px;
}

.join-line h2 {
  font-size: 1.5rem;
  color: #000;
}

.join-line ul {
  list-style: none;
  padding: 0;
}

.join-line ul li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.join-line ul li i {
  color: #6a5acd;
  margin-right: 10px;
}

.images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.images img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
}

.job-header {
  text-align: center;
  margin-top: 20px;
}

.job-header h1 {
  font-size: 2rem;
}

.job-header h1 span {
  color: var(--secondry-color);
}

.job-header p {
  color: gray;
}

.job-card {
  background-color: white;
  border-radius: 8px;
  padding: 35px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.job-card a {
  color: white;
}

.job-card h5 {
  font-weight: bold;
}

.job-card .location {
  text-align: right;
}

.position-subtitle {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: -0.105px;
  color: white;
}

.Offer h3 {
  color: black;

}

.benefits-image img {
  width: 40px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.career-item {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
}

.career-text p {
  display: none;
  transition: all 0.3s ease-in-out;
}

.career-item:hover .career-text p {
  display: block;
  margin-top: 10px;
}

.career-item:hover {
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.tabes {
  font-size: 20px;
  font-weight: 500;
  padding: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.tabes p {
  padding: 5px 0px 5px 40px;
}

#progress {
  position: fixed;
  bottom: 70px;
  right: 20px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: #000;
}

#progress-value {
  display: block;
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #001a2e;
}

/* emr------------------------------- */
.checklist-item {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 20px;
  text-align: justify;
}

.checklist-item i {
  color: var(--primary-color);
  font-size: 25px;
  margin-right: 10px;
}

.checklist-item p {
  margin: 0;
  color: #374151;
}

/* ------------------------------- */
.module-card {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  /* Make sure each card takes 100% of available height */
  text-align: center;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  /* Allows child elements to take up remaining space */
}

.module-card {
  flex: 1;
  min-height: 300px;
  /* Set a minimum height if you need a default height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Background animation using ::before */
.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(190deg, #4c0697, #032766);
  transition: width 1s ease-in-out;
  z-index: -1;
}

.module-card:hover::before {
  width: 100%;
}

.module-card:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: width 1s ease-in-out;
}


.icon-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-box {
  background: white;
  padding: 10px 12px 10px 12px;
  border-radius: 100%;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-box i {
  font-size: 38px;
  color: var(--primary-color);
}

.module-card:hover .icon-box {
  background: white;
}

.module-card:hover .icon-box i {
  color: #6a11cb;
}

.card-title {
  flex: 1;
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

.card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.module-card:hover .card-description {
  color: white;
}

.button-container {
  text-align: center;
}

.view-more-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.module-card:hover .view-more-btn {
  background: white;
  color: var(--primary-color);
}

/* ------------------------------- */
.testimonial {
  background-color: #eaf1fb;
  font-family: Arial, sans-serif;
  padding: 40px;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 10px;
  height: 100%;
}

.testimonial-icon {
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
}

.testimonial-author {
  font-weight: bold;
  margin-top: 10px;
}

.quote-background {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

.circle-background {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

/* ------------------------------- */
/* Styling for Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Styling for B2B Organization Cards */
.b2b-organization-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.b2b-organization-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Styling for Card Title */
.b2b-organization-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 15px;
  color: #333;
}

/* Styling for Card Description */
.b2b-organization-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

/* Styling for Image */
.b2b-organization-card img {
  border-radius: 50%;
  border: 3px solid #007bff;
}

/* Adjusting Grid Layout */
@media (max-width: 768px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    max-height: fit-content;
  }
}

/* ------------------------------- */
/* Styling for Section Title */
.Automate-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.Automate-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.Automate-box {
  background-color: #4a90e2;
  color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  height: 100%;
}

.Automate-box i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ------------------------------- */
.benefit-card {
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  align-items: center;
  background-color: white;
  height: 100%;
}
.benefit-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1rem;
}


.background-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: #e0f7fa;
  border-radius: 50%;
  z-index: -1;
}
/* Styling for Section Title */

/* client card  */
.card-hover {
    transition: transform 0.3s;
    background-color: white;
    height: 100%;
    width: 100%;
    border-radius: 18px;
    border: 2px solid var(--primary-color);
}

.card-hover:hover {
    transform: scale(1.05);
}

.card-hover .card-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 16px;
    border: 4px solid #e0e0e0;
    transition: opacity 0.3s;
}

.card-hover:hover .card-details {
    opacity: 1;
}
.card-hover:hover .card-details h5 {
  color: var(--primary-color);
  font-weight: bold;
}

.card-hover .card-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 5px;
    border-radius: 18px;
}

.card-hover .card-logo img {
    /* max-width: 150px; */
    max-height: 150px;
}


.icon-circle {
  width: 64px;
  height: 64px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.icon-circle i {
  font-size: 24px;
  color: white;
}
.stat-text {
  font-size: 42px;
  font-weight: bold;
  color: gold;
}
.stat-subtext {
  font-size: 18px;
  color: white;
  font-weight:bolder;
}