/*--------marquee section css--------*/
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.track {
  display: flex;
  animation: marquee 32s linear infinite;
}

.mlogo {
  height: 100px;
  margin-right: 50px;
  padding-bottom: 30px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*--------org chart section css--------*/
img.orgchart {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
/*--------org chart section css--------*/
img.homeabout {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border: 1px solid #f2f2f2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Mobile-specific styles */
@media (max-width: 600px) {
  img.homeabout {
    max-width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
  }
}

/*--------marquee section css--------*/
h2.mheading {
  padding-top: 40px;
}
/*--------table section css--------*/
.tablebody body {
  margin: 0;
  padding: 20px;
  background-color: #f4f4f9;
}
.table-container {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 800px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

caption {
  font-size: 1.5em;
  margin: 10px 0;
  text-align: center;
  color: #333;
  font-weight: bold;
  padding: 10px 0;
  background-color: #f8f9fa;
  border-bottom: 2px solid var(--accent-color);
  caption-side: top;
}

th,
td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: var(--accent-color);
  color: white;
}

@media (max-width: 600px) {
  th,
  td {
    display: block;
    width: 100%;
  }
  tr {
    margin-bottom: 10px;
  }
}
/*--------logo css--------*/
/* Positioning and styling for the zoomable image */
.zoomeffect {
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 500;
}

/* Initial size of the small image */
.internalsmall {
  width: 100px;
  height: auto;
  box-shadow: 0 4px 8px rgba(49, 168, 33, 0.2);
  transition: transform 0.3s ease-in-out;
  margin-left: 500px;
  margin-bottom: 152px;
}
/* Keyframes for continuous zoom effect */
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  0%,
  100% {
    box-shadow: 0 4px 8px rgba(49, 168, 33, 0.2);
  }
  50% {
    box-shadow: 0 6px 12px rgba(192, 21, 21, 0.3);
  }
}
/* Zoom effect on hover */
.zoomeffect:hover .internalsmall {
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(192, 21, 21, 0.3);
}

@media (max-width: 600px) {
  .content {
    text-align: center;
  }

  .internalsmall {
    width: 80px;
    margin-left: 325px;
    margin-bottom: 82px;
  }
}

/*--------home about css--------*/
/* Flex container for vision and mission boxes */
.mvhome {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  justify-content: space-between; /* Space between items */
}

/* Styling for the vision and mission boxes */
.vision,
.mission {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(50% - 30px); /* Flex-grow, flex-shrink, flex-basis */
}

/* Hover effect for the boxes */
.vision:hover,
.mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #ff9a00;
}

/* Styling for headings inside the boxes */
.vision h5,
.mission h5 {
  font-size: 1.3em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* Style for icons */
.vision h5 i,
.mission h5 i {
  margin-right: 10px;
  color: #ff9a00;
  font-size: 1.6em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vision,
  .mission {
    padding: 15px;
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .vision h5,
  .mission h5 {
    font-size: 1.2em;
  }
}
img.teamimg {
  border: 1px solid #ddd;
}
/* ----------------productrange  image --------------*/
img.productrange {
  border: 1px solid var(--accent-color);
}
/* Define the active menu item styling */
.menu-item {
  color: inherit; /* Use the default text color */
  transition: color 0.3s ease; /* Smooth transition */
}

.menu-item.active {
  color: #ff6666; /* Light red color for active item */
}
/* ----------------responsive heading --------------*/

@media (max-width: 1200px) {
  .get-started .content h3 {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .get-started .content h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .get-started .content h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .get-started .content h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .about .inner-title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .page-title h1 {
    font-size: 35px;
  }
}
.whatsappLink {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 7;
}

.whatsappLink img {
  height: 50px; /* Fixed height for the icon */
  width: 50px; /* Fixed width for the icon */
  object-fit: contain; /* Ensure the image maintains aspect ratio */
}

/* Media query for smaller screens */
@media (max-width: 767px) {
  .whatsappLink img {
    height: 40px; /* Smaller height for mobile screens */
    width: 40px; /* Smaller width for mobile screens */
  }
}

/* Media query for very small screens */
@media (max-width: 480px) {
  .whatsappLink img {
    height: 35px; /* Even smaller height for very small screens */
    width: 35px; /* Even smaller width for very small screens */
  }
}
