/* === BEGIN style.css 1 === */
html,
body,
main,
div {
  overflow-x: hidden !important;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 99vw !important;
  max-width: 100vw !important;
}

header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  min-width: 94vw;
  max-width: 96vw !important;
  position: fixed;
  height: 8vh;
  margin-top: 2vh;
  border: 2px var(--gray) solid;
  border-radius: 2vw;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw !important;
}

.logo {
  font-weight: bolder;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-slogan {
  font-size: 0.8rem;
  font-weight: bolder;
  color: var(--dark);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-right: 15px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: url("https://evtech.org.in/logo.png");
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

/* Rest of your existing styles remain the same */

/* Update the media queries for the logo */
@media (max-width: 768px) {
  .logo-img {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .logo-slogan {
    display: inline;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 100;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: background 0.2s;
}

.secondary-button:hover {
  background: rgba(37, 99, 235, 0.1);
}

main {
  flex: 1;
}

section {
  padding: 4rem 0;
}

.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align: center;
  padding: 6rem 0;
  min-width: 99vw;
  max-width: 100vw;
  margin-top: 2rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--dark);
}

h2 {
  font-size: 2.5rem;
  color: var(--dark);
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  color: var(--dark);
}

h4 {
  font-size: 1.25rem;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.slogan {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: block;
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--gray);
  font-size: 1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-badge i {
  color: var(--primary);
}

.story-carousel {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 3rem 0;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.story-title {
  font-size: 1.5rem;
  color: var(--primary);
}

.story-date {
  color: var(--gray);
  font-size: 0.9rem;
}

.story-content {
  line-height: 1.7;
}

.story-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.story-nav-button {
  background: var(--light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.story-nav-button:hover {
  background: var(--primary);
  color: white;
}

.subsidiary-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
}

.subsidiary-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  min-width: 99vw;
  max-width: 100vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 3rem 0;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  /* Mobile Navigation */
  nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-slogan {
    display: inline;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  .story-carousel {
    padding: 1.5rem;
  }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 3rem 0;
  }

  section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .logo {
    font-size: 1.25rem;
  }

  .logo-slogan {
    font-size: 0.7rem;
  }

  .cta-button,
  .secondary-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}


/* === BEGIN style.css 2 === */



.industry-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

#industries{
  margin-bottom: 1rem;
}