@charset "UTF-8";
/* Custom styles for this page */
.about-hero {
  padding: 60px 0; /* Increased padding for more hero-like feel */
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(51, 254, 0, 0.1));
  min-height: 550px;
}

@media screen and (max-width: 768px) {
  .about-hero {
    padding: 40px 0; /* Increased padding for more hero-like feel */
    min-height: 350px;
  }
}
#trusted-by .swiper-button-next, #trusted-by .swiper-button-prev {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s 0s ease-in-out;
}
#trusted-by .swiper:hover .swiper-button-next, #trusted-by .swiper:hover .swiper-button-prev {
  opacity: 1;
  transform: translateY(0px);
}

.background-image {
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

/* Timeline specific styles */
.logos-slider img {
  height: 100px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

/* Timeline specific styles */
.timeline-section {
  position: relative;
  overflow: hidden; /* Ensure content doesn't spill out */
}

.timeline-wrapper {
  position: relative;
  height: 400px; /* Keep height to ensure space */
  display: flex; /* Use flexbox to center swiper vertically */
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Keep overflow hidden for the wrapper */
}

.timeline-line {
  position: absolute;
  top: 50%; /* Center vertically within wrapper */
  left: 0;
  right: 0;
  height: 2px;
  background-color: #dee2e6;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%; /* Make the line end to end */
}

.timeline-swiper {
  position: relative;
  width: 100%; /* Take full width of wrapper */
  height: 100%; /* Take full height of wrapper */
  z-index: 2;
  overflow: hidden; /* Hide overflow of individual slides */
  cursor: grab; /* Cursor becomes grab on hover */
  /* Fade effect using mask-image */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.timeline-swiper:active {
  cursor: grabbing; /* Cursor becomes grabbing when active */
}

.timeline-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100%; /* Each slide takes full height of swiper */
  justify-content: center; /* Vertically center content within slide */
  padding: 0 15px;
}

.timeline-year-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: calc(50% + 20px); /* Adjusted: 20px above the dot */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; /* Prevent year from wrapping */
}

.timeline-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #28a745;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #28a745;
  position: absolute;
  top: 50%; /* Exactly on the line */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.timeline-content-bottom {
  position: absolute;
  top: calc(50% + 20px); /* Position below the dot, 20px gap */
  left: 0;
  right: 0;
  padding: 0 10px; /* Padding for text inside */
}

.timeline-tooltip-image-wrapper {
  width: 120px; /* Increased size */
  height: 120px; /* Increased size */
  border: 2px solid #fff; /* White border */
  border-radius: 8px; /* Border radius */
  overflow: hidden; /* Hide overflow of image if it's larger */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for tooltip effect */
  background-color: #fff; /* Background for the wrapper */
  margin-bottom: 10px; /* Space between image and year */
}

.timeline-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%); /* Default to grayscale */
  transition: filter 0.3s ease-in-out;
}

.swiper-slide-active .timeline-icon {
  filter: grayscale(0%); /* Active slide: no grayscale */
}

/* Team Member Card styles */
.team-member-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-member-card img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #00b04e; /* Gray border for profile pics */
  display: block; /* Center the image */
  margin-left: auto;
  margin-right: auto;
}
.team-member-card h5 {
  font-size: 0.8rem;
}
.team-member-card p {
  font-size: 0.65rem;
}

/* Managing Team Section Styles */
.mt-section {
  padding: 50px 0;
}

.mt-header {
  text-align: center;
  margin-bottom: 40px;
}

.mt-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #007bff; /* Blue color for title */
  margin-bottom: 10px;
}

.mt-description {
  font-size: 0.6rem;
  color: #6c757d;
}

.mt-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive grid */
  gap: 30px; /* Space between cards */
  justify-content: center;
}

.mt-member-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.mt-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mt-image-wrapper {
  position: relative;
  width: 100%; /* Full width within card padding */
  padding-top: 100%; /* 1:1 Aspect Ratio (creates a square) */
  border-radius: 0.75rem; /* Rounded corners for the square image */
  overflow: hidden;
  margin-bottom: 20px;
  /* Removed border and glow from here to make it look like a real card */
}

.mt-profile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.75rem; /* Match wrapper's border-radius */
}

.mt-info {
  text-align: center;
  width: 100%; /* Ensure info section takes full width */
  line-height: 1;
}

.mt-member-name {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.mt-member-position {
  font-size: 0.65rem;
  color: #6c757d;
  margin-bottom: 10px; /* Add space below position */
}

.mt-linkedin-container {
  text-align: center; /* Center the button */
}

.mt-linkedin-btn {
  color: #6c757d; /* Default color for LinkedIn icon */
  font-size: 1.8rem; /* Increased size for inline icon */
  transition: color 0.3s ease;
  display: inline-block; /* Ensure it respects text-align */
}
.mt-linkedin-btn:hover {
  color: #0077b5; /* LinkedIn blue on hover */
  transform: scale(1.1); /* Subtle scale effect on hover */
}

/* Why Choose Centrico Card styles */
.swiper.why-choose-swiper {
  border-radius: 20px;
  margin-right: 50px;
  mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 85%, transparent 100%);
  /* Fallback for browsers that don't support mask */
}
@supports not ((-webkit-mask-image: linear-gradient(to right, black, transparent)) or (mask-image: linear-gradient(to right, black, transparent))) {
  .swiper.why-choose-swiper {
    position: relative;
    overflow: hidden;
  }
}

.why-choose-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 15px;
}

/* Swiper navigation and pagination styling */
.swiper-button-next,
.swiper-button-prev {
  color: #28a745; /* Green color for navigation arrows */
}

.swiper-pagination-bullet-active {
  background-color: #28a745; /* Green color for active pagination dot */
}

/* CDSL list checkmark */
.cdsl-list li {
  position: relative;
  padding-left: 25px; /* Space for the checkmark */
  margin-bottom: 10px;
  color: #495057;
}
.cdsl-list li::before {
  content: "✓"; /* Checkmark icon */
  color: #28a745; /* Green color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-card {
  margin: 10px 10px;
}
.feature-card .icon-wrapper {
  width: 90px; /* Smaller icon wrapper */
  height: 80px;
  background-color: #ffece4; /* Light green background for icon */
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.feature-card .icon-wrapper svg {
  width: 30px; /* Smaller SVG icon */
  height: 30px;
  fill: #29149c;
}
.feature-card h3 {
  font-weight: 600;
  color: #28a745; /* Green color for heading */
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.feature-card p {
  font-size: 0.9rem; /* Smaller paragraph text */
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}/*# sourceMappingURL=about.css.map */