html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 10px 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  margin: auto;

}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  font-size: 16px;
}

.nav-links a {
  margin: 0 15px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;

}

.contact-button {
  background: #f26522;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;

}

.contact-button:hover {
  background: #d95414;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}


@media (max-width: 768px) {
  .menu-toggle {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      background: #fff;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      border-radius: 0 0 12px 12px;
      margin-top: -2px;
      /* align-items: center; */
     
  }

  .nav-links.show {
      display: flex;

  }

  .nav-links a {
      margin: 10px 0;
      font-size: 12px;
      font-style:bold ;
      margin-left: 20px;
    
  }


}




/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  /* Dark tint */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 700px;

}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;

}

.btn {
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.orange-btn {
  background: #f26522;
  color: white;
}

.orange-btn:hover {
  background: #d95414;
}

.gray-btn {
  background: #999;
  color: white;
}

.gray-btn:hover {
  background: #777;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .orange-btn {
    width: 250px;
  }

  .gray-btn {
    width: 250px;
  }
}



/* WHO WE ARE SECTION */

#who-we-are .who {
  display: flex;

}

#who-we-are .new {
  width: 50%;
  margin: auto 0;
  padding: 15px;
  line-height: 30px;
}


#who-we-are p {
  text-align: justify;
}

#who-we-are .subtitle {

  text-align: center;

}


.who-we-are-section {
  padding: 50px 20px;
  background: #fff;
  /* height: 100vh;
  margin-top: 60px; */
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 50px; */
  flex-wrap: wrap;
}

.text {
  flex: 1 1 55%;
}

.text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;

}

.text .subtitle {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

.text p {
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  /* margin-top: 100px; */
}

.image img {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text,
  .image {
    flex: 1 1 100%;
  }

  .text p {
    text-align: center;
  }

  /* .who-we-are-section {
    height: 140vh;
  } */

  #who-we-are .who {
    display: block;
  }

  #who-we-are .new {
    width: 100%;
  }

}




/* === What We Do Section === */

#what-we-do {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: none;
  height: 100vh;

}

#what-we-do::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url('assets/images/background-blur.jpg') center center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

#what-we-do .what-we-do-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


.what-we-do-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
}


.what-we-do-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  width: 220px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;

}

.what-we-do-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}


.what-we-do-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
  .what-we-do-cards {
    flex-direction: column;
    align-items: center;
  }

  .what-we-do-card {
    width: 80%;
  }

  #what-we-do {
    height: 210vh;
  }
}


/* Full Stack, Full Control Section */

#full-stack {
  padding: 100px 20px;
  background: #f7f7f7;
  text-align: center;
  height: 100vh;
}

.full-stack-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stack-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.stack-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.stack-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.stack-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}

.stack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}


@media (max-width: 768px) {
  .stack-cards {
    flex-direction: column;
    align-items: center;
  }

  .stack-card {
    width: 80%;
  }

  #full-stack {
    height: 130vh;
  }
}



/* ===== Industries We Serve Section ===== */
#industries {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 70px;
  justify-items: center;
  margin-top: 50px;
}

.industry-item {
  text-align: center;
  width: 260px;
}

.industry-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  background: #f1f1f1;
  margin-bottom: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.industry-item img:hover {
  transform: scale(1.05);
}

.industry-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

/* Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 50px;
}


@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}


#engineering-stack {
  padding: 100px 20px;
  background: #f8f8f8;
  text-align: center;
}

.engineering-stack-container {
  max-width: 1300px;
  margin: 0 auto;
}


.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 50px;
}


.stack-grid {
  display: grid;
  gap: 30px 30px;
  margin-bottom: 30px;
}


.first-row {
  grid-template-columns: repeat(3, 1fr);
}


.second-row {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}


.stack-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: 220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.stack-card-logo {
  background: #fff;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  min-height: 80px;
}

.stack-card-logo img {
  width: 45px;
  height: auto;
  object-fit: contain;
  height: 45px;
  margin-top: 15px;
}


.stack-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.stack-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
  max-width: 400px;
  margin: 0 auto;
}


@media (max-width: 992px) {
  .first-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .second-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .first-row,
  .second-row {
    grid-template-columns: 1fr;
  }
}



#workshops {
  padding: 100px 20px;
  text-align: center;
}

.workshops-container {
  max-width: 1300px;
  margin: 0 auto;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
  justify-items: center;
}

.workshop-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.workshop-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.workshop-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.workshop-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}


@media (max-width: 1200px) {
  .workshops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .workshops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .workshops-grid {
    grid-template-columns: 1fr;
  }
}

/* our process */

#our-process {
  background: url('assets/images/blur-background.jpg') center center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  padding: 20px;
  width: 150px;
  height: 150px;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.process-step img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.process-arrow {
  font-size: 2rem;
  font-weight: bold;
  color: #666;
}


@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}


/* india */

#why-india {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.why-india-container {
  max-width: 1300px;
  margin: 0 auto;
}

.why-india-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.why-india-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.why-india-points {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point {
  background: #f7f3f3;
  padding: 18px 25px;
  border-radius: 10px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.point:hover {
  background: #f0ecec;
}

.why-india-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-india-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  border: 1px solid #ccc;
  object-fit: contain;
}


@media (max-width: 992px) {
  .why-india-content {
    flex-direction: column;
    text-align: center;
  }

  .why-india-points {
    align-items: center;
  }

  .point {
    text-align: center;
    width: 100%;
  }
}

/* client */

#testimonials {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.client-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.client-role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.testimonial-images img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}


@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}


/* contact */

#contact {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}


#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/contact-bg.jpg') center center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
  background-size: cover;
}


.contact-form-wrapper {
  max-width: 900px;
  background: white;
  margin: 0 auto;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  /* margin-bottom: 10px; */
  color: #000;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  /* margin-bottom: 50px; */
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9f9f9;
}

.phone-field {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.phone-field span {
  padding: 12px 15px;
  border-right: 1px solid #ccc;
  font-size: 1rem;
  background: #f0f0f0;
}

.phone-field input {
  border: none;
  padding: 12px 15px;
  width: 100%;
  background: transparent;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.full-width {
  width: 100%;
}

.submit-button {
  margin: 30px auto 0;
  padding: 15px 30px;
  background: #f26522;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  width: 200px;
  display: block;
}

.submit-button:hover {
  background: #d95414;
}


@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  #contact {
    min-height: 100vh;
  }


  .contact-form-wrapper {
    padding: 10px;
  }
}

/* footer */

.footer {
  background: #000;
  color: #fff;
  padding: 60px 0px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

/* .footer-column {
  flex: 1;
  min-width: 220px;
} */

.footer-column h4 {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.footer-logos img {
  height: 80px;
  object-fit: contain;
}

.footer-bottom {
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 10px 0;
  margin: 0;
  box-sizing: border-box;
}

.footer-bottom p {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-bottom {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}