/* Reset and Base */
html {
  font-size: 16px;
}

* {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

body {
  background-color: #001f4d;
  color: white;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #002b80;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
}

.logo-img {
  width: 40px;
  height: auto;
}

/* Navbar */
nav {
  display: flex;
  gap: 1rem;
}

.menu-toggle {
  color: white;
  display: none;
  background: none;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    display: none;
  }

  nav.hidden {
    display: none;
  }

  nav:not(.hidden) {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  body {
    font-size: 14px;
  }

  h1,
  h2,
  h3 {
    font-size: 1.3rem;
  }
}


nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffc107;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  background: url('/Images/background image.jpeg') no-repeat center/cover;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  max-width: 600px;
  margin: auto;
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-quote {
  background-color: #ff6a00;
  color: white;
}

.btn-products {
  background-color: #002b80;
  color: white;
  border: 1px solid white;
}

.btn:hover {
  transform: scale(1.05);
}

/* Features & Industry */
.features,
.industries {
  padding: 40px 20px;
  background-color: #003380;
  text-align: center;
}

.features-grid,
.industry-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 20px;
}

.feature,
.industry {
  background-color: #0044cc;
  border-radius: 10px;
  padding: 20px;
  color: white;
  transition: transform 0.3s ease-in-out;
}

.feature:hover,
.industry:hover {
  transform: translateY(-5px);
}

.feature img,
.industry i {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #001a33;
  padding: 20px;
  text-align: center;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  nav {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }

  nav a {
    display: inline-block;
    margin: 10px 10px;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in {
  animation: slideInUp 1s ease-out forwards;
  opacity: 0;
}

.auto-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
}

.auto-scroll::-webkit-scrollbar {
  height: 8px;
}

.auto-scroll::-webkit-scrollbar-thumb {
  background: #ff6a00;
  border-radius: 4px;
}

.auto-scroll::-webkit-scrollbar-track {
  background: #001a33;
}

:root {
  --bg-color: #fff;
  --text-color: #000;
  --primary-color: #1a73e8;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin-left: auto;
  cursor: pointer;
}

body.dark {
  --bg-color: #121212;
  --text-color: #f5f5f5;
}
.industries h2 {
  color: #ff6a00; /* Yahan apna desired color daalein */
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

body.dark .industries h2 {
  color: #ffa500; /* Light orange or any contrasting light color */
}

