/* ===== Partners Hero Banner ===== */
.partners-hero {
  position: relative;
  background: url(assests/images/PATNER.avif) center/cover no-repeat;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partners-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.partners-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.partners-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}


/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 16px;
  font-size: 14px;
  color: #374151;
}
.breadcrumb a {
  color: #0078d4;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== Partners Intro ===== */
.partners-intro {
  max-width: 1100px;
  margin: 10px auto 40px;
  padding: 0 16px;
  color: #374151;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== Partner Logos Grid ===== */
.partners-logos {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 16px;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.partner-item img {
  height: 70px;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.partner-item img:hover {
  filter: grayscale(100%);
  transform: scale(1.05);
}
/* ===== Our Team Section ===== */
.our-team {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
  text-align: center;
}
.our-team h2 {
  font-size: 24px;
  margin-bottom: 6px;
}
.our-team p {
  color: #4b5563;
  margin-bottom: 28px;
  font-size: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}
.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  padding: 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.icon-box.hardware {
  background: #7c3aed; /* purple */
}
.icon-box.software {
  background: #0ea5e9; /* cyan */
}
.team-card h3 {
  font-size: 16px;
  margin: 0;
}
.team-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.team-card ul li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-card ul li i {
  color: #10b981;
  font-size: 14px;
}

/* ===== Buttons ===== */
.team-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.btn-purple {
  background: #7c3aed;
  color: #fff;
}
.btn-purple:hover {
  background: #6d28d9;
}
.btn-outline {
  border: 2px solid #7c3aed;
  color: #7c3aed;
  background: transparent;
}
.btn-outline:hover {
  background: #7c3aed;
  color: #fff;
}

/* ===== Newsletter Section ===== */
.newsletter {
  background: #0b4d7a;
  padding: 32px 16px;
  color: #fff;
}
.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.nl-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nl-left h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.nl-form {
  display: flex;
  gap: 10px;
}
.nl-form input {
  padding: 12px 16px;
  border-radius: 50px;
  border: none;
  outline: none;
  width: 250px;
}
.nl-form button {
  background: #e25b44;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
}
.nl-form button:hover {
  background: #c44834;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .partners-grid {
    gap: 24px;
  }
  .nl-left {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== Minimal Footer ===== */
.footer-min {
  background: #052cad;
  color: #ccc;
  padding: 20px 0 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
}

.footer-line {
  width: 90%;
  height: 1px;
  background: #1c0877;
  margin: 0 auto 12px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #22c55e; /* green hover accent */
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
