.hero-contact {
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

.hero-contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.hero-text {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s forwards 0.3s;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-text .btn-primary {
  padding: 12px 30px;
  background-color: #fff;
  color: #4e54c8;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-text .btn-primary:hover {
  background-color: #f0f0f0;
  color: #3a3abf;
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s forwards 0.6s;
}

.hero-image img {
  width: 100%;
  height: 45vh;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
/* Section 1: Company Story & Vision */
.company-story {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.company-story h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 40px;
  color: #222;
}

.company-story article {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.company-story article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.company-story h2 {
  font-size: 1.8rem;
  color: #071333;
  margin-bottom: 20px;
}

.company-story p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.company-story ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-story ul li {
  background: #f5f8fd;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-left: 5px solid #0073e6;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.company-story ul li:hover {
  background: #eaf2fb;
  transform: translateX(3px);
}

.company-story strong {
  color: #0073e6;
}

/* Section 2: Team & Culture */
.team-culture {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.team-culture h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
}

.team-culture article {
  margin-bottom: 60px;
}

.team-culture h2 {
  font-size: 1.9rem;
  color: #071333;
  margin-bottom: 20px;
}

.team-culture p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

/* Team grid placeholder */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-member {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #eee;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Culture images grid */
.culture-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.culture-images img {
  width: 100%;
  height: 250px; 
  object-fit: cover; 
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-images img:hover {
  transform: translateY(-5px) scale(1.05); 
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2); 
  cursor: pointer; 
}

/* Certificates / Expertise images */
.certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.certificates img {
  flex: 1 1 150px;
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
}

/* Section 3: Process & Methodology */
.process-methodology h1, 
.process-methodology h2, 
.process-methodology h3 {
  font-family: 'Poppins', sans-serif;
  color: #111;
  margin-bottom: 15px;
}

.workflow-cards,
.client-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 12px;
}

.tech-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tech-images img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tech-images img:hover {
  transform: scale(1.15);
}


/* Client Relationship Cards */
.client-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.client-cards .card {
  background: #f5f8fd;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.client-cards .card i {
  font-size: 2.5rem;
  color: #0073e6;
  margin-bottom: 15px;
}

.client-cards .card h3 {
  margin-bottom: 10px;
  color: #0073e6;
}

.client-cards .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}



/* Section 4: Key Differentiators & Social Proof */
/* Container and Headings */
.key-differentiators h1,
.key-differentiators h2,
.key-differentiators h3 {
  font-family: 'Poppins', sans-serif;
  color: #111;
  margin-bottom: 15px;
}

/* Differentiator Cards */
.why-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.why-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card i {
  font-size: 2.2rem;
  color: #0073e6;
  margin-bottom: 12px;
}

.why-card h3 {
  margin: 12px 0;
}

.why-card p {
  color: #555;
  font-size: 0.95rem;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Social Proof / Testimonials */
.social-proof {
  margin-top: 50px;
}

.testimonial-card {
  background-color: #f9f9f9;
  border-left: 5px solid #0073e6;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-card span {
  display: block;
  text-align: right;
  font-weight: 500;
  color: #555;
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 40px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #111;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #1968c2;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #0f45d8;
  transform: translateY(-3px);
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media (max-width: 900px) {
  .hero-contact-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
  .hero-text .btn-primary {
    padding: 10px 25px;
  }
}

