/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

img {
  width: 100%;
  border-radius: 10px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.logo img {
  height: 40px;
}

/* MAIN FIX */
.logo-text {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;   /* ❗ prevents wrapping */
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.hero {
  padding: 60px 0;
  background: #f8f9fa;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.small {
  font-size: 18px;
}

/* SECTION */
.section {
  padding: 60px 0;
}

.light {
  background: #f4f4f4;
}

/* CARD */
.card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
  height: 200px;
  object-fit: cover;
}

.client-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.client-link:hover .client-card {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* TEAM */
.team-img {
  width: 120px;
  border-radius: 50%;
}

/* CTA */
.cta {
  text-align: center;
  padding: 50px;
  background: black;
  color: white;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}

.client-card {
  background: #fff;
  overflow: hidden;   /* safety */
  padding: 15px;
  border-radius: 10px;
}

.client-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;   /* ✅ image stretch nahi hogi */
  display: block;
  margin: 0 auto 10px;
}

.client-card h4 {
  margin: 10px 0 5px;
}

.client-card p {
  font-size: 14px;
  color: #666;
}

.grid-2 img {
  height: 300px;
  object-fit: cover;
}
/* CONTACT */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
}

.contact-info {
  padding: 20px;
}

.contact-info h3 {
  margin-bottom: 10px;
}

