/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* HEADER */
.main-header /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* HEADER */
.main-header {
  /* Align header color with the top bar */
  background: #f0f0f0;
  color:  #002244;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.navbar {
  background-color: #f0f0f0;
}

.quote-btn {
  background: #003366;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* HERO */
.hero {
  background: url('../images/banner.jpg') no-repeat center center/cover;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FFD700;
}
.hero-content p {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
}
.hero-buttons .btn,
.hero-buttons .btn-secondary {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.btn-secondary {
  background: #fff;
  color: #003366;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background: #eaeaea;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
}

.stat-card {
  background: white;
  padding: 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

/* INDUSTRIES */
.industries {
  padding: 2rem;
  text-align: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.industry-card {
  background: white;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  background: #d3d3d3;
  color: #003366;
  padding: 1rem;
  text-align: center;
}
.news-preview {
  min-width: 280px;
  max-width: 320px;
  background-color: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

.news-preview img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.news-item {
  aspect-ratio: 1 / 1; /* Makes the card square */
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-preview span {
  display: block;
  font-weight: 600;
  color: #003366;
  font-size: 1rem;
}
.news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.marquee-content {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}



/* CEO HERO BANNER */
.ceo-hero {
  background: url('../images/ceo-banner.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CEO MESSAGE */
.ceo-message h1 {
  text-align: center;
  color: #003366; /* Match the h2 color */
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ceo-message {
  padding: 3rem 2rem;
  background: #fff;
}

.ceo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.ceo-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translate(-100px, 100px); /* slight position shift */
  transition: transform 0.3s ease;
  cursor: zoom-in;
}
.ceo-photo:hover {
 scale: (1.05); /* keep position, just zoom */
}

.ceo-text {
  flex: 1;
}

.ceo-text h2 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.ceo-text h4 {
  color: #666;
  margin-bottom: 1rem;
}

.ceo-text p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
/* ABOUT PAGE STYLES */
.careers-hero {
  background: url('../images/career.png') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
  .download-hero {
 background: url('../images/download.png') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
  
.about-hero {
 background: url('../images/about.png') no-repeat center center/cover;
  min-height: 600px;
  height: auto;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-us {
  background: #fff;
  padding: 3rem 2rem;
}

.about-us .container {
  max-width: 1200px;
  margin: auto;
}

.about-us h2 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.about-us p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.milestone-list {
  margin: 1rem 0 2rem 1rem;
  padding-left: 1rem;
  list-style-type: square;
}

.milestone-list li {
  margin-bottom: 0.75rem;
}
/* PRODUCTS PAGE */

.products-hero {
  background: url('../images/product.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.products-section {
  padding: 3rem 2rem;
  background: #fff;
}
.products-range {
  padding: 3rem 2rem;
  background: #fff;
}
.products-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* Ensure equal height */
}




.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.product-dimen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  text-align: center;
}


.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.product-label {
  background-color: #6d9bbd;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.product-desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  line-clamp: 5;
  line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 5; /* Standard property for compatibility */
}





.product-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.product-card p {
  margin-bottom: 1rem;
}

.product-card .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #C8102E;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
/* PROJECTS PAGE */

.projects-hero {
  background: url('../images/project.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.projects-section {
  padding: 3rem 2rem;
  background: #fff;
}

.projects-section h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 2rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.project-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}
/* QUALITY PAGE */

.quality-hero {
  background: url('../images/quality.png') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quality-section {
  padding: 3rem 2rem;
  background: #fff;
}

.quality-section .container {
  max-width: 1200px;
  margin: auto;
}

.quality-section h2 {
  color: #003366;
  margin-top: 2rem;
}

.quality-section p {
  line-height: 1.6;
  margin: 1rem 0;
}

.cert-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 2rem;
}

.cert-list li {
  padding: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.cert-list li::before {
  content: "✔";
  color: #C8102E;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.quality-section .btn {
  background: #C8102E;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 2rem;
}
/* NEWS PAGE */

.news-hero {
  background: url('../images/news-banner.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.news-section {
  padding: 4rem 2rem;
  background: #fff;
}

.news-section .container {
  max-width: 1200px;
  margin: auto;
}
.news-container .container {
  display: block !important;
  flex-direction: column !important;
   padding: 4rem 1rem;
  overflow: visible;  /* ✅ make sure it doesn’t hide overflowing content */
  background-color: #f9f9f9; /* Optional: better contrast */
}

.news-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.news-item {
   max-width: 360px;
  margin: 1rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
   width: 100%;
  max-width: 100%; /* Let it expand fully inside grid */
}
.news-item:hover {
  transform: translateY(-4px);
}
.news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-item img {
  width: 100%;
  height:300px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.news-item h3 {
  padding: 1rem;
  font-size: 1rem;
  color: #003366;
  font-weight: bold;
  margin: 0;
}

.news-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.75rem;
   display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}  
.news-ticker-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
  overflow: visible;  /* ✅ allows full content to appear */
}


.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}
.news-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
}
.news-item span {
  font-size: 1rem;
  color: #003366;
  font-weight: 600;
  display: block;
}
.news-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* increased from 280px or 320px */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* CONTACT PAGE */

.contacts-hero {
  background: url('../images/contact.png') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-section {
  padding: 3rem 2rem;
  background: #fff;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2,
.map-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-info ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  background: #C8102E;
  color: white;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #a00d1e;
}

.map-section {
  margin-top: 3rem;
}
/* QUOTE FORM PAGE */

.quote-form-page {
  padding: 3rem 2rem;
  background: #fff;
  text-align: center;
}

.quote-form-page h1 {
  color: #003366;
  margin-bottom: 1rem;
}

.quote-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-form input,
.quote-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.quote-form button {
  background: #C8102E;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.quote-form button:hover {
  background: #a00d1e;
}
/* WhatsApp Chat Button */

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;  /* Increase to 70px or 80px for larger circle */
  height: 60px; /* Match width */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-chat img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.whatsapp-chat img:hover {
  transform: scale(1.1);
}
/* HERO VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  z-index: 1;
}
/* FULLSCREEN HERO VIDEO BACKGROUND */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlaying Text on Top of Video */
.hero-overlay {
  position: relative;
  z-index: 2;
  color: #FFD700;
  text-align: center;
  padding-top: 20vh;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
/* BOTTOM NAVIGATION */

.bottom-nav {
  background-color: #f4f4f4;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

.bottom-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.bottom-nav li a {
  text-decoration: none;
  color: #003366;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.bottom-nav li a:hover {
   text-decoration: underline;
  color: #fff;
}
/* ENHANCED FOOTER NAVIGATION */

.footer-nav {
  background-color: #d3d3d3;
  color: #003366;
  padding: 3rem 1rem 2rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
  padding: 0;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  color: #003366;
  font-weight: bold;
  text-align: left;
}

.footer-col p,
.footer-col a {
  color: #003366;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
   text-decoration: underline;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-icon {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin-right: 8px;
}
/* SEARCH BAR */
.search-bar {
  display: inline-flex;
  margin-right: 1rem;
  align-items: center;
}

.search-bar input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  font-size: 0.9rem;
}

.search-bar button {
  padding: 6px 10px;
  border: 1px solid #ccc;
  background:#003366;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.company-overview {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
  overflow: hidden;

}

.company-overview .container {
  max-width: 1000px;
  margin: auto;
}

.company-overview h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.company-overview p {
  margin-bottom: 1.7rem;
  text-align: justify;
}
.main-products {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
}

.section-title {
  text-align: center;
  color: #4a637d;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.product-label {
  background-color: #6d9bbd;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.product-desc {
  font-size: 0.95rem;
  padding: 1rem;
  color: #333;
  line-height: 1.6;
}
.logo img {
  /* Smaller logo to fit the header better */
  height: 30px;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }
}
.news-container .container {
  display: block;
   padding: 2rem 1rem;
}
.news-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
  overflow: hidden;  
}

.news-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.news-item h3 {
 font-size: 1.4rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.news-item p {
    font-size: 1rem;
  color: #444;
  line-height: 1.7;
}
.news-ticker {
  overflow: visible;
  background-color: #f8f8f8;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
  padding: 2rem 1rem;
  margin-top: 4rem;
}

.news-track {
  display: flex;
  animation: scrollNews 40s linear infinite;
  gap: 2rem;
  align-items: center;
}

.news-item span {
  font-size: 1rem;
  white-space: nowrap;
  font-weight: 500;
}

@keyframes scrollNews {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.news-title {
  text-align: center;
  font-size: 1.8rem;
  color: #003366;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-family: 'Segoe UI', sans-serif;
}
/* .news-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #C8102E;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}*/
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: opacity 0.1s ease-in-out;
}
.container h2 {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}
/* Fix for homepage latest news marquee display */
#newsTicker .news-item {
  min-width: 280px;
  max-width: 320px;
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
  display: block;
}

#newsTicker .news-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

#newsTicker .news-item span {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  color: #003366;
}
.marquee-content {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  animation: scrollNews 30s linear infinite;
}

@keyframes scrollNews {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


.news-item {
  display: none; /* Hide by default */
}

.news-item.visible {
  display: block; /* Show only when marked visible */
  height: 20px;
}
/* Home Page News Marquee */
.home-marquee .marquee-wrapper {
  position: relative;
  overflow: hidden; /* ✅ Fully hide scrollbar */
  padding: 1rem 0;
  background-color: #f9f9f9;
  /*border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;*/
}
.marquee-content {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  animation: scrollNews 40s linear infinite;
  will-change: transform;
  overflow: visible;        /* ✅ Let the last item fully show */
}


body {
  overflow-x: hidden;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scrollNews {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-content .news-item.visible {
  display: block;
  min-width: 280px;
  max-width: 320px;
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #003366;
}

.marquee-content .news-item.visible img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.marquee-content .news-item.visible span {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  color: #003366;
  display: block;
  white-space: normal;
}


/* ✅ HOMEPAGE MARQUEE ONLY */
.home-marquee .news-item {
  display: block !important; /* Show all 6 items */

}

.see-all-news-container {
  text-align: center;
  margin-top: 1.5rem;
}

.see-all-news-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.see-more-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.see-all-news-btn:hover {
  background-color: #C8102E;
  transform: translateY(-2px);
}

/* Remove underline for Latest News */
.no-underline::after {
  display: none !important;
}
#tawkchat-container {
  z-index: 99999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
iframe[src*="tawk.to"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 99999 !important;
  position: fixed !important;
  bottom: 0 !important;
  right: 0 !important;
  pointer-events: auto !important;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
/*Manufacturing process page*/
.process-section {
  padding: 2rem;
  max-width: 1300px;
  margin: auto;
}

.process-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #003366;
}

.process-grid {
  margin-bottom: 4rem;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.step {
   position: relative;
  text-align: center;
}
.step-image-container {
  position: relative;
  overflow: hidden;
}
.step img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.hover-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover .hover-overlay {
  opacity: 1;
}

.step p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #003366;
}

.arrow {
  font-size: 2rem;
  color: #003366;
}
.arrow-down {
  text-align: right;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-right: 15rem;
}
.arrow-downs {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
margin-left: 15rem;
}

/*MIITE GALLERY*/
.gallery-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* PHOTO GALLERY CONTAINER */
.photo-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.photo-gallery .container {
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item p {
  margin-top: 10px;
  font-weight: 500;
}

/* LIGHTBOX STYLES */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
  cursor: zoom-in;
}
/*top bar */
.topbar {
  background-color: #d3d3d3;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Remove left offset so items center */
  margin-left: 0;
  color:  #002244;
}


.topbar ul {
  list-style: none;
  margin: 0;
  /* Remove extra padding to allow centering */
  padding-left: 0;
  display: flex;
  gap: 20px;
}

.topbar ul li {
  display: inline;
  margin-left: 6px;
}

.topbar ul li a {
 color: #003366;
  font-size: 1 rem;
  text-decoration: none;
font-weight: bold;
}

.topbar ul li a:hover {
  text-decoration: underline;
  color: #fff;
}
.language-switcher {
  display: flex;
  gap: 10px;
}
.language-switcher a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}
.language-switcher a:hover {
  text-decoration: underline;
  color: #fff;
}
.navbar ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

/*Global SeAH*/
.globe-section {
  padding: 2rem 0;
  background: #000;
}

.globe-section .section-title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.globe-container {
  height: 80vh;
  width: 100%;
}

.tooltip {
  background-color: white;
  padding: 4px 8px;
  border-radius: 4px;
  color: #000;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.map-section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.map-section .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* —— PRODUCT RANGE INFOGRAPHIC —— */
.products-range-infographic {
  padding: 60px 0;
  background: #f7f9fb;
}
.products-range-infographic .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.products-range-infographic .range-wrapper {
  display: grid;
  /* each card will be at least 280px wide, and share out leftover space */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* force each row to be 360px tall so the icons/images have room */
  grid-auto-rows: 360px;
  gap: 30px; /* space between cards */
}
.products-range-infographic .range-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: 100%;  /* match the 360px row height */
}

.products-range-infographic .range-icon {
  /* match the 240px–ish height you’re using for product images */
  height: 240px;
  width: auto;
  object-fit: cover;
  margin: 0 auto;
}
.products-range-infographic h3 {
  font-size: 1.25rem;
  margin: 0;
}
.products-range-infographic .range-visual {
  display: flex;
  align-items: center;
}
.products-range-infographic .range-label {
  font-size: 0.9rem;
  width: 50px;
  text-align: center;
}
.products-range-infographic .range-bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 0 10px;
}
.products-range-infographic .range-bar::before,
.products-range-infographic .range-bar::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 2px;
  height: 16px;
  background: #333;
}
.products-range-infographic .range-bar::before { left: 0; }
.products-range-infographic .range-bar::after { right: 0; }
.products-range-infographic .range-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0072CE 0%, #00A1FF 100%);
  border-radius: 4px;
}

/* Downloads Page */
.downloads-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.downloads-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}
.downloads-section .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.downloads-section .product-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.downloads-section .product-card:hover {
  transform: translateY(-5px);
}
.downloads-section .product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.downloads-section .product-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

/* Buttons */
.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 4px;
  margin-right: 10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

  .btn {
  display: inline-block;
  background: var(--primary-color, #003366);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}



.step img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/*
  background: #d3d3d3;
  color:  #002244;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}*/

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.quote-btn {
  background: #003366;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* HERO */
.hero {
  background: url('../images/banner.jpg') no-repeat center center/cover;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FFD700;
}
.hero-content p {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
}
.hero-buttons .btn,
.hero-buttons .btn-secondary {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.btn-secondary {
  background: #fff;
  color: #003366;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background: #eaeaea;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
}

.stat-card {
  background: white;
  padding: 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

/* INDUSTRIES */
.industries {
  padding: 2rem;
  text-align: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.industry-card {
  background: white;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  background: #d3d3d3;
  color: #003366;
  padding: 1rem;
  text-align: center;
}
.news-preview {
  min-width: 280px;
  max-width: 320px;
  background-color: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

.news-preview img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.news-preview span {
  display: block;
  font-weight: 600;
  color: #003366;
  font-size: 1rem;
}
.news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.marquee-content {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}



/* CEO HERO BANNER */
.ceo-hero {
  background: url('../images/ceo-banner.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CEO MESSAGE */
.ceo-message h1 {
  text-align: center;
  color: #003366; /* Match the h2 color */
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ceo-message {
  padding: 3rem 2rem;
  background: #fff;
}

.ceo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.ceo-photo {
  width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.ceo-text {
  flex: 1;
}

.ceo-text h2 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.ceo-text h4 {
  color: #666;
  margin-bottom: 1rem;
}

.ceo-text p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
/* ABOUT PAGE STYLES */

.manufacturing-hero {
 background: url('../images/manufacturing.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.manufacturing{
  background: #fff;
  padding: 3rem 2rem;
}

.manufacturing .container {
  max-width: 1200px;
  margin: auto;
}

.manufacturing h2 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.manufacturing p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.milestone-list {
  margin: 1rem 0 2rem 1rem;
  padding-left: 1rem;
  list-style-type: square;
}

.milestone-list li {
  margin-bottom: 0.75rem;
}
/* PRODUCTS PAGE */

.products-hero {
  background: url('../images/product.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.products-section {
  padding: 3rem 2rem;
  background: #fff;
}
.products-range {
  padding: 3rem 2rem;
  background: #fff;
}
.products-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* Ensure equal height */
}




.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.product-dimen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  text-align: center;
}


.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.product-label {
  background-color: #6d9bbd;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.product-desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;   
  -webkit-box-orient: vertical;
  overflow: hidden;
}





.product-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.product-card p {
  margin-bottom: 1rem;
}

.product-card .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #C8102E;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
/* PROJECTS PAGE */

.projects-hero {
  background: url('../images/project.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.projects-section {
  padding: 3rem 2rem;
  background: #fff;
}

.projects-section h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 2rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.project-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}
/* QUALITY PAGE */

.quality-hero {
  background: url('../images/quality.png') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quality-section {
  padding: 3rem 2rem;
  background: #fff;
}

.quality-section .container {
  max-width: 1200px;
  margin: auto;
}

.quality-section h2 {
  color: #003366;
  margin-top: 2rem;
}

.quality-section p {
  line-height: 1.6;
  margin: 1rem 0;
}

.cert-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 2rem;
}

.cert-list li {
  padding: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.cert-list li::before {
  content: "✔";
  color: #C8102E;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.quality-section .btn {
  background: #C8102E;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 2rem;
}
/* NEWS PAGE */

.news-hero {
  background: url('../images/news-banner.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.news-section {
  padding: 4rem 2rem;
  background: #fff;
}

.news-section .container {
  max-width: 1200px;
  margin: auto;
}
.news-container .container {
  display: block !important;
  flex-direction: column !important;
   padding: 4rem 1rem;
  overflow: visible;  /* ✅ make sure it doesn’t hide overflowing content */
  background-color: #f9f9f9; /* Optional: better contrast */
}

.news-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.news-item {
   max-width: 360px;
  margin: 1rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
   width: 100%;
  max-width: 100%; /* Let it expand fully inside grid */
}
.news-item:hover {
  transform: translateY(-4px);
}
.news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-item img {
  width: 100%;
  height:300px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.news-item h3 {
  padding: 1rem;
  font-size: 1rem;
  color: #003366;
  font-weight: bold;
  margin: 0;
}

.news-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.75rem;
   display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}  
.news-section .news-grid .news-item {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;          /* let content drive the height */
}


/* ——————————————————————————
   Force the image into a fixed‐height box,
   and zoom it out rather than cropping
—————————————————————————— */
.news-section .news-grid .news-item img {
  width: 100% !important;
  max-height: 180px !important;     /* limit image height */
  height: auto !important;          /* override any fixed height */
  object-fit: contain !important;   /* zoom out so the whole image shows */
  object-position: center !important;
}

/* ——————————————————————————
   Reserve a consistent block for the title
—————————————————————————— */
.news-section .news-grid .news-item h3 {
  display: block !important;        
  margin: 0.75rem 1rem !important;  /* restore sensible padding */
  min-height: auto !important;      /* remove forced min-height if any */
  overflow: visible !important;     /* ensure it’s not hidden */
}

.news-ticker-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
  overflow: visible;  /* ✅ allows full content to appear */
}
.news-ticker-section .marquee-content {
  display: flex;
  align-items: stretch;    /* keep items top-aligned */
 justify-content: flex-start;
}
.news-ticker-section .news-item {
   flex: 0 0 auto;                     /* keep natural width */
  align-self: stretch !important;     /* fill the full height of the row */
  display: flex;
  flex-direction: column;  
}

.news-ticker-section .news-item img {
  width: 100%;
  height: 300px; /* fixed height for consistency */
  object-fit: contain;                /* show entire head/top of photo */
  object-position: top center;  
}

.home-marquee .news-item.visible {
  height: auto !important;
}


.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}
.news-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
}
.news-item span {
  font-size: 1rem;
  color: #003366;
  font-weight: 600;
  display: block;
}
.news-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* increased from 280px or 320px */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* CONTACT PAGE */

.contact-hero {
  background: url('../images/contact.jpg') no-repeat center center/cover;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-section {
  padding: 3rem 2rem;
  background: #fff;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2,
.map-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-info ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  background: #C8102E;
  color: white;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #a00d1e;
}

.map-section {
  margin-top: 3rem;
}
/* QUOTE FORM PAGE */

.quote-form-page {
  padding: 3rem 2rem;
  background: #fff;
  text-align: center;
}

.quote-form-page h1 {
  color: #003366;
  margin-bottom: 1rem;
}

.quote-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-form input,
.quote-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.quote-form button {
  background: #C8102E;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.quote-form button:hover {
  background: #a00d1e;
}
/* WhatsApp Chat Button */

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;  /* Increase to 70px or 80px for larger circle */
  height: 60px; /* Match width */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-chat img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.whatsapp-chat img:hover {
  transform: scale(1.1);
}
/* ENHANCED FOOTER NAVIGATION */

.footer-nav {
  background-color: #d3d3d3;
  color: #003366;
  padding: 3rem 2rem 2rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  padding: 0 2rem;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  color: #003366;
  font-weight: bold;
  text-align: left;
}

.footer-col p,
.footer-col a {
  color: #003366;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
   text-decoration: underline;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-icon {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin-right: 8px;
}
/* SEARCH BAR */
.search-bar {
  display: inline-flex;
  margin-right: 1rem;
  align-items: center;
}

.search-bar input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  font-size: 0.9rem;
}

.search-bar button {
  padding: 6px 10px;
  border: 1px solid #ccc;
  background:#003366;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.company-overview {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
  overflow: hidden;

}

.company-overview .container {
  max-width: 1000px;
  margin: auto;
}

.company-overview h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.company-overview p {
  margin-bottom: 1.7rem;
  text-align: justify;
}
.main-products {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
}

.section-title {
  text-align: center;
  color: #4a637d;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.product-label {
  background-color: #6d9bbd;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.product-desc {
  font-size: 0.95rem;
  padding: 1rem;
  color: #333;
  line-height: 1.6;
}
.logo img {
  /* Smaller logo to fit the header better */
  height: 30px;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }
}
.news-container .container {
  display: block;
   padding: 2rem 1rem;
}
.news-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
  overflow: hidden;  
}

.news-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.news-item h3 {
 font-size: 1.4rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.news-item p {
    font-size: 1rem;
  color: #444;
  line-height: 1.7;
}
.news-ticker {
  overflow: visible;
  background-color: #f8f8f8;
  border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;
  padding: 2rem 1rem;
  margin-top: 4rem;
}

.news-track {
  display: flex;
  animation: scrollNews 40s linear infinite;
  gap: 2rem;
  align-items: center;
}

.news-item span {
  font-size: 1rem;
  white-space: nowrap;
  font-weight: 500;
}

@keyframes scrollNews {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.news-title {
  text-align: center;
  font-size: 1.8rem;
  color: #003366;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-family: 'Segoe UI', sans-serif;
}
/* .news-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #C8102E;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}*/
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: opacity 0.1s ease-in-out;
}
.container h2 {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}
/* Fix for homepage latest news marquee display */
#newsTicker .news-item {
  min-width: 280px;
  max-width: 320px;
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
  display: block;
}

#newsTicker .news-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

#newsTicker .news-item span {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  color: #003366;
}
.marquee-content {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  animation: scrollNews 30s linear infinite;
}

@keyframes scrollNews {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


.news-item {
  display: none; /* Hide by default */
}

.news-item.visible {
  display: block; /* Show only when marked visible */
}
/* Home Page News Marquee */
.home-marquee .marquee-wrapper {
  position: relative;
  overflow: hidden; /* ✅ Fully hide scrollbar */
  padding: 1rem 0;
  background-color: #f9f9f9;
  /*border-top: 2px solid #003366;
  border-bottom: 2px solid #003366;*/
}
.marquee-content {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  animation: scrollNews 40s linear infinite;
  will-change: transform;
  overflow: visible;        /* ✅ Let the last item fully show */
}


body {
  overflow-x: hidden;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scrollNews {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-content .news-item.visible {
  display: block;
  min-width: 280px;
  max-width: 320px;
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #003366;
}

.marquee-content .news-item.visible img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.marquee-content .news-item.visible span {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  color: #003366;
  display: block;
  white-space: normal;
}


/* ✅ HOMEPAGE MARQUEE ONLY */
.home-marquee .news-item {
  display: block !important; /* Show all 6 items */

}

.see-all-news-container {
  text-align: center;
  margin-top: 1.5rem;
}

.see-all-news-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.see-more-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.see-all-news-btn:hover {
  background-color: #C8102E;
  transform: translateY(-2px);
}

/* Remove underline for Latest News */
.no-underline::after {
  display: none !important;
}
#tawkchat-container {
  z-index: 99999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
iframe[src*="tawk.to"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 99999 !important;
  position: fixed !important;
  bottom: 0 !important;
  right: 0 !important;
  pointer-events: auto !important;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
/*Manufacturing process page*/
.process-section {
  padding: 2rem;
  max-width: 1300px;
  margin: auto;
}

.process-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #003366;
}

.process-grid {
  margin-bottom: 4rem;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.step {
  text-align: center;
}

.step img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #003366;
}

.arrow {
  font-size: 2rem;
  color: #003366;
}
.arrow-down {
  text-align: right;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-right: 15rem;
}
.arrow-downs {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
margin-left: 15rem;
}

/*MIITE GALLERY*/
.gallery-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* PHOTO GALLERY CONTAINER */
.photo-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.photo-gallery .container {
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item p {
  margin-top: 10px;
  font-weight: 500;
}

/* ————————— LIGHTBOX STYLES (replace completely) ————————— */
#lightbox {
  position: fixed;
  inset: 0;                         /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
#lightbox.hidden {
  display: none;
}

/* backdrop to catch clicks */
#lightbox .lb-backdrop {
  position: absolute;
  inset: 0;
}

/* wrapper for image + arrows */
#lightbox .lb-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
}

/* the enlarged image */
#lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* nav arrows */
#lightbox .lb-nav {
  position: relative;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  padding: 0 1rem;
  transition: color 0.2s;
  z-index: 1;
}
#lightbox .lb-nav:hover {
  color: #ccc;
}

/* close “×” button */
#lightbox .lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

/*top bar */
.topbar {
  background-color: #d3d3d3;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Remove left offset so items center */
  margin-left: 0;
  color:  #002244;
}


.topbar ul {
  list-style: none;
  margin: 0;
  /* Remove extra padding to allow centering */
  padding-left: 0;
  display: flex;
  gap: 20px;
}

.topbar ul li {
  display: inline;
  margin-left: 6px;
}

.topbar ul li a {
 color: #003366;
  font-size: 1 rem;
  text-decoration: none;
font-weight: bold;
}

.topbar ul li a:hover {
  text-decoration: underline;
  color: #fff;
}
.language-switcher {
  display: flex;
  gap: 10px;
}
.language-switcher a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}
.language-switcher a:hover {
  text-decoration: underline;
  color: #fff;
}
.navbar ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

/*Global SeAH*/
.globe-section {
  padding: 2rem 0;
  background: #000;
}

.globe-section .section-title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.globe-container {
  height: 80vh;
  width: 100%;
}

.tooltip {
  background-color: white;
  padding: 4px 8px;
  border-radius: 4px;
  color: #000;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.map-section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.map-section .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* —— PRODUCT RANGE INFOGRAPHIC —— */
.products-range-infographic {
  padding: 60px 0;
  background: #f7f9fb;
}
.products-range-infographic .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.products-range-infographic .range-wrapper {
  display: grid;
  /* each card will be at least 280px wide, and share out leftover space */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* force each row to be 360px tall so the icons/images have room */
  grid-auto-rows: 360px;
  gap: 30px; /* space between cards */
}
.products-range-infographic .range-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: 100%;  /* match the 360px row height */
}

.products-range-infographic .range-icon {
  /* match the 240px–ish height you’re using for product images */
  height: 240px;
  width: auto;
  object-fit: cover;
  margin: 0 auto;
}
.products-range-infographic h3 {
  font-size: 1.25rem;
  margin: 0;
}
.products-range-infographic .range-visual {
  display: flex;
  align-items: center;
}
.products-range-infographic .range-label {
  font-size: 0.9rem;
  width: 50px;
  text-align: center;
}
.products-range-infographic .range-bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 0 10px;
}
.products-range-infographic .range-bar::before,
.products-range-infographic .range-bar::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 2px;
  height: 16px;
  background: #333;
}
.products-range-infographic .range-bar::before { left: 0; }
.products-range-infographic .range-bar::after { right: 0; }
.products-range-infographic .range-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0072CE 0%, #00A1FF 100%);
  border-radius: 4px;
}

/* Downloads Page */
.downloads-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.downloads-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}
.downloads-section .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.downloads-section .product-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.downloads-section .product-card:hover {
  transform: translateY(-5px);
}
.downloads-section .product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.downloads-section .product-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

/* Buttons */
.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 4px;
  margin-right: 10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

  .btn {
  display: inline-block;
  background: var(--primary-color, #003366);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}
/* hide by default */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* show when “open” */
.modal.open {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal-close {
  cursor: pointer;
  font-size: 1.2rem;
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
}


.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
}

.step img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
/* Charts section */
.charts-section {
  padding: 3rem 0;
}
.charts-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.charts-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.chart-card {
  flex: 1 1 300px;
  max-width: 500px;
  min-height: 500px;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* ─── Wider & Taller Charts ─── */
.charts-grid .chart-card {
  /* Make each card about half the width of its parent (2 cards/row) */
  flex: 1 1 45%;
  max-width: 45%;
  min-height: 500px;        /* taller card if you want more vertical space */
}

.charts-grid .chart-card canvas {
  /* Fill the card’s width, and set an explicit height */
  width: 100% !important;
  height: 450px !important; /* increase this for even taller charts */
}


