* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    padding-top: 80px;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 2rem;
    height: auto;
}

.nav-links a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00bfff;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #0062cc, #007bff);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}


.lang-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ea6c5;
    transition: color 0.3s, font-weight 0.3s;
}

.lang-label.active {
    color: white;
    font-weight: 900;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    background: #ccc;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.switch .slider {
    position: absolute;
    height: 18px;
    width: 18px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

#langToggle {
    display: none;
}

#langToggle:checked + .switch .slider {
    transform: translateX(22px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 1rem;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.hero-content h1 {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.about {
    background-color: #034468;
    color: white;
    padding: 5rem 1rem;
    width: 100%;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #10141c;
  color: #fff;
  padding: 4rem 1rem;
  flex-wrap: wrap;
  text-align: center;
}


.stat-box {
  flex: 1 1 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00aaff;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
}

.mission-vision {
    width: 100%;
    padding: 6rem 1rem;
    background: #1a1f25;
    color: #f0f0f0;
}

.mv-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.mv-card,
.mv-image-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.mv-card {
    background: #1b1b1b;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    text-align: center;
}

.mv-card h3 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #007ba7;
    margin-bottom: 0.75rem;
}

.mv-underline {
    width: 60px;
    height: 4px;
    margin: 0 auto 1.5rem auto;
    border: none;
    background: #0090e5;
    border-radius: 2px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #ddd;
}

.mv-image-wrap {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.mv-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.founders-section {
    background-color: #1a1f25;
    color: #f1f1f1;
    padding: 4rem 2rem;
}

h2.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.founder-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

.founder-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #22262e;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}


.founder-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.founder-card h3 {
    margin-bottom: 0.5rem;
    color: #00aaff;
    font-size: 1.1rem;
    text-align: center;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.3rem 0;
}

.contact-line i {
    font-size: 16px;
    color: #00aaff;
}

.contact-line a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.short-bio {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.full-bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 0.85rem;
    margin-top: 1rem;
    color: #bbb;
    text-align: left;
}

.toggle-btn {
    background: none;
    color: #00aaff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.founder-card.active .full-bio {
    max-height: 1000px;
}

.founder-card.active .short-bio {
    display: none;
}

.welders-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #12161f;
  color: #e0e0e0;
}

.section-title {
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00aaff;
  margin: 10px auto 0;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: #ccc;
}

.welders-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.welders-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.indiapol-section {
  background: #10141c;
  color: #e0e0e0;
  padding: 4rem 1rem;
  text-align: center;
}

.indiapol-section .section-title {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
}

.indiapol-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00aaff;
  margin: 10px auto 0;
}

.indiapol-columns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: left;
}

.indiapol-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.indiapol-text .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.indiapol-logo {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  margin-top: -6rem;
}

.indiapol-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
}

.indiapol-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #00aaff;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  margin: 2rem auto 0;
  text-align: center;
}


.indiapol-btn:hover {
  background-color: #008fcc;
}

.clients-section {
  background-color: #fff;
  padding: 4rem 1rem;
  overflow: hidden;
  text-align: center;
}

.clients-section .section-title {
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
}

.clients-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00aaff;
  margin: 10px auto 0;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll 40s linear infinite;
}

.slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.slide img {
  max-height: 80px;
  max-width: 300px;
  width: auto;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.site-footer {
  background-color: #10141c;
  color: #ccc;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-contact h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-contact p {
  margin: 0.2rem 0;
  line-height: 1.5;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #00aaff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00aaff;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00aaff;
  color: white;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, opacity 0.3s;
}

.scroll-to-top:hover {
  background-color: #005f66;
}

.email-button {
    display: inline-block;
    background: linear-gradient(135deg, #0062cc, #007bff);
    color: #fff;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
    transition: background 0.3s, transform 0.2s;
}

.email-button:hover {
    background: linear-gradient(135deg, #005bb5, #006fee);
    transform: scale(1.05);
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 1064px) {
    .indiapol-logo {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .mv-inner {
        flex-direction: column;
    }

    .mv-card,
    .mv-image-wrap {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .container {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem 2rem;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 1rem 0;
    }

    .lang-switch {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0.3rem 0.7rem;
        border-radius: 20px;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .founder-cards {
        flex-direction: column;
        align-items: center;
    }
    .founder-card {
        width: 100%;
        max-width: 90%;
    }

    .welders-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .welders-gallery img {
        min-width: 90%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .indiapol-columns {
        flex-direction: column;
        text-align: center;
    }

    .indiapol-text {
        align-items: center;
    }

    .indiapol-btn {
        margin: 0 auto;
    }

    .indiapol-logo {
        margin-top: 2rem;
    }

    .footer-top {
      justify-content: center;
      align-items: center;
    }

    .email-button {
      margin-left: 0.5rem;
    }
}

@media (max-width: 600px) {
    .mission-vision {
        padding: 4rem 1rem;
    }

    .mv-card {
        padding: 2rem 1.5rem;
    }

    .mv-card h3 {
        font-size: 1.75rem;
    }

    .mv-card p {
        font-size: 1rem;
    }
}