  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

   body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  padding-top: 120px;         /* Adjust this based on your navbar height */
}

   /* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 100px;
}

  /* Navbar Styling */
.navbar {
  position: fixed;            /* Fix the navbar to the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;              /* Make sure it stays above everything */
  background-color: #ffffff;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 100px;
}

/* Navigation Links */
.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Home Icon */
.home-icon {
  font-size: 20px;
  color: #333;
}

/* Social Links */
.social-links a {
  margin-left: 1rem;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 200px;
  top: 100%;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #fff;
  }

  /* Dropdown Arrow Styling */
.dropdown-arrow {
  margin-left: 4px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Sticky Effect + Scroll Hide/Show Animation */
.navbar {
  transition: top 0.3s ease-in-out;
}

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}
a {
  text-decoration: none;
  color: #009688;
}
ul {
  list-style-type: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #009688;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #00796b;
}

/* Header Hero Section */
.hero {
  padding: 100px 20px;
  color: black;
  text-align: center;
}
.hero.prototyping-hero {
  background: url('https://images.unsplash.com/photo-1613991847890-c6c53bfc4b4c') no-repeat center center/cover;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
}

/* Section General Styling */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #009688;
}
p {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
  margin-bottom: 10px;
  color: #333;
}

/* Process Section */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  margin-top: 30px;
}
.step {
  flex: 1 1 150px;
  background: #fff;
  padding: 15px;
  border-left: 4px solid #009688;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Infrastructure Section */
.infra-list li,
.why-us ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  padding-left: 10px;
  position: relative;
}
.infra-list li::before,
.why-us ul li::before {
  content: "✔";
  color: #009688;
  position: absolute;
  left: 0;
}

/* Industries List */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.industry-list li {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  flex: 1 1 150px;
  text-align: center;
}

/* Why Us Section */
.why-us {
  background: #f9f9f9;
  padding: 60px 20px;
}

/* FAQ Section for Prototyping */
.faq-section {
  padding: 60px 20px;
  background: #141414;
  color: #f0f0f0;
  max-width: 1100px;
  margin: auto;
}
.faq-section h2 {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 30px;
}
.faq-item {
  margin-bottom: 25px;
  border-left: 4px solid #00d4ff;
  padding-left: 15px;
}
.faq-item h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #fff;
}
.faq-item p {
  color: #ccc;
  line-height: 1.5;
}

/* Call To Action */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #009688;
  color: white;
}
.cta h2 {
  margin-bottom: 10px;
}
.cta p {
  margin-bottom: 20px;
}
.cta .btn {
  background-color: #fff;
  color: #009688;
}
.cta .btn:hover {
  background-color: #f1f1f1;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Prototype Form Styling */
.prototype-form-section {
  text-align: center;
  padding: 60px 20px;
  background: #1b1f26;
  color: #ffffff;
}

.toggle-form-btn {
  background-color: #00d4ff;
  color: #000;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.toggle-form-btn:hover {
  background-color: #00aacc;
}

.prototype-form-container {
  display: none;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #2a2f3a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.prototype-form-container h3 {
  margin-bottom: 20px;
  color: #00d4ff;
}

.prototype-form-container label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
  color: #f0f0f0;
}

.prototype-form-container input,
.prototype-form-container textarea,
.prototype-form-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  background-color: #e6e6e6;
  color: #000;
  font-size: 1rem;
}

.submit-btn {
  background-color: #00d4ff;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: #00aacc;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .process-steps {
    flex-direction: column;
  }
}

/* Footer Section */
.site-footer {
  background-color: #002244;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px 60px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-branding h3 {
  font-size: 1.4rem;
  color: #0056b3;
  margin-bottom: 5px;
}

.footer-branding .bold-blue {
  font-weight: bold;
  color: #0056b3;
}

.footer-branding .quote-text {
  font-size: 1rem;
  color: #ffffff;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-line {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Footer Office Column Styling */
.footer-column.office-india {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-column.office-india h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: whitesmoke;
}

.footer-column.office-india p {
  margin: 4px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #bbbbbb;
  text-decoration: none;
  font-size: 1.3rem;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer .credits {
  font-size: 0.85em;
  color: #aaa;
  margin-top: 5px;
  text-align: center;
}

.footer .credits strong:hover {
  color: #00aaff;
  cursor: pointer;
}

.footer-bottom a:hover {
  color: white;
}

html, body {
  scroll-behavior: auto; /* Let Lenis handle it */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
