body {
  font-family: 'Segoe UI', sans-serif;
}
h1, h2 {
  color: #2c3e50;
}
footer {
  background-color: #343a40;
}
.header {
  background-color: #343a40;
}


/* for hero crousels*/
.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

.hero-slide > div {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}


.scrolling-wrapper {
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* IE & Edge */
}
.scrolling-wrapper::-webkit-scrollbar {
  display: none;             /* Chrome, Safari */
}



.feature-card {
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #ddd;
}

.feature-card:hover {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  color: white;
}

.feature-icon {
  color: #007bff;
  transition: color 0.3s ease;
}



.core-card {
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.core-card:hover {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.core-card:hover .core-icon {
  color: white;
}

.core-icon {
  color: #007bff;
  transition: color 0.3s ease;
}


.partner-slider {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 30); /* 15 images * 2 (duplicated) */
  animation: scroll 40s linear infinite;
}

.partner-logo {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional CTA Styling */
section.bg-primary {
  background: linear-gradient(90deg, #007bff, #0056b3); /* Bootstrap Primary gradient */
}

.btn-light:hover {
  background-color: #e2e6ea;
  color: #000;
  transition: all 0.3s ease;
}

/* contact page client details*/
.clientDetails{
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;

}

/* footer Quick links*/

#quicklinks a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

#quicklinks a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #00bcd4; /* Your brand color */
  transition: width 0.3s ease;
}

#quicklinks a:hover {
  color: #00bcd4; /* Change text color on hover */
  transform: translateX(4px); /* Optional: move slightly to right */
}

#quicklinks a:hover::after {
  width: 100%;
}

/* Contact banner*/

.contact-banner {
  background: linear-gradient(120deg, #b1cadf, #6e6464);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 300px;
  padding: 20px;
}
.contact-banner h1 {
  font-size: 48px;
  color: #0a2540;
  margin: 0;
}
.contact-icons {
  margin-top: 20px;
  font-size: 32px;
  color: #0a2540;
  display: flex;
  gap: 40px;
  justify-content: center;
}
.contact-icons i {
  transition: transform 0.2s ease;
}
.contact-icons i:hover {
  transform: scale(1.2);
  color: #0077cc;
}

/* Testimonial Banner*/
.testimonial-banner {
  height: 300px;
  background: linear-gradient(135deg, #c1d7ee, #c4a7a7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
}

.testimonial-text {
  font-size: 28px;
  font-style: italic;
  color: #0a2540;
  max-width: 900px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 22px;
    padding: 0 20px;
  }
}

/*product page*/
.card-img-top {
  height: 250px;         /* Set consistent height */
  object-fit: cover;     /* Ensures image covers space without stretching */
  width: 100%;
}
@media (max-width: 576px) {
  .card-img-top {
    height: 180px;
  }
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card .btn {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card:hover .btn {
  background-color: #0a58ca;
  color: #fff;
}


/* Show dropdown on hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
  }
}


/* Optional: smooth animation */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
  }
}


.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #fcd706;
  color: #ff4800;
  font-weight: 500;
  text-decoration: none; 
} 

#counterSections{
  background-color: #865e5e;
}

table th {
  background-color: #f8f9fa;
  font-weight: 600;
  width: 40%;
}
table td {
  color: #333;
}
