 <style>
    /* Base Styles */
    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding-top: 80px; /* For fixed nav */
      background-color: #f8f9fa;
      color: #333;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Fixed Navigation Bar */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: #0f2027;
      z-index: 999;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    nav ul {
      list-style: none;
      display: flex;
	  align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      background: #0f2027;
    }

    nav ul li {
      position: relative;
	  margin: 0 15px;
    }

    nav ul li a {
      display: inline-block;
      padding: 18px 20px;
      color: white;
      font-weight: 600;
      transition: background 0.3s;
	  text-decoration: none;
    }

    nav ul li a:hover {
      background: #203a43;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu {
      position: absolute;
      top: 56px;
      left: 0;
      background: #203a43;
      display: none;
      min-width: 220px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .dropdown-menu li a {
      padding: 12px 20px;
      display: white;
    }
	/* Second NavBar start */
	 /* Second Navbar (Logo & Links) */
    .second-navbar {
		background-color: #f5f8fa;
        color: black;
        padding: 10px 20px;
        position: fixed;
        top: 50px; /* Below the first navbar */
        width: 100%;
        z-index: 999;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
	.second-navbar2 {
      position: fixed;
      top: 100;
      width: 100%;
      background: #0f2027;
      z-index: 999;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    .second-navbar2 h1 {
      font-size: 2em;
      margin-bottom: 0px;
    }
	
	.second-navbar .logo {
      font-size: 18px;
      font-weight: bold;
	
    }

    .second-navbar .nav-links a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
    }

    .second-navbar .nav-links a:hover {
      text-decoration: underline;
    }
	
	.logo {
	  height: 35px;
	  width: 35px;
	  align-items: center;
	}
	
	.second-navbar-content {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  max-width: 100%;
	  margin: auto;
	  flex-wrap: wrap;
	}

	.logo-group {
	  display: flex;
	  align-items: center;
	  margin-bottom: 0px;
	}

	.logo-img {
	  width: 90px;
	  height: 60px;
	  margin-right: 0px;
	  align-items: center;
	  border-radius: 4px;
	  object-fit: cover;
	}

	.logo-text {
	  font-size: 1.5rem;
	  color: #111827;
	  margin: 0;
	}

	.videos-group {
	  display: flex;
	  gap: 2px;
	  flex-wrap: wrap;
	  justify-content: center; /* Optional: better layout control */
	  max-width: 100%;
	  overflow: hidden;
	}

	.custom-video {
	  width: 200px;
	  height: 60px;
	  object-fit: cover;
	  border-radius: 4px;
	  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	  cursor: default;
	  flex-shrink: 0; /* Prevent shrinking when container gets smaller */
	  z-index: 1; /* Prevent taking over on resize */
	}

	/* Prevent video from taking over screen */
	
	.custom-video:hover {
	  transform: scale(1.05);
	  box-shadow: 0 0 12px rgba(0, 128, 255, 0.6);
	}

	/* Responsive for mobile */
	@media (max-width: 768px) {
	  .navbar-content {
		flex-direction: column;
		align-items: flex-start;
	  }

	 
	}

	/* Second NAVBAR Ends here */	
	
	/* Language Switcher in Navbar */
	.lang-switcher select {
	  background-color: #203a43;
	  color: white;
	  font-weight: 600;
	  font-size: 1em;
	  border: none;
	  padding: 10px 5px;
	  cursor: pointer;
	  appearance: none;
	}

	.lang-switcher select:focus {
	  outline: none;
	}

	.lang-switcher {
	  display: flex;
	  align-items: center;
	}


    /* Hero Section */
    .hero {
      background: linear-gradient(to right, #203a43, #2c5364);
      color: white;
      text-align: center;
      padding: 100px 20px 40px;
    }

    .hero h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .hero button {
      padding: 12px 24px;
      font-size: 1em;
      background: #f39c12;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .hero button:hover {
      background: #d35400;
    }

    /* Industry Solutions Grid */
    .industries {
      padding: 60px 20px;
      text-align: center;
    }

    .industries h2 {
      font-size: 2em;
      margin-bottom: 30px;
    }

    .industry-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .industry-card {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    /* Contact Form */
    .contact-form {
      background: #f1f1f1;
      padding: 60px 20px;
      text-align: center;
    }

    .contact-form h2 {
      font-size: 2em;
      margin-bottom: 20px;
    }

    .contact-form form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-form input, 
    .contact-form textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
    }

    .contact-form button {
      padding: 12px;
      background: #203a43;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    .contact-form button:hover {
      background: #0f2027;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 20px;
      background: #0f2027;
      color: #aaa;
    }
	
	
    .section h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: #0f2027;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .tab {
      background: #fff;
      border: 2px solid #0f2027;
      padding: 10px 20px;
      border-radius: 20px;
      cursor: pointer;
      transition: 0.3s;
    }

    .tab:hover, .tab.active {
      background: #0f2027;
      color: #fff;
    }

    .industry-content {
      margin-top: 20px;
      display: none;
      animation: fadeIn 0.5s ease-in;
    }

    .industry-content.active {
      display: block;
    }
	
	  .cta {
      text-align: center;
      background: #203a43;
      color: white;
      padding: 40px 20px;
    }

    .cta h3 {
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .cta button {
      padding: 12px 24px;
      font-size: 1em;
      background: #f39c12;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .cta button:hover {
      background: #d35400;
    }
	
	/* Chatbot Styles */
.chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px; /* changed from left: 20px */
  width: 300px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: #203a43;
  color: white;
  padding: 12px;
  font-weight: bold;
}

.chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  max-height: 250px;
}

.chatbot input {
  border: none;
  padding: 10px;
  border-top: 1px solid #ddd;
  width: 100%;
  font-size: 1em;
  outline: none;
}

	
	
	

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 { font-size: 2em; }
      .contact-form input, .contact-form textarea { width: 100%; }
    }
  </style>