

nav .nav-link.active a {
  color: var(--theme-colors) !important;
}

.navbar .nav-item a:is(:link,:active,:visited).active {
  /* border-bottom: 1px solid var(--theme-colors); */
  color: var(--theme-colors);
}
.services_content p span {
  color:var(--theme-colors) ;
  font-weight: bold;
  font-size: 18px;
}

.quote {
  background-image: url(/assets/img/company4.jpg);
  position: relative;
  z-index: 111;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}

.color {
  color: white;
}


.offerings-container {
  text-align: center;
}

.offerings-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 20px; /* Space between items */
  justify-content: center;
}

.offering-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offering-item img {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-item img:hover {
  transform: scale(1.1);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.offering-item p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .offerings-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
  }
}

@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  }
}

@media (max-width: 576px) {
  .offerings-grid {
    grid-template-columns: 1fr; /* 1 column for very small screens */
  }

  .offering-item img {
    max-width: 80px; /* Smaller images on small devices */
  }
}


/* Overall Container */
.why-choose-us {
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
}

.why-choose-title {
  font-size: 2.5rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Flexbox Container */
.why-choose-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Columns for Left and Right */
.why-choose-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

/* Image in Center */
.why-choose-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-image {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Cards */
.why-choose-card {
  position: relative;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}

/* Heading */
.why-choose-heading {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}

/* Popup for Content */
.why-choose-popup {
  position: absolute;
  bottom: 100%; /* Position above the card */
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  font-size: 0.9rem;
  color: #666;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hover Effect */
.why-choose-card:hover .why-choose-popup {
  visibility: visible;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-container {
    flex-direction: column;
    align-items: center;
  }

  .why-choose-image {
    max-width: 200px;
  }
}


/* Why Choose Us Section */
.why-choose-section {
  background-color: #f7f9fc;
  padding: 3rem 0;
}

.choose-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #00457c;
}

.choose-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-top: 0.5rem;
}

.choose-card {
  background-color: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  border: 1px solid #e4e4e4;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.choose-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00457c;
  margin-bottom: 10px;
}

.choose-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

#cen{
  margin-left: 26%;
}