* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: #333;
  background: #f9f9fb;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: linear-gradient(135deg, #3a0ca3, #7209b7);
  padding: 1rem 0;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: linear-gradient(to right, #4cc9f0, #4361ee);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: white;
  color: #4361ee;
}

.btn-primary:hover {
  background-color: #f0f0f0;
}

.btn-secondary {
  background-color: #ffffff;
  color: #7209b7;
}

.btn-secondary:hover {
  background-color: #ececec;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #3a0ca3;
}

.solutions {
  padding: 4rem 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.cta-banner {
  background: linear-gradient(to right, #b5179e, #7209b7);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.contact {
  background: #f8f8fa;
  padding: 4rem 1rem;
  text-align: center;
}

.contact form

.mini-hero {
  background: linear-gradient(to right, #7209b7, #560bad);
  padding: 4rem 1rem;
  color: white;
  text-align: center;
}

.solutions-detail {
  padding: 4rem 1rem;
}

.solutions-detail .card {
  background-color: #ffffff;
  border-left: 6px solid #4cc9f0;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.solutions-detail .card:hover {
  transform: translateY(-5px);
  border-color: #7209b7;
}


.mini-hero {
  background: linear-gradient(to right, #7209b7, #560bad);
  padding: 4rem 1rem;
  color: white;
  text-align: center;
}


.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  transition: 0.3s;
}

.logo-img {
  height: 60px;       /* You can increase to 70px or more if needed */
  width: auto;
  display: block;
  max-width: 100%;
}



.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

.nav-links .dropdown-content li {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-links .dropdown-content li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.nav-links .dropdown-content li a:hover {
  background-color: #f0f0f0;
}

