/* ========== BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mt-blue: #3c78a3;
  --mt-blue-dark: #28567a;
  --mt-blue-deep: #0e465b;
  --mt-text-dark: #1f2933;
  --white: #ffffff;
  --heading: "Montserrat", system-ui, sans-serif;
  --para: "Roboto", system-ui, sans-serif;
}

body {
  font-family: var(--para);
  color: var(--mt-text-dark);
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* Simple container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
    /* Wider for large screens */
  }
}

/* ========== HEADER & NAVBAR – FINAL DARK VERSION ========== */

.site-header {
  width: 100%;
  background-color: #304674;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.7);
  position: relative;
  z-index: 1000;
}

/* Main navbar layout */
.navbar {
  width: 100%;
  /* full width */
  max-width: 1400px;
  /* Limit width on large screens */
  margin: 0 auto;
  /* Center the navbar */
  padding: 12px 16px;
  /* Reduced side padding for mobile */
  /* right-side comfortable, left tighter */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1600px) {
  .navbar {
    max-width: 1600px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between logo and text */
  padding-left: 0px;
  /* 👈 move right */
}

.logo span {
  color: #f9fafb;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 10px;
  /* 👈 gives rounded corners */
  background-color: #fff;
  /* optional - adds clean background like footer */
  padding: 4px;
  /* optional - spacing around logo inside the rounded box */
}

@media (max-width: 380px) {
  .logo span {
    font-size: 0.9rem;
    white-space: nowrap;
    /* Prevent awkward wrapping */
  }

  .logo img {
    height: 36px;
    /* Slightly smaller */
  }

  .navbar {
    padding: 12px 10px;
  }
}

@media (max-width: 320px) {
  .logo span {
    display: none;
    /* Hide text on extremely small screens */
  }
}

/* Hamburger (mobile) */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
  /* light bars on dark bg */
}

/* Nav links – mobile (hidden by default) */
/* Nav links – mobile (hidden by default) */
.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #020617;
  display: none;
  flex-direction: column;
  gap: 0;
  /* Removed gap, controlled by padding */
  padding: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
  max-height: 80vh;
  /* Prevent scrolling issues on small landscape phones */
  overflow-y: auto;
  /* Enable scrolling if menu is long */
}

.nav-links.nav-links--open {
  display: flex;
}

/* Links */
.nav-links a,
.nav-links .dropbtn {
  font-family: var(--heading);
  font-size: 1rem;
  /* Larger text for mobile readability */
  color: #e5f0ff;
  text-decoration: none;
  padding: 14px 20px;
  /* Larger touch target */
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  /* Reset default button border */
  outline: none;
  /* Remove focus outline */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Separator */
  background: none;
  cursor: pointer;
  width: 100%;
  /* Full width */
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links .dropbtn:hover {
  color: #60a5fa;
  background: rgba(255, 255, 255, 0.05);
}

/* Dropdown base */
.dropdown {
  position: relative;
}

.dropbtn i {
  font-size: 0.7rem;
}

/* Mobile Dropdown Fix */
.dropdown-content {
  position: static;
  display: block;
  /* Always show dropdown items on mobile */
  flex-direction: column;
  padding-left: 0;
  background: rgba(0, 0, 0, 0.2);
  /* Slightly darker background for nested items */
}

.dropdown-content a {
  font-family: var(--para);
  font-size: 0.95rem;
  color: #cbd5e1;
  padding: 12px 20px 12px 35px;
  /* Indented */
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-content a:hover {
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.05);
}

.dropbtn {
  width: 100%;
  justify-content: space-between;
}

/* Hide the main 'Products' link if it essentially acts as a label, or style it appropriately */
.dropdown .dropbtn {
  font-weight: 600;
  color: #ffffff;
}

/* ========== DESKTOP NAVBAR ========== */
/* ========== DESKTOP NAVBAR ========== */
@media (min-width: 900px) {

  /* Increased breakpoint for better transition */
  .navbar {
    padding: 12px 40px;
  }

  .hamburger {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    border-top: none;
    box-shadow: none;
    background: transparent;
    max-height: none;
    /* Reset max-height */
    overflow-y: visible;
  }

  .nav-links a,
  .nav-links .dropbtn {
    font-size: 1rem;
    padding: 0;
    border: none;
    /* Ensure no border on desktop */
    outline: none;
    width: auto;
    background: none;
  }

  .nav-links a:hover,
  .nav-links .dropbtn:hover {
    background: none;
    color: #60a5fa;
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #020617;
    border-radius: 6px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
    padding: 8px 0;
    display: none;
    /* Hidden by default on desktop */
    z-index: 20;
    border: 1px solid rgba(30, 64, 175, 0.8);
  }

  .dropdown-content a {
    padding: 10px 16px;
    white-space: nowrap;
    font-size: 0.9rem;
    border-bottom: none;
    /* No separators on desktop dropdown */
  }

  .dropdown-content a:hover {
    background: rgba(37, 99, 235, 0.15);
    color: #bfdbfe;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    /* Hover to show on desktop */
  }

  .dropbtn {
    width: auto;
    justify-content: flex-start;
  }
}

/* ========== HERO (SLIDER) ========== */

/* ========== HERO (SLIDER) ========== */

.home-hero {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 45vw, 650px);
  /* balanced fluid height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* slides wrapper is a flex strip */
.home-hero__slides {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s ease-in-out;
}

/* each slide takes full viewport width */
.home-hero__slide {
  flex: 0 0 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0f172a;
  /* deep navy to match your site theme */
}

.home-hero__slide.is-active {
  opacity: 1;
}

/* dark overlay so text/images pop */
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  /* made lighter */
  z-index: 0;
}

/* content */
.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 60px 16px 80px;
}

.home-hero__subtitle {
  font-family: var(--para);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 28px;
  color: #f5f6f7;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.home-hero__detail {
  position: relative;
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  /* translucent black strip */
  padding: 16px 24px;
  border-radius: 12px;
  color: #f9fafb;
  line-height: 1.8;
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 40px;
}

/* hero button */
.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  /* Reduced slightly */
  border-radius: 4px;
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  background-color: var(--mt-blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.2s ease;
}

.home-hero__btn:hover {
  background-color: var(--mt-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* === HERO GLASS PANEL (GLASSMORPHISM) === */

.home-hero__panel {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  padding: 24px 28px;
  max-width: 900px;
  margin: 0 auto 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-hero__panel h1,
.home-hero__panel .home-hero__subtitle {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.home-hero h1 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

/* Responsive tweaks */
@media (max-width: 320px) {
  .home-hero {
    min-height: auto;
    height: auto;
    align-items: flex-start;
    padding-top: 40px;
  }

  /* Ensure content padding drives height safely */
  .home-hero__content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media (min-width: 321px) and (max-width: 399px) {
  .home-hero {
    min-height: auto !important;
    height: auto !important;
    align-items: flex-start !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .home-hero__content {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }
}

@media (min-width: 399px) and (max-width: 470px) {
  .home-hero {
    min-height: auto !important;
    height: auto !important;
    align-items: flex-start !important;
    padding-top: 70px !important;
    padding-bottom: 80px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-hero__content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .home-hero__slide {
    background-size: cover !important;
    background-position: center center !important;
  }
}

@media (min-width: 471px) and (max-width: 558px) {
  .home-hero {
    min-height: auto !important;
    height: auto !important;
    align-items: center !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .home-hero__content {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* ========== WHY CHOOSE SECTION (TIMELINE / RIBBON) ========== */

.why-ribbon {
  background-image: url("img/BANNER12.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 90px;
  color: #e5f0ff;
  position: relative;
  overflow: hidden;
  /* border-radius: 30px; */
}

.why-ribbon .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.why-ribbon__header {
  text-align: center;
  display: block;
  /* make it block level */
  margin: 0 auto 50px;
  /* center horizontally */
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.why-ribbon__header h2 {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-ribbon__header p {
  font-family: var(--para);
  font-size: 0.98rem;
  color: #dbeafe;
}

/* vertical spine */
.why-ribbon__timeline {
  position: relative;
  padding: 10px 0 10px;
  margin: 0 auto;
}

.why-ribbon__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #93c5fd, #38bdf8, #0ea5e9);
  opacity: 0.7;
  border-radius: 999px;
}

/* each item */
.why-item {
  position: relative;
  display: flex;
  align-items: center;
  margin: 26px 0;
}

/* alternate left/right cards */
.why-item:nth-child(odd) .why-item__card {
  margin-right: auto;
  margin-left: 0;
  transform-origin: right center;
}

.why-item:nth-child(even) .why-item__card {
  margin-left: auto;
  margin-right: 0;
  transform-origin: left center;
}

.why-item__icon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #0f172a;
  border: 3px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}

.why-item__icon i {
  font-size: 1.4rem;
  color: #e0f2fe;
}

/* card */
.why-item__card {
  width: 46%;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-family: var(--para);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
}

.why-item__card h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #f9fafb;
}

.why-item__card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d1e3ff;
}

/* hover effect */
.why-item__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  border-color: #38bdf8;
  background: rgba(15, 23, 42, 0.95);
}

/* make sure cards don't collide with center */
.why-item:nth-child(odd) .why-item__card {
  margin-right: calc(50% + 40px);
}

.why-item:nth-child(even) .why-item__card {
  margin-left: calc(50% + 40px);
}

/* Responsive */
@media (max-width: 900px) {
  .why-item__card {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .why-item__card {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .why-ribbon {
    padding: 60px 0 70px;
  }

  .why-ribbon__timeline::before {
    left: 32px;
  }

  .why-item__icon {
    left: 32px;
    transform: translate(-50%, 0);
    width: 48px;
    height: 48px;
  }

  .why-item__card {
    width: auto;
    flex: 1;
    /* Allow it to fill remaining space */
    margin: 0 0 0 72px !important;
    /* Adjusted for icon position */
  }

  .why-item {
    margin: 22px 0;
  }
}

/* ===== WHY INDUCTION – PRO SECTION ===== */

.why-induction-pro {
  /* Change from light gray to blue gradient */
  background: #397fef;
  padding: 70px 0 80px;
  color: #e5e7eb;
  /* Change text color to light for contrast */
}

.why-induction-pro .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 480px) {
  .why-induction-pro .container {
    padding: 0 12px;
  }
}

.why-induction-pro__inner {
  position: relative;
  background: rgba(15, 23, 42, 0.75);
  /* Darken slightly for better contrast */
  border-radius: 22px;
  padding: 32px 32px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 36px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  /* Add subtle border */
}

/* Remove or lighten the gradient overlay */
.why-induction-pro__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(59, 130, 246, 0.08),
      rgba(13, 148, 136, 0.08));
  opacity: 0.6;
  pointer-events: none;
}

/* Update text colors for better contrast on dark background */
.why-induction-pro__intro h2 {
  font-family: var(--heading);
  font-size: 2rem;
  color: #ffffff;
  /* Change to white */
  margin-bottom: 12px;
  position: relative;
}

.why-induction-pro__intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: #38bdf8;
  /* Brighter blue for accent */
}

.why-induction-pro__lead {
  font-family: var(--para);
  font-size: 1rem;
  color: #f3f4f6;
  /* Light gray */
  margin-bottom: 10px;
}

.why-induction-pro__text {
  font-family: var(--para);
  font-size: 0.95rem;
  color: #e5e7eb;
  /* Light gray */
  line-height: 1.7;
}

/* Update reason cards for dark background */
.reason {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 14px 18px 14px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.85);
  /* Darker background */
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reason:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: #38bdf8;
  /* Bright blue on hover */
}

.reason__number {
  position: absolute;
  right: 12px;
  bottom: -8px;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--heading);
  color: rgba(255, 255, 255, 0.1);
  /* Lighter watermark */
  pointer-events: none;
}

.reason__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  /* Gradient icon */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

.reason__content h3 {
  font-family: var(--heading);
  font-size: 1rem;
  margin-bottom: 4px;
  color: #f9fafb;
  /* White */
}

.reason__content p {
  font-family: var(--para);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
  /* Light gray */
}

/* Responsive */
@media (max-width: 900px) {
  .why-induction-pro__inner {
    flex-direction: column;
    padding: 26px 22px 24px;
  }

  .why-induction-pro__intro {
    flex: 1 0 auto;
  }
}

@media (max-width: 600px) {
  .why-induction-pro {
    padding: 55px 0 60px;
  }

  .why-induction-pro__inner {
    padding: 22px 18px;
  }

  .why-induction-pro__intro h2 {
    font-size: 1.7rem;
  }

  .reason {
    padding-right: 16px;
  }

  .reason__number {
    font-size: 2.6rem;
    right: 10px;
  }
}

/* ========== OUR EXPERTISE – GRID STYLE ========== */

.expertise-grid {
  background: #f5f7fa;
  padding: 70px 0 90px;
}

.expertise-grid .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

.expertise-grid__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.expertise-grid__header h2 {
  font-family: var(--heading);
  font-size: 2.1rem;
  color: var(--mt-blue-dark);
  margin-bottom: 10px;
}

.expertise-grid__header p {
  font-family: var(--para);
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.7;
}

/* grid layout */
.expertise-grid__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* individual card */
.exp-item {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 22px 22px 22px;
  border-left: 5px solid var(--mt-blue);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* subtle hover */
.exp-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
  border-color: var(--mt-blue-dark);
}

/* big soft number watermark */
.exp-item__number {
  position: absolute;
  right: 14px;
  top: 10px;
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.22);
  pointer-events: none;
}

/* icon styling */
.exp-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.exp-item__icon i {
  font-size: 1.2rem;
  color: var(--mt-blue-dark);
}

/* text */
.exp-item h3 {
  font-family: var(--heading);
  font-size: 1.05rem;
  color: #111827;
}

.exp-item p {
  font-family: var(--para);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 900px) {
  .expertise-grid__items {
    grid-template-columns: 1fr;
  }

  .exp-item {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    padding: 55px 0 70px;
  }

  .expertise-grid__header h2 {
    font-size: 1.8rem;
  }
}

/* ===== NEW PRODUCTS SHOWCASE ===== */

.products-modern {
  background: #f5f7fb;
  padding: 70px 0 80px;
}

.products-modern__header {
  text-align: center;
  margin-bottom: 40px;
}

.products-modern__title {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--mt-text-dark);
  margin-bottom: 8px;
}

.products-modern__subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--para);
  font-size: 0.98rem;
  color: #4b5563;
}

.products-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 28px;
}

@media (max-width: 360px) {
  .products-modern__title {
    font-size: 1.8rem;
  }
}

/* LEFT big feature cards */
.products-feature {
  position: relative;
  min-height: 340px;
}

.product-feature {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 22px;
  padding: 24px 26px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-feature.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-feature__image {
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
}

.product-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.product-feature.is-active .product-feature__image img {
  transform: scale(1.06);
}

.product-feature__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-feature__tag {
  align-self: flex-start;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--heading);
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
}

.product-feature__content h3 {
  font-family: var(--heading);
  font-size: 1.45rem;
  color: #111827;
}

.product-feature__content p {
  font-family: var(--para);
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.product-feature__points {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-family: var(--para);
  font-size: 0.9rem;
  color: #374151;
}

.product-feature__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.product-feature__points li::before {
  content: "•";
  color: #2563eb;
  font-size: 1.1rem;
}

.product-feature__btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-family: var(--heading);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

.product-feature__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.6);
  filter: brightness(1.03);
}

/* RIGHT mini selector list */

.products-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-mini {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease,
    background 0.2s ease;
}

.product-mini__thumb {
  border-radius: 12px;
  overflow: hidden;
}

.product-mini__thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

@media (max-width: 400px) {
  .product-mini {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }

  .product-mini__thumb img {
    height: 60px;
  }
}

.product-mini__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.product-mini__label {
  font-family: var(--heading);
  font-size: 0.74rem;
  color: #6b7280;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-mini__info h4 {
  font-family: var(--heading);
  font-size: 0.98rem;
  color: #111827;
}

.product-mini__info p {
  font-family: var(--para);
  font-size: 0.82rem;
  color: #6b7280;
}

.product-mini.is-active {
  border-color: #2563eb;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.08),
      rgba(56, 189, 248, 0.08));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 993px) {
  .products-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Make the container auto height */
  .products-feature {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  /* Only show the active one, hide others to prevent taking up space/gap */
  .product-feature {
    position: relative;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    inset: auto;
    /* reset absolute positioning */
  }

  .product-feature.is-active {
    display: grid;
    /* or flex, depending on inner layout */
  }
}

@media (max-width: 720px) {
  .product-feature {
    grid-template-columns: 1fr;
  }

  .product-feature__image {
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .product-feature {
    padding: 20px;
  }

  .product-feature__content h3 {
    font-size: 1.25rem;
  }
}

/* ===== CALLBACK / CTA SECTION ===== */

.callback-cta {
  background-color: #98bad5;
  padding: 70px 0 40px;
  color: #ffffff;
  position: relative;
}

.callback-cta .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

/* main layout */
.callback-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 26px;
}

/* left side text */
.callback-cta__content {
  max-width: 540px;
}

.callback-cta__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-family: var(--heading);
  color: white;
  margin-bottom: 10px;
}

.callback-cta__content h2 {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.callback-cta__text {
  font-family: var(--para);
  font-size: 0.98rem;
  color: white;
  margin-bottom: 14px;
}

.callback-cta__points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-family: var(--para);
  font-size: 0.92rem;
  color: white;
}

.callback-cta__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.callback-cta__points i {
  color: #a5b4fc;
  font-size: 0.9rem;
}

/* secondary button */
.callback-cta__secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgb(254, 254, 254);
  color: white;
  font-family: var(--heading);
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.callback-cta__secondary-btn:hover {
  background: rgba(15, 23, 42, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* right side – glass card */
.callback-cta__card {
  position: relative;
  border-radius: 22px;
  padding: 20px 22px 20px;
  background: #304674;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.8);
}

.callback-cta__card h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.callback-cta__card-text {
  font-family: var(--para);
  font-size: 0.86rem;
  color: #e5e7eb;
  margin-bottom: 14px;
}

/* form layout */
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callback-form__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callback-form__row--two {
  flex-direction: row;
  gap: 10px;
}

.callback-form__row--two .field {
  flex: 1;
}

.field label {
  display: block;
  font-family: var(--para);
  font-size: 0.78rem;
  color: #cbd5f5;
  margin-bottom: 3px;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 7px 9px;
  font-family: var(--para);
  font-size: 0.85rem;
  outline: none;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}

.field input:focus,
.field textarea:focus {
  border-color: #38bdf8;
}

/* primary button */
.callback-cta__primary-btn {
  margin-top: 4px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  background-color: #98bad5;
  color: #ffffff;
  font-family: var(--heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  /* box-shadow: 0 15px 30px rgba(37, 99, 235, 0.55); */
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

.callback-cta__primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.7);
  filter: brightness(1.05);
}

.callback-cta__small-note {
  font-family: var(--para);
  font-size: 0.78rem;
  color: #cbd5f5;
  margin-top: 6px;
}

/* bottom strip */
.callback-cta__strip {
  background-color: #304674;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--para);
  font-size: 0.86rem;
  color: #e5e7eb;
}

.strip-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.strip-label {
  font-weight: 600;
}

.strip-address {
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* phone pill */
.strip-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #022c22;
  text-decoration: none;
  font-family: var(--heading);
  font-size: 0.86rem;
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.strip-phone i {
  font-size: 0.9rem;
}

.strip-arrow {
  font-size: 1rem;
}

.strip-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .callback-cta__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .callback-cta__card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .callback-cta {
    padding: 55px 0 32px;
  }

  .callback-cta__strip {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }

  .strip-phone {
    align-self: stretch;
    justify-content: center;
    width: 100%;
  }

  .callback-form__row--two {
    flex-direction: column;
  }
}

/* ===== WHY USE INDUCTION HEATING (FINAL GLASS VERSION) ===== */

.why-induction {
  /* Blue gradient background — same as "Why Choose" */
  background: radial-gradient(circle at top left,
      #2563eb 0%,
      #1e3a8a 50%,
      #0b3553 100%);
  padding: 100px 0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.why-induction .container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Main layout box */
.why-induction__box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 50px 60px;
  position: relative;
  backdrop-filter: blur(10px);
}

/* Text side */
.why-induction__content h2 {
  font-family: var(--heading);
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
}

.why-induction__content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: #38bdf8;
  margin-top: 8px;
}

.why-induction__content p {
  font-family: var(--para);
  font-size: 1rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 15px;
}

/* Cards on right */
.why-induction__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.induction-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.induction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(56, 189, 248, 0.4);
}

/* Icon */
.induction-card__icon {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  font-size: 1rem;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.5);
}

/* Texts */
.induction-card h3 {
  font-family: var(--heading);
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 3px;
}

.induction-card p {
  font-family: var(--para);
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Number watermark */
.induction-card__number {
  position: absolute;
  bottom: 8px;
  right: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 950px) {
  .why-induction__box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .why-induction__box {
    padding: 30px 20px;
  }

  .induction-card {
    padding: 16px 18px;
  }
}

@media (max-width: 600px) {
  .why-induction {
    padding: 70px 0;
  }

  .why-induction__content h2 {
    font-size: 1.6rem;
  }
}

/* ===== FOOTER ===== */

.site-footer {
  background-color: #304674;
  color: #e5f0ff;
  font-family: var(--para, system-ui, sans-serif);
  margin-top: 40px;
}

/* Top area */
.footer-top {
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1.4fr) minmax(260px,
      1.2fr);
  gap: 40px;
}

/* Brand column - UPDATED */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand img {
  width: 70px;
  /* Increased from 64px */
  height: 70px;
  /* Increased from 64px */
  border-radius: 12px;
  object-fit: contain;
  /* Changed from 'cover' to 'contain' */
  background: #ffffff;
  /* Add white background */
  padding: 4px;
  /* Add padding inside */
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-brand-name h3 {
  font-family: var(--heading, system-ui);
  font-size: 1.2rem;
  margin: 0;
  color: #ffffff;
  line-height: 1.3;
  /* Add line height */
}

.footer-brand-name p {
  margin: 2px 0 0 0;
  /* Adjust margin */
  font-size: 0.85rem;
  color: #93c5fd;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 330px;
  margin-bottom: 18px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  background: rgba(15, 23, 42, 0.65);
}

.footer-social a:hover {
  border-color: #38bdf8;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.6);
}

/* Links column */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 26px;
}

.footer-links-block h4,
.footer-location h4 {
  font-family: var(--heading, system-ui);
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-block li {
  margin-bottom: 6px;
}

.footer-links-block a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #dbeafe;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-flex;
}

.footer-links-block a:hover {
  color: #38bdf8;
  transform: translateX(2px);
}

/* Location column */
.footer-location {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e5f0ff;
}

.footer-map-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
  background: rgba(15, 23, 42, 0.85);
}

.footer-map-card iframe {
  display: block;
  width: 100%;
}

/* Contact buttons */
.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  text-decoration: none;
  font-family: var(--heading, system-ui);
  transition: all 0.2s ease;
}

.footer-btn i {
  font-size: 0.9rem;
}

/* Filled + outline variants */
.footer-btn-light {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.6);
  border: none;
}

.footer-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.8);
}

.footer-btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.9);
  color: #e5e7eb;
  background: transparent;
}

.footer-btn-outline:hover {
  border-color: #38bdf8;
  color: #38bdf8;
}

/* Bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(3, 7, 18, 0.7);
}

.footer-bottom-row {
  padding: 12px 16px;
  font-size: 0.8rem;
  text-align: center;
  color: #cbd5f5;
}

.footer-bottom-row strong {
  color: #ffffff;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1.4fr);
    grid-template-rows: auto auto;
  }

  .footer-location {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding: 40px 0 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-row {
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-contact-actions {
    flex-direction: column;
  }

  .footer-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .footer-brand img {
    width: 60px;
    height: 60px;
  }

  .footer-brand-name h3 {
    font-size: 1.1rem;
  }
}

/* ===== INDUSTRIES – MODERN LAYOUT WITH 3 CARDS PER ROW ===== */

.industries-alt {
  background: #0f172a;
  /* dark navy background */
  padding: 70px 0 80px;
  color: #e5e7eb;
  font-family: var(--para);
}

.industries-alt__title {
  font-family: var(--heading);
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.industries-alt__subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: white;
  max-width: 620px;
  margin: 0 auto 50px;
}

/* base: 1 column on mobile */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* tablet: 2 columns */
@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* desktop: 3 columns */
@media (min-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* each card */
.industry-card {
  display: flex;
  flex-direction: column;
  background: rgba(30, 41, 59, 0.95);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* remove any max-width that was forcing 2 columns */
.industry-card {
  max-width: none;
  margin: 0;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* image section */
.industry-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
  transform: scale(1.08);
}

/* content section */
.industry-info {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.6);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.industry-info h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.industry-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.industry-link {
  align-self: flex-start;
  margin-top: 16px;
  font-family: var(--heading);
  font-size: 0.85rem;
  color: #38bdf8;
  text-decoration: none;
  border: 1px solid #38bdf8;
  padding: 7px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.industry-link:hover {
  background: #38bdf8;
  color: #0f172a;
}

/* responsive tweak for smaller devices */
@media (max-width: 992px) {
  .industry-img {
    height: 220px;
  }

  .industry-info {
    padding: 20px 22px;
  }
}

/* ==== REMOVE WHITE STRIP BETWEEN CALLBACK AND FOOTER ==== */

.callback-banner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.footer,
footer,
.site-footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* === LIGHTER BLUE THEME OVERRIDES === */
:root {
  /* lighter, fresher blues */
  --mt-blue: #4f9dfc;
  /* primary */
  --mt-blue-dark: #276fd9;
  /* hover / accents */
  --mt-blue-deep: #1b3b63;
  /* darkest */
  --mt-text-dark: #0f172a;
  /* keep text readable */
}

/* HEADER a bit lighter */
.site-header {
  background-color: #304674;
}

/* HERO fallback bg (behind images) */
.home-hero__slide {
  background-color: #1b3b63;
}

/* "Why Use Induction?" (why-induction-pro) – lighter gradient */
.why-induction-pro {
  background-color: #98bad5;
}

/* "Industries We Serve" dark section -> softer navy */
.industries-alt {
  background: #304674;
}

/* CALLBACK section – brighter blue-green */
.callback-cta {
  background-color: #98bad5;
}

/* Glass "Why Choose Malhotra" ribbon BG (behind banner image overlay) */
.why-induction {
  background: radial-gradient(circle at top left,
      #4f9dfc 0%,
      #1f4fb3 50%,
      #12365f 100%);
}

/* FOOTER – not pitch black, more bluish */
.site-footer {
  background-color: #304674;
}



/* ===== PRODUCT PAGE HEADINGS ALIGNMENT ===== */
.product-section-block h2,
.product-section-block h3 {
  text-align: center !important;
}

/* ========================================= */
/* ULTRA WIDE SCREENS (2560px+) - Scaling    */
/* ========================================= */
@media (min-width: 1920px) {
  html {
    font-size: 18px;
    /* Slight scale up for base text */
  }

  .container,
  .why-ribbon .container,
  .why-induction-pro .container,
  .expertise-grid .container,
  .callback-cta .container,
  .why-induction .container {
    max-width: 1600px;
  }

  .home-hero__content,
  .products-modern__subtitle,
  .expertise-grid__header {
    max-width: 1200px;
  }
}

@media (min-width: 2500px) {
  html {
    font-size: 20px;
    /* Scale up even more for 4k/5k */
  }

  .container,
  .why-ribbon .container,
  .why-induction-pro .container,
  .expertise-grid .container,
  .callback-cta .container,
  .why-induction .container {
    max-width: 1800px;
  }

  .home-hero__content,
  .products-modern__subtitle,
  .expertise-grid__header {
    max-width: 1400px;
  }
}