/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: rgb(239, 239, 239);
  color: #e3e3e3;
  scroll-behavior: smooth;
}

/* Animations */
body.fade-out { opacity: 0; transition: opacity 0.5s ease-in-out; }
body { transition: opacity 0.5s ease-in-out; }
body.fade-in { opacity: 0; animation: fadeInPage 0.8s ease-in forwards; }
@keyframes fadeInPage { to { opacity: 1; } }

@keyframes slideInUp {
  0% { opacity: 0; transform: translate(-50%, 30%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes glowChevron {
  0%, 100% { opacity: 0.3; color: #444; }
  50% { opacity: 1; color: #ffffff; }
}

@keyframes logoFadeIn { to { opacity: 1; } }
@keyframes fadeInMain { to { opacity: 1; } }
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Intro Screen */
#intro-screen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background-color: #000000;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 1s ease; opacity: 1;
}
#intro-screen.fade-out { opacity: 0; pointer-events: none; }
.intro-logo {
  max-width: 175px; height: 190px;
  opacity: 0; animation: logoFadeIn 1.5s ease-in-out forwards;
}
#main-content.hidden { opacity: 0; }
#main-content.fade-in { animation: fadeInMain 1.5s ease forwards; }

/* Header */
.main-header {
  position: relative;
  background-color: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  display: flex; align-items: center; text-align: center;
}
.main-header .logo {
  position: relative; height: 100%; max-height: 55px; /* 14-inch optimization */
  pointer-events: auto; cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-right: 20px;
}
.main-header .logo:hover { transform: scale(1.05); opacity: 0.8; }
.main-header h1 {
  margin: 0 auto; font-size: 1.8rem; padding: 0 20px;
  color: white; font-family: 'Special Gothic Expanded One', sans-serif;
  position: absolute; left: 50%; transform: translateX(-50%);
}

/* Landing Page */
.landing-container { display: flex; height: 100vh; }
.brochure {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  background-size: cover; background-position: center;
  color: white; text-shadow: 1px 1px 5px black;
  overflow: hidden; cursor: pointer; opacity: 0;
  transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.brochure.animate-in { opacity: 0.85; transform: translateY(0) scale(1); }
.brochure.animation-complete { pointer-events: auto; }
.brochure.animation-complete:hover { transition: opacity 0.3s ease-in-out; opacity: 1; }
.brochure.animation-complete:hover .explore-btn {
  transition: opacity 0.5s ease-in-out; opacity: 1;
  background-color: white; color: black;
}
#defence { background-image: url('assets/images/defence.webp'); }
#industrial { background-image: url('assets/images/industrial.webp'); }
#commercial { background-image: url('assets/images/commercial.webp'); }
.brochure h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: 'Special Gothic Expanded One', sans-serif; text-align: center; }
.explore-btn {
  padding: 10px 20px; background-color: rgba(0,0,0,0.6);
  border: 2px solid black; border-radius: 10px;
  color: rgb(250, 250, 250); text-decoration: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem;
  font-weight: bold; overflow: hidden; cursor: pointer; opacity: 0;
}

/* Body & Backgrounds */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: rgb(255, 255, 255);
  color: #333;
}
body.with-background {
  background-image: url('assets/bg.png');
  background-size: cover; background-position: center;
  background-attachment: scroll; background-repeat: repeat;
}
body.with-background::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(22, 22, 22, 0); z-index: -1; pointer-events: none;
}

/* Project Blocks */
.project-block {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; width: 90%; max-width: 1200px;
  margin: 3rem auto; background-color: rgba(255, 255, 255, 0);
  padding: 1.5rem; border-radius: 12px; transition: all 0.3s ease;
}
.project-block:hover {
  background-color: rgba(255, 255, 255, 0);
  transform: scale(1.02); box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}
.project-block.reverse {
  flex-direction: row-reverse; width: 90%; max-width: 1200px; margin: 3rem auto;
}
.project-image img {
  width: 100%; max-width: 500px; height: auto;
  max-height: 350px; object-fit: cover; margin-bottom: 1rem;
}
.project-content { max-width: 550px; }
.project-content h2 {
  font-size: 1.5rem; margin-bottom: 15px;
  font-family: 'Special Gothic Expanded One', sans-serif; color: #000000;
}
.project-content p {
  font-size: 1.2rem; line-height: 1.5; margin-bottom: 15px;
  font-family: 'Space Grotesk', sans-serif; color: #393939cc;
}
.project-button {
  display: inline-block; padding: 10px 20px;
  background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);
  text-decoration: none; border-radius: 8px;
  font-family: 'Tektur', sans-serif; transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.project-button:hover {
  background-color: rgb(255, 111, 0); transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section img {
  width: 100%; height: auto; max-height: 550px; object-fit: cover;
}
.tagline {
  font-family: 'Aldrich', sans-serif; font-size: 1.4rem;
  color: rgb(96, 96, 96); text-align: center;
  margin-top: 2rem; opacity: 1; margin-bottom: 1.5rem;
}
.tagline-section {
  text-align: center; margin-top: -2rem; margin-bottom: 2rem;
  font-family: 'Aldrich', sans-serif;
  background: linear-gradient(to top, rgb(0, 0, 70), rgb(255, 255, 255));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
}

/* Banner */
.banner-wrapper { position: relative; width: 100%; height: auto; overflow: hidden; }
.banner-wrapper img, .banner-wrapper video {
  width: 100%; height: auto; display: block; object-fit: cover;
}
.banner-wrapper img.blur {
  transition: filter 0.3s ease; filter: blur(var(--blur-amount, 0px));
}
.chevron-overlay {
  position: absolute; bottom: 0px; left: 50%;
  transform: translateX(-50%); display: flex; flex-direction: column; align-items: center;
}
.chevron {
  font-size: 3.5rem; color: #444; opacity: 0.3;
  transform: rotate(-90deg); animation: glowChevron 1.0s infinite;
}
.overlay-heading {
  position: absolute; top: 70%; left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0); padding: 2rem;
  width: 100%; text-align: center; font-size: 3rem;
  font-family: 'Tektur', sans-serif; color: #ffffff;
  z-index: 10; animation: slideInUp 1.2s ease-out forwards;
  opacity: 0; animation-delay: 0.5s;
}

/* Tiles Section */
.tiles-section {
  position: relative; padding: 20px 50px;
  background-color: #ffffff00; overflow: hidden; margin-top: 20px;
}
.tiles-wrapper {
  display: flex; gap: 20px; padding: 0 10px;
  scroll-behavior: smooth; overflow-x: auto;
  scrollbar-width: none; align-items: center;
}
.tiles-wrapper::-webkit-scrollbar { display: none; }

/* === UPDATED TILE SIZE === */
.tile {
  position: relative;
  flex: 0 0 260px; /* Reduced for 14-inch screens */
  width: 100%;
  max-width: 260px;
  height: 320px;
  border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: transform 0.3s ease;
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile:hover img { transition: transform 1s ease; transform: scale(1.05); }

.tile-label {
  position: absolute; bottom: 10px; width: 100%;
  text-align: center; color: white; background: rgba(0, 0, 0, 0.6);
  padding: 5px 0; font-weight: bold; font-size: 1rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.tile:hover .tile-label { opacity: 1; }

/* Scroll Arrows */
.scroll-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0); color: black;
  font-size: 2rem; padding: 10px; cursor: pointer; z-index: 20;
  transition: all 0.3s ease;
}
.scroll-arrow:hover { transform: translateY(-50%) scale(1.1); }
.scroll-arrow:active { transform: translateY(-50%) scale(0.95); }
.scroll-arrow.left { left: 10px; }
.scroll-arrow.right { right: 10px; }

/* --- CENTER TILES SECTION --- */
.tiles-section.center-tiles {
  padding: 40px 20px;
  width: 100%;
}

.tiles-wrapper.center-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tiles-section.center-tiles .scroll-arrow { display: none !important; }

.tiles-heading {
  text-align: center; font-size: 2.2rem;
  font-family: 'Aldrich', sans-serif; color: #000000;
  margin-bottom: 20px; margin-top: 40px;
}

/* --- DUAL TILE SECTION --- */
.dual-tile-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12rem; /* Adjusted for 14-inch */
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: transparent;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === DUAL TILE ALIGNMENT FIX === */
.dual-tile {
  /* Enforce width matching the tile exactly (260px) */
  flex: 1 1 300px;
  width: 260px;
  max-width: 300px;
  text-align: center;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem; */
}

.dual-tile .tiles-heading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  /* word-wrap: break-word; Ensure text wraps within container */
}

.dual-tile .tile {
  margin: auto;
}

.tiles-heading {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Aldrich', sans-serif;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 40px;
}

/* Footer */
.custom-footer { background-color: #000000; color: white; padding: 20px; }
.footer-container {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; width: 90%; max-width: 1200px; margin: auto; gap: 20px;
}
.footer-logo img { width: 100%; max-width: 110px; height: auto; }
.footer-links { display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }
.footer-links a {
  display: block; color: #ffffff; text-decoration: none;
  font-size: 1.1rem; white-space: nowrap;
}
.footer-bottom { text-align: center; margin-top: 15px; font-size: 0.9rem; color: #888; }
.footer-links .footer-x-icon {
  width: 28px; height: 28px; border-radius: 6px;
  object-fit: cover; transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 5px; vertical-align: middle;
}
.footer-links .footer-x-icon:hover { transform: scale(1.1); opacity: 0.8; }

/* Leaders Section */
.leaders-section { padding: 50px 20px; background-color: #ffffff; }
.leaders-heading {
  text-align: center; font-size: 2.2rem;
  font-family: 'Special Gothic Expanded One', sans-serif;
  margin-bottom: 40px; color: #000000;
}
.leaders-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; width: 100%; max-width: 1200px; margin: 0 auto; flex-wrap: wrap;
}
.leader-tile {
  background-color: #000; color: #fff; border: 2px solid #333;
  width: 100%; max-width: 240px; height: 340px;
  text-align: left; transition: transform 0.3s ease;
  display: flex; flex-direction: column; overflow: hidden;
  font-family: 'Space Grotesk', sans-serif; position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.leader-tile:hover { transform: scale(1.02); }
.leader-tile img { width: 100%; height: 190px; object-fit: cover; object-position: center; }
.leader-info { padding: 15px; display: flex; flex-direction: column; height: 150px; width: 100%; }
.leader-tile h3 { font-size: 1.3rem; margin: 5px 0 0 0; font-weight: 600; color: #fff; text-align: center; }
.leader-tile p { font-size: 1rem; color: #888; margin: 15px 0 0 0; line-height: 1.4; text-align: center; }

/* Certifications & Clientele */
.certification-section, .clientele-section {
  padding: 50px 20px; background-color: #ffffff; text-align: center;
}
.certification-heading, .clientele-heading {
  font-size: 2rem; font-family: 'Special Gothic Expanded One', sans-serif;
  margin-bottom: 30px; color: #000000;
}
.certification-image {
  width: 100%; max-width: 500px; height: auto;
  border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.clientele-image {
  width: 100%; max-width: 650px; height: auto;
  border-radius: 12px; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-container {
  display: flex; gap: 2rem; align-items: flex-start;
  width: 90%; max-width: 1200px; margin: 0 auto; padding: 2rem;
}
.contact-left { flex: 1; padding-right: 1rem; }
.contact-left h2 {
  font-size: 2.5rem; margin-bottom: 1rem; color: #333; margin-top: 4rem;
}
.contact-left p { font-size: 1.1rem; line-height: 1.6; color: #666; }
.contact-right .contact-details.moved {
  display: flex; flex-direction: column; gap: 1rem;
  font-size: 1.1rem; margin-top: 4rem;
  font-family: 'Space Grotesk', sans-serif; text-align: justify;
}
.contact-form { margin-top: 3rem; margin-bottom: 2rem; }
.form-row { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-row.two-column { flex-direction: row; gap: 1rem; }
.contact-form input, .contact-form textarea {
  padding: 1rem; font-size: 1rem; font-family: "Wallpoet", sans-serif;
  border: 1px solid #ccc; border-radius: 8px; width: 100%; background-color: #f9f9f9;
}
.form-row.two-column input { flex: 1; }
.contact-form button {
  background-color: #333; color: white; padding: 0.8rem 2rem;
  border: none; border-radius: 2rem; font-weight: bold;
  cursor: pointer; width: fit-content; transition: background-color 0.3s ease;
  margin-left: auto; margin-right: auto; display: block;
}
.contact-form button:hover { background-color: #555; }
.map-container { margin-top: 3rem; width: 100%; }
.contact-details {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 5rem; text-align: center; margin: 2rem auto; font-size: 1rem;
}
.contact-details.row {
  display: flex; justify-content: center; gap: 5rem;
  margin: 2rem auto; font-size: 1.1rem; text-align: center;
}

/* FAQ */
#faq { background: #f8f9fa; padding: 60px 0; }
#faq .container { width: 90%; max-width: 1200px; margin: 0 auto; }
.faq-layout { display: flex; gap: 40px; align-items: flex-start; }
.faq-title { flex: 0 0 250px; }
.faq-title h2 { font-size: 2.2rem; font-weight: 700; color: #333; margin: 0; }
.faq-container { flex: 1; }
.faq-item {
  background: white; border-radius: 8px; margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); overflow: hidden; transition: all 0.3s ease;
}
.faq-question {
  padding: 20px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  background: white; border: none; width: 100%; text-align: left;
}
.faq-question span { font-size: 1.1rem; font-weight: 600; color: #333; flex: 1; }
.faq-icon {
  font-size: 1.5rem; font-weight: bold; color: black;
  transition: transform 0.3s ease; transform: rotate(180deg);
}
.faq-item.active .faq-icon { transform: rotate(90deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f9fa;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 20px 20px 20px; }

/* Defense & Internal Pages */
.def-container, .def-la-container {
  margin: 2rem auto; padding: 2rem; width: 90%; max-width: 1200px;
}
.def-container h2 { font-size: 2.2rem; font-family: 'Aldrich', sans-serif; font-weight: bold; }
.intro-section { display: flex; flex-wrap: wrap; gap: 2rem; }
.intro-text-mat, .intro-text-la, .intro-text-gim, .intro-text-tx,
.intro-text-gcs, .intro-text-uav, .uav-link-text {
  margin-top: 2rem; font-family: "Aldrich", sans-serif; font-size: 1.15rem;
  flex: 1 1 55%; text-align: justify;
}
.intro-image, .intro-image-gcs,
.intro-video-la, .intro-video-gim, .intro-video-uav { flex: 1 1 40%; }
.intro-image img, .intro-image-gcs img,
.intro-video-la video, .intro-video-gim video, .intro-video-uav video {
  margin-top: 1.5rem; width: 100%; border-radius: 8px;
}
.section-title {
  font-weight: 700; font-size: 1.5rem; margin-top: 2.5rem;
  margin-bottom: 1rem; font-family: "Michroma", sans-serif;
}
.key-features { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.feature-box {
  flex: 1 1 45%; background: #f9f9f9; padding: 1rem;
  border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; transform: translateX(-100px);
}
.feature-box.animate-left { animation: slideInLeft 0.6s ease-out forwards; }
.feature-box.animate-right { animation: slideInRight 0.6s ease-out forwards; }
.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }
.feature-box:nth-child(5) { animation-delay: 0.5s; }
.feature-box:nth-child(6) { animation-delay: 0.6s; }
.feature-icon { width: 100%; max-width: 40px; height: 40px; object-fit: contain; }

.specs-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.specs-table th, .specs-table td {
  border: 1px solid #ccc; padding: 10px; vertical-align: middle;
  text-align: left; width: 50%; font-family: "Electrolize", sans-serif;
}
.specs-table tr:nth-child(even) { background-color: rgb(188, 188, 188); }
.specs-table tr:nth-child(odd) { background-color: #e9e9e9; }

/* Tracker Slideshow - INCREASED HEIGHT */
.tracker-slideshow-section { background-color: #2f2f2f56; padding: 30px 20px; margin: 3rem 0; }
.tracker-slideshow { position: relative; width: 100%; max-width: 900px; margin: 0 auto; }
.slideshow-container-tracker {
  position: relative; width: 100%; height: 750px; /* Increased Height */
  overflow: hidden; border-radius: 8px;
}
.slideshow-container-tracker h3 {
  font-size: 2.5rem; font-family: 'Special Gothic Expanded One', sans-serif;
  text-align: center; color: #000000;
}
.tracker-slide {
  position: absolute; width: 100%; height: 100%; opacity: 0;
  transition: opacity 0.5s ease-in-out; display: flex; align-items: center; justify-content: center;
}
.tracker-slide.active { opacity: 1; }
.tracker-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tracker-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0); color: rgb(0, 0, 0);
  border: none; font-size: 3rem; padding: 10px; cursor: pointer;
  z-index: 10; transition: all 0.3s ease;
}
.tracker-arrow:hover { transform: translateY(-50%) scale(1.1); }
.tracker-arrow.prev { left: -50px; }
.tracker-arrow.next { right: -50px; }
.tracker-indicators {
  position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 12px; z-index: 10;
}
.tracker-indicator {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.4); cursor: pointer; transition: background 0.3s ease;
}
.tracker-indicator.active { background: rgba(255, 255, 255, 0.8); }

/* Commercial Pages */
.tiles-wrapper-commercial {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; padding: 20px; justify-items: center; margin-top: 3rem;
}
.tile-commercial {
  position: relative; width: 100%; max-width: 350px; height: 350px;
  border-radius: 6px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease;
}
.tile-commercial img { width: 100%; height: 100%; object-fit: cover; }
.tile-commercial:hover img { transform: scale(1.05); }
.tile-label-commercial {
  position: absolute; bottom: -10px; width: 100%;
  text-align: center; color: rgb(0, 0, 0); background: rgba(0, 0, 0, 0);
  font-family: "Tektur", sans-serif; padding: 5px 0; font-weight: bold; font-size: 1.3rem; opacity: 1;
}

.overlay-tile-container {
  margin: 3rem auto; width: 90%; max-width: 1200px;
  background-color: #777777; border-radius: 12px; padding: 60px 30px;
  position: relative; z-index: 1; min-height: 500px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.overlay-tile-container::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../assets/commercial/options.png');
  background-size: cover; background-position: center;
  background-repeat: no-repeat; border-radius: 12px; z-index: 1;
}
.overlay-tile-container h2 {
  font-size: 2.5rem; font-family: 'Aldrich', sans-serif;
  text-align: center; margin-bottom: 30px; color: #000;
  position: relative; z-index: 3;
}
.overlay-tile-wrapper {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px; width: 100%; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 3;
}
.tile-overlay {
  position: relative; background: rgba(255, 255, 255, 0);
  border-radius: 12px; overflow: hidden; height: 250px;
  cursor: pointer; box-shadow: 0 8px 20px rgba(0, 0, 0, 0); transition: all 0.3s ease;
}
.tile-overlay:hover { transform: translateY(-5px) scale(1.02); background: rgba(255, 255, 255, 0); }
.tile-overlay img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.tile-overlay:hover img { transform: scale(1.05); }
.tile-label-overlay {
  position: absolute; bottom: -15px; width: 100%;
  text-align: center; color: rgba(255, 255, 255, 0);
  font-family: 'Aldrich', sans-serif; font-weight: bold;
  font-size: 1.3rem; opacity: 0; transition: opacity 0.3s ease;
}
.tile-overlay:hover .tile-label-overlay { opacity: 1; color: #000; }

.tagline-commercial {
  text-align: left; margin-left: 5%; margin-top: 40px; margin-bottom: 10px;
  font-family: 'Aldrich', sans-serif;
  background: linear-gradient(to right, rgb(0, 0, 70), rgb(50, 50, 180));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.8rem;
}
.commercial-banner img, .bldc-banner img, .veron-banner img, .orbion-banner img {
  width: 100%; height: auto; max-height: 25rem; object-fit: cover;
  margin-top: 3rem; margin-bottom: 5rem; object-position: right;
}

/* Product Slideshow - INCREASED WIDTH */
.product-slideshow {
  position: relative; 
  max-width: 1100px; /* Increased width from 900px */
  margin: 40px auto;
  background-color: #f5f5f5; border-radius: 12px; overflow: hidden; margin-bottom: 5rem;
}
.slideshow-container {
  position: relative; width: 100%; height: 600px; /* Increased Height */
  overflow: hidden; object-position: center;
}
.slide {
  position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #ffffff; padding: 30px 20px 20px;
  transform: translateY(100%); transition: transform 0.5s ease;
}
.slide.active .slide-content { transform: translateY(0); }
.slide-title { font-size: 1.6rem; font-weight: bold; margin-bottom: 8px; font-family: 'Tektur', sans-serif; }
.slide-description { font-size: 1rem; line-height: 1.4; font-family: 'Space Grotesk', sans-serif; margin-bottom: 30px; }
.slideshow-indicators {
  position: absolute; bottom: 15px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.indicator {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: background 0.3s ease;
}
.indicator.active { background: white; }
.slideshow-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0); color: rgb(159, 159, 159);
  border: none; font-size: 1.5rem; padding: 10px; cursor: pointer; z-index: 10;
}
.slideshow-arrow:hover { transform: translateY(-50%) scale(1.1); }
.slideshow-arrow.prev { left: 10px; }
.slideshow-arrow.next { right: 10px; }

/* Product Page Layout */
.product-hero { padding: 50px 20px; background-color: #e5e5e5; }
.product-container {
  display: flex; flex-wrap: wrap; gap: 30px; max-width: 1100px;
  margin: auto; align-items: center;
}
.product-image img {
  max-width: 350px; width: 100%; border-radius: 10px; object-fit: cover;
}
.product-details { flex: 1; }
.product-details h2 { font-size: 2.2rem; margin-bottom: 10px; font-family: "Aldrich", sans-serif; }
.price { font-size: 1.3rem; margin-bottom: 10px; }
.stock { font-weight: bold; margin-bottom: 15px; }
.in-stock { color: green; }
.product-specs { list-style: none; padding-left: 0; font-size: 1rem; font-family: "Electrolize", sans-serif; }
.product-specs li { margin-bottom: 8px; }

/* Tabs Section */
.product-tabs { width: 90%; max-width: 1000px; margin: 50px auto; padding: 0 10px; }
.tab-buttons { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-button {
  background-color: #ddd; border: none; padding: 10px 20px; font-weight: bold;
  cursor: pointer; border-radius: 5px; font-family: "Michroma", sans-serif;
}
.tab-button.active { background-color: #333; color: white; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 1rem; line-height: 1.6; }
.technical-drawing { width: 100%; max-width: 550px; display: block; margin: 20px auto; }
.prod-specs-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.prod-specs-table th, .prod-specs-table td {
  text-align: left; padding: 10px; border: 1px solid #ccc;
  font-size: 0.95rem; font-family: "Electrolize", sans-serif; font-weight: bold;
}
.prod-specs-table th { background-color: #f0f0f0; max-width: 200px; }

/* Industrial Videos */
.industrial-videos {
  display: flex; flex-direction: column; gap: 30px;
  padding: 30px 20px; max-width: 1000px; margin: 0 auto;
}
.video-container {
  width: 100%; background-color: #ffffff; border-radius: 12px;
  overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0);
}
.video-container video {
  width: 100%; height: auto; max-height: 500px; object-fit: contain; display: block;
}
.industrial-imgs img { width: 100%; height: auto; display: block; margin: 3rem 0; }

/* Mould Images */
.mould-images-section { padding: 30px 20px; display: flex; justify-content: center; margin-top: 3rem; }
.mould-images {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; width: 100%; max-width: 900px;
}
.mould-images img {
  width: 90%; max-width: 900px; height: auto; border-radius: 12px; object-fit: contain;
}
.mould-item { text-align: center; width: 100%; max-width: 900px; }
.mould-caption {
  font-size: 1.1rem; font-family: 'Space Grotesk', sans-serif;
  color: #333; margin-top: 0.5rem; margin-bottom: 3rem; text-align: center;
}

/* T20 Description */
.t20-description-video-wrapper {
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; margin-top: 2rem;
}
.t20-description-text {
  flex: 1 1 55%; font-size: 1.05rem; font-family: 'Aldrich', sans-serif; text-align: justify;
}
.t20-description-video { flex: 1 1 35%; }
.t20-description-video video { width: 100%; border-radius: 12px; background-color: #000; }

/* Hamburger Icon - CENTERED */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 25px;
  z-index: 1001;
}
.hamburger-icon span {
  height: 3px; width: 100%; background: white; border-radius: 2px; transition: 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute; top: 100%; right: 15px;
  background-color: rgba(0, 0, 0, 0.95); border-radius: 10px;
  padding: 1rem; display: none; z-index: 1000;
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { margin: 10px 0; }
.mobile-menu a {
  color: white; text-decoration: none; font-size: 1rem;
  font-family: 'Aldrich', sans-serif;
}
.mobile-menu a:hover { text-decoration: underline; }

/* Support/Download Form */
#support .contact-form {
  margin-top: 20px; padding: 20px; border: 2px solid #ccc;
  border-radius: 12px; background: #f9f9f9; color: #000;
}
#support label { display: block; margin-bottom: 8px; font-weight: bold; }
#support input[type="text"], #support input[type="email"] {
  width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 8px;
}
#support button {
  background-color: #333; color: #fff; padding: 10px 20px;
  border: none; border-radius: 6px; cursor: pointer;
}
#support button:hover { background-color: #555; }
.checkbox-group { display: flex; gap: 20px; margin-top: 10px; margin-left: 25px; }
.checkbox-inline {
  display: flex; align-items: center; gap: 8px; font-family: 'Aldrich', sans-serif; font-size: 1rem;
}

/* Modal & Specs Blur */
.blurred-specs { filter: blur(6px); pointer-events: none; user-select: none; }
.blurred-specs.active { filter: none; pointer-events: auto; user-select: auto; }
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75); display: flex; justify-content: center;
  align-items: center; z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; padding: 2rem; border-radius: 10px;
  max-width: 450px; width: 90%; color: #000; font-family: 'Space Grotesk', sans-serif;
}
.modal h2 { text-align: center; margin-bottom: 1.5rem; font-family: 'Michroma', sans-serif; }
.modal .form-row { margin-bottom: 1rem; }
.modal label { display: block; font-weight: bold; margin-bottom: 0.5rem; }
.modal input { width: 100%; padding: 0.6rem; border: 1px solid #ccc; border-radius: 5px; }
.modal button {
  display: block; margin: 1.5rem auto 0 auto; padding: 0.8rem 1.5rem;
  background-color: #333; color: #fff; border: none; border-radius: 5px; cursor: pointer;
}
.blur-container { position: relative; }
.inline-form {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9); padding: 1.5rem; border-radius: 10px;
  z-index: 2; text-align: left; width: 90%; max-width: 400px;
  font-family: 'Aldrich', sans-serif;
}
.inline-form label { display: block; margin-bottom: 0.5rem; font-weight: bold; }
.inline-form h3 { margin-bottom: 1rem; font-family: 'Aldrich', sans-serif; color: #000; }
.inline-form input {
  width: 100%; padding: 0.6rem; border: 1px solid #ccc; border-radius: 5px; margin-bottom: 0.8rem;
}
.inline-form button {
  background-color: #333; color: #fff; padding: 0.8rem 1.5rem;
  border: none; border-radius: 5px; cursor: pointer; font-family: 'Aldrich', sans-serif;
}

/* Downloads Tab */
.download-list {
  display: flex; flex-direction: column; gap: 15px; margin-top: 20px; max-width: 800px;
}
.download-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px; background-color: #f9f9f9; border: 1px solid #e0e0e0;
  border-radius: 8px; text-decoration: none; color: #333; transition: all 0.3s ease;
}
.download-item:hover {
  background-color: #f0f0f0; border-color: #333;
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.file-name { font-family: 'Michroma', sans-serif; font-size: 1rem; color: #000; }
.file-meta { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: #666; }
.download-action {
  background-color: #333; color: white; padding: 8px 16px; border-radius: 50px;
  font-family: 'Aldrich', sans-serif; font-size: 0.85rem; white-space: nowrap;
}
.download-item:hover .download-action { background-color: #000; }

/* Responsive Adjustments (Mobile/Tablet) */
@media (max-width: 1200px) {
  .leaders-grid { gap: 1.5rem; }
  .tracker-arrow.prev { left: -30px; }
  .tracker-arrow.next { right: -30px; }
}

@media (max-width: 768px) {
  .landing-container { flex-direction: column; height: 100vh; }
  .brochure { width: 100%; height: 33.33vh; flex: none; padding: 1rem; text-align: center; }
  .brochure h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .explore-btn { font-size: 0.9rem; padding: 6px 12px; }
  .main-header h1 { font-size: 1.2rem; }
  .main-header .logo { height: 45px; margin-right: 10px; }
  .project-block, .project-block.reverse {
    flex-direction: column; width: 95%; margin: 2rem auto; gap: 1.5rem; padding: 1rem;
  }
  .project-image img { max-width: 100%; }
  .project-content h2 { text-align: center; font-size: 1.4rem; }
  .project-content p { text-align: justify; font-size: 1rem; }
  .project-button { display: block; margin: 0 auto; text-align: center; }
  .product-container { flex-direction: column; text-align: center; }
  .product-details h2 { font-size: 1.8rem; }
  .t20-description-video-wrapper { flex-direction: column; }
  .footer-container { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-direction: column; gap: 10px; }
  .intro-section { flex-direction: column; }
  .intro-image img, .intro-video-la video { margin-left: 0; width: 100%; }
  .specs-table { font-size: 0.9rem; }
  .key-features { flex-direction: column; }
  .feature-box { text-align: center; justify-content: center; }
  .slideshow-container-tracker { height: 300px; }
  .tracker-arrow { font-size: 1.2rem; width: 35px; height: 35px; }
  .tracker-arrow.prev { left: -10px; }
  .tracker-arrow.next { right: -10px; }
  .overlay-tile-container { padding: 40px 15px; min-height: auto; }
  .tile-overlay { height: 180px; }
  .download-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .download-action { width: 100%; text-align: center; }
  .dual-tile-section { gap: 3rem; }
}

@media (max-width: 480px) {
  .brochure h1 { font-size: 1.2rem; }
  .explore-btn { font-size: 0.8rem; }
  .main-header h1 { font-size: 1rem; }
  .overlay-heading { font-size: 1.2rem; top: 70%; padding: 1rem; }
  .tile, .tile-commercial, .tile-overlay { width: 100% !important; max-width: 100%; }
  .leaders-grid { flex-direction: column; }
  .leader-tile { width: 100%; max-width: 280px; }
  .industrial-videos { padding: 20px 10px; }
  .video-container video { max-height: 300px; }
}

.about-section {
  background-color: #ffffff; /* Pure white background */
  padding: 40px 50px; /* Generous top/bottom spacing */
  color: #000;
}

.about-section .container {
  max-width: 1200px; /* Matches the width in the image */
  margin: 0 auto;
  padding: 0 15px;
}

.about-section p {
  font-family: 'Space Grotesk', sans-serif; /* Clean, modern font */
  font-size: 1.1rem; /* Slightly larger for readability */
  line-height: 1.2; /* Open line spacing */
  color: #222222; /* Dark gray/black text */
  margin-bottom: 15px; /* Space between paragraphs */
  margin-top: 5px;
  text-align: justify; /* Left alignment like the image */
  font-weight: 300;
}

.about-section strong {
  font-weight: 700;
  color: #000000; /* Pure black for bold text */
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }
  .about-section p {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 15px;
    text-align: left; /* Keep left alignment on mobile for consistency */
  }
}