* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a192f; /* Deep Brand Navy */
  --secondary-color: #ff6a00; /* Energetic Accent Orange */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --gray-border: #e0e0e0;
  --font-primary: "Montserrat", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --transition-speed: 0.3s;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (Dark Navy Theme with White Links)
   ========================================================================== */
/* Top Utility Bar */
.top-header {
  background-color: #06101e;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-left span {
  margin-right: 20px;
}

.top-left i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.top-right a {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.top-right a:hover {
  color: var(--secondary-color);
}

/* Main Navigation Bar */
header {
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-container {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 45px;
  width: auto;
  display: block;
  border: 2px solid #ffffff;
  border-radius: 4px;
  padding: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links > li {
  position: relative;
  padding: 10px 0;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.75rem;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Call To Action Nav Button */
.nav-btn {
  background-color: var(--secondary-color);
  color: var(--text-light) !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(255, 106, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );

  transform: skewX(-25deg);

  animation: quoteShimmer 3s infinite;
}

@keyframes quoteShimmer {
  0% {
    left: -120%;
  }

  60% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.nav-btn:hover {
  background-color: #e05d00;
  transform: translateY(-1px);
}

/* ==========================================================================
   3. MEGA DROPDOWN MENU (Inventory Categories)
   ========================================================================== */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 650px;
  background-color: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 4px solid var(--secondary-color, #ff6a00);
  max-height: 80vh;
  overflow-y: auto;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.dropdown-category {
  display: flex;
  flex-direction: column;
}

.category-header {
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 1.05rem;
  color: var(--primary-color, #0a192f);
  border-bottom: 2px solid var(--gray-border, #e0e0e0);
  padding-bottom: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.dropdown-item {
  color: #555555 !important;
  font-size: 0.88rem !important;
  padding: 5px 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  line-height: 1.4;
  display: block;
}

.dropdown-item:hover {
  color: var(--secondary-color, #ff6a00) !important;
  padding-left: 5px !important;
}

/* ==========================================================================
   4. HERO & HOME CONTENT BLOCKS
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This keeps the video filling the space without stretching */
  transform: translate(-50%, -50%);
  z-index: -1; /* Keeps the video behind your text */
}

/* Optional: Add a dark overlay so text remains readable */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 40% black overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1; /* Keeps text above the video and overlay */
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    75deg,
    rgba(10, 25, 47, 0.9) 30%,
    rgba(10, 25, 47, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 5%;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 13px 32px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn:hover {
  background-color: #e05d00;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  margin-left: 15px;
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

/* Trust Metric Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--gray-border);
}

.trust-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--gray-border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

/* ==========================================================================
   5. REUSABLE SUBPAGE & GRID LAYOUTS
   ========================================================================== */
.page-banner {
  background:
    linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)),
    url(../images/about-us.png) no-repeat center center/cover;
  padding: 40px 5%;
  text-align: center;
  color: var(--text-light);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  margin: 0 auto;
}

.content-section {
  padding: 70px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.section-title p {
  color: #666666;
  font-size: 1.1rem;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-with-image:nth-of-type(even) {
  direction: rtl;
}

.content-with-image:nth-of-type(even) .section-content {
  direction: ltr;
}

.section-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-content p {
  margin-bottom: 20px;
  color: #444444;
}

.section-content ul {
  padding-left: 20px;
  list-style-type: square;
  margin-bottom: 20px;
}

.section-content li {
  margin-bottom: 8px;
  font-weight: 500;
}

.section-image img {
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
  justify-content: center;
  gap: 30px;
}

.container-card {
  background-color: #ffffff;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-speed);
}

.container-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.container-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.container-info {
  padding: 25px;
}

.container-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.container-info p {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.container-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.container-tags span {
  background-color: var(--bg-light);
  border: 1px solid var(--gray-border);
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: 500;
  color: #555555;
}

.card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

/* Add this targeting your button elements */
.card-buttons button,
.card-buttons a {
  white-space: nowrap; /* Keeps text on a single line */
  overflow: hidden; /* Optional: hides overflow if container is too small */
  text-overflow: ellipsis; /* Optional: adds '...' if text exceeds width */
}

.card-buttons a {
  text-align: center;
  padding: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
}

.card-buttons a:first-child {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 1px solid var(--gray-border);
}

.card-buttons a:first-child:hover {
  background-color: var(--gray-border);
}

.card-buttons a:last-child {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.card-buttons a:last-child:hover {
  background-color: var(--secondary-color);
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--gray-border);
  padding: 40px 30px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-speed);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-card p {
  color: #555555;
  font-size: 0.95rem;
}

/* ==========================================================================
   6. INTERACTIVE FORMS & CONTACT LAYOUTS
   ========================================================================== */
.quote-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 45px;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  background-color: #ffffff;
  outline: none;
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.quote-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 60px 5%;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   7. GLOBAL STANDARDIZED FOOTER
   ========================================================================== */
footer {
  background-color: #06101e;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 5% 20px 5%;
  border-top: 5px solid var(--secondary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* ==========================================================================
   8. MOBILE RESPONSIVE HAMBURGER & BREAKPOINTS
   ========================================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--text-light);
  margin: 4px 0;
  transition: all var(--transition-speed) ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 992px) {
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header {
    padding: 15px 5%;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.25);
    padding: 90px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  #nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links > li {
    width: 100%;
    padding: 5px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown:hover .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-top: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    width: 100%;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-left: 2px solid var(--secondary-color);
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .category-header {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    border: none;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 5px 0 !important;
  }

  .nav-btn {
    display: none;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-with-image:nth-of-type(even) {
    direction: ltr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .testimonials-preview {
    background: url("../images/testimonials.jfif") center center/cover no-repeat;
    position: relative;
    color: #fff;
    padding: 80px 20px;
  }

  .testimonials-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.75);
  }

  .testimonials-preview .about-content {
    position: relative;
    z-index: 1;
  }

  .testimonials-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.75);
  }

  .testimonials-preview .about-content {
    position: relative;
    z-index: 1;
  }

  .about-preview {
    flex-direction: column;
    gap: 30px;
    padding: 50px 5%;
  }

  .about-preview .about-content,
  .about-preview .about-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-preview .about-image img {
    height: 280px;
  }

  .about-preview .about-content h2 {
    font-size: 2rem;
  }

  .spec-tables-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .centered-heading {
    font-size: 1.8rem;
  }

  .slider-wrapper {
    height: 260px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }
}

/* ==========================================================================
   9. ABOUT PREVIEW SECTION
   ========================================================================== */
.about-preview {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}

.about-preview .about-content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview .about-content h2 {
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--primary-color, #0a192f);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-preview .about-content p {
  font-size: 1.05rem;
  color: #444444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-preview .about-image {
  flex: 0 0 50%;
  width: 100%;
}

.about-preview .about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-preview .about-image img:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   10. CONTAINER SPECIFICATIONS LAYOUT
   ========================================================================== */
.container-large {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 5%;
}

.container-small {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.centered-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  color: #0a192f;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.centered-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  text-align: center;
  margin-bottom: 10px;
}

/* .detail-description-section,
.detail-features-section,
.detail-dimensions-section {
  padding: 50px 24px;
  background-color: #ffffff;
}

.detail-features-section {
  background-color: #f8f9fa;
} */

/* ======================================================
   PRODUCT DETAILS TABS
====================================================== */

.product-details-tabs {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 5%;
}

/* Tabs */

.tabs-nav {
  display: flex;

  background: #ffffff;

  border-radius: 10px;

  overflow: hidden;

  border: 1px solid #e5e7eb;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

  margin-bottom: 35px;
}

.tab-button {
  flex: 1;

  padding: 18px;

  border: none;

  background: #ffffff;

  cursor: pointer;

  font-family: var(--font-heading);

  font-size: 1rem;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  color: #666;

  transition: 0.25s;
}

.tab-button:hover {
  background: #f8f9fa;
}

.tab-button.active {
  background: var(--primary-color);

  color: #fff;
}

.tab-panel {
  display: none;

  animation: fadeTab 0.35s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeTab {
  from {
    opacity: 0;

    transform: translateY(12px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.features-wrapper {
  display: flex;
  justify-content: center;
}

.features-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-bullet-list li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features-bullet-list li i {
  color: #ff6a00;
  margin-right: 12px;
  font-size: 1.2rem;
}

/* .spec-tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
} */

.spec-tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.spec-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow-x: auto;
}

@media (max-width: 768px) {
  .detail-dimensions-section {
    padding: 40px 15px;
  }

  .spec-tables-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .spec-card {
    padding: 18px;
  }
}

.spec-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.spec-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: #0a192f;
  text-transform: uppercase;
  border-bottom: 2px solid #ff6a00;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 12px 6px;
  vertical-align: middle;
}

.prop-label {
  font-weight: 600;
  color: #334155;
  width: auto;
  font-size: 0.95rem;
}

.spec-table input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background-color: #f8fafc;
  color: #1e293b;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  text-align: center;
  box-sizing: border-box;
}

/* ==========================================================================
   11. IMAGE GALLERY SLIDER & LIGHTBOX OVERLAY
   ========================================================================== */
.details-gallery-section {
  padding: 40px 0 20px 0;
  background-color: #ffffff;
}

.container-medium {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 5%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: clamp(250px, 50vw, 450px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #f1f5f9;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide img:hover {
  transform: scale(1.02);
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(10, 25, 47, 0.6);
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  z-index: 5;
}

.slide-nav:hover {
  background-color: rgba(255, 106, 0, 0.9);
}

.prev-btn {
  left: 15px;
}
.next-btn {
  right: 15px;
}

.enlarge-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(10, 25, 47, 0.85);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 20px;
  pointer-events: none;
  letter-spacing: 0.5px;
  z-index: 4;
}

.slider-dots {
  text-align: center;
  padding-top: 15px;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  transition:
    background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dot.active,
.dot:hover {
  background-color: #ff6a00;
  transform: scale(1.2);
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 25, 47, 0.95);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  animation: zoomLightbox 0.3s ease-out;
}

@keyframes zoomLightbox {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #ff6a00;
}

#lightboxCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #cbd5e1;
  padding: 15px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.gallery-action-container {
  text-align: center;
  padding: 20px 0 10px 0;
  background-color: #ffffff;
}

.btn-small-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--secondary-color, #ff6a00);
  color: #ffffff !important;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 22px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-small-quote i {
  font-size: 0.8rem;
}

.btn-small-quote:hover {
  background-color: var(--primary-color, #0a192f);
  box-shadow: 0 6px 18px rgba(10, 25, 47, 0.25);
  transform: translateY(-2px);
}

.btn-small-quote:active {
  transform: translateY(0);
}

/* ==========================================================================
   12. WHATSAPP FLOATING WIDGET
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.wa-bubble {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999998;
}

.wa-bubble.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-bubble-header {
  background: #25d366;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 12px 12px 0 0;
}

.wa-bubble-header span {
  cursor: pointer;
  font-size: 18px;
}

.wa-bubble-body {
  padding: 12px;
  font-size: 14px;
  color: #333;
}

.wa-btn {
  display: block;
  margin-top: 10px;
  text-align: center;
  background: #25d366;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   13. ALTERNATIVE SITE HEADER UTILITIES
   ========================================================================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #05133a;
}

.navigation-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navigation-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

/* ===================================
   TESTIMONIALS PAGE
=================================== */

.testimonials-section {
  padding: 80px 5%;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: #ff6a00;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  color: #0a192f;
  margin-bottom: 5px;
}

.testimonial-card span {
  color: #777;
  font-size: 0.9rem;
}

/* =========================
   GLOBAL ACCORDION STYLES
   ========================= */

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.accordion-header:hover {
  background: #eaeaea;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  padding: 0 20px;
}

.accordion-content p {
  padding: 15px 0;
  margin: 0;
}

/* ===================================
   FOOTER PAYMENT METHODS
=================================== */

/* .footer-payments {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 2px solid rgba(255, 255, 255, 0.829);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
} */

/* .footer-payments p {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
} */

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 35px;
  border-top: 1px solid rgba(94, 94, 94, 0.205);
}

.payment-icons img {
  height: 32px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 4px 6px;
  border-radius: 6px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.9;
}

.payment-icons img:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .payment-icons {
    gap: 12px;
  }

  .payment-icons img {
    height: 28px;
  }
}

/* ===================================
   HOMEPAGE CONTAINER RESPONSIVENESS
=================================== */

/* Tablets */
@media (max-width: 992px) {
  .container-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .container-info {
    padding: 20px;
  }

  .container-info p {
    height: auto;
    overflow: visible;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .container-card img {
    aspect-ratio: 16 / 9;
  }

  .container-info {
    padding: 18px;
  }

  .container-info h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .container-info p {
    height: auto;
    overflow: visible;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .container-tags {
    gap: 6px;
  }

  .card-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-buttons a {
    font-size: 0.8rem;
    padding: 12px;
  }
}

/* ===================================
   ABOUT PREVIEW MOBILE FIX
=================================== */

@media (max-width: 768px) {
  .about-preview {
    flex-direction: column;
    gap: 25px;
    padding: 60px 20px;
  }

  .about-image,
  .about-content {
    width: 100%;
    max-width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .about-content {
    text-align: center;
  }

  .about-content .btn {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    display: none !important;
  }
}

html,
body {
  overflow-x: hidden;
}

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-buttons .btn {
    margin: 5px;
  }
}

/* =========================
   FAQ HERO
========================= */
.faq-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 16px;
  font-weight: 600;
  color: #0a192f;
}

/* ICON */
.faq-question .icon {
  color: #ff6a00;
  font-size: 20px;
  transition: 0.3s;
}

/* ANSWER (collapsed) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* HOVER */
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .tabs-nav {
    overflow-x: auto;

    flex-wrap: nowrap;

    scrollbar-width: none;
  }

  .tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-button {
    min-width: 170px;
  }
}

/* ======================================================
   HOME SEO SECTIONS
======================================================*/

.why-us,
.industries,
.worldwide {
  padding: 80px 5%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.industry-item {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.industry-item i {
  display: block;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.worldwide {
  background: #f8f9fb;
  text-align: center;
}

.worldwide-content {
  max-width: 900px;
  margin: auto;
}

.worldwide p {
  margin: 25px 0;
  line-height: 1.8;
}
