/* =====================================================
   AXIS THERMAL ENGINEERING — MAIN STYLESHEET
   Desktop styles unchanged · Mobile fully reworked
   ===================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b2942;
  background: #ffffff;
}

a {
  text-decoration: none;
}

.container {
  width: 86%;
  max-width: 1200px;
  margin: auto;
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 999;
}

/* TOP BAR — desktop */
.top-bar {
  background: #ffffff;
  color: #243c96;
  min-height: 96px;
  padding: 14px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 15px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo img {
  width: 170px;
  height: auto;
  display: block;
}

.azadi-logo img {
  width: 58px;
  height: auto;
  display: block;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #243c96;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.top-contact i {
  color: #243c96;
  font-size: 17px;
}

/* HEADER SOCIAL ICONS */
.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  color: #243c96;
  font-weight: 800;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
}

.header-social a {
  width: 34px;
  height: 34px;
  background: #243c96;
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s ease;
}

.header-social a:hover {
  background: #e53935;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =====================================================
   NAVIGATION — desktop
   ===================================================== */

.main-nav {
  min-height: 76px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #243c96;
  position: sticky;
  top: 0;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.main-nav nav,
.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.main-nav nav a,
.navbar > a,
.dropdown > a {
  color: #ffffff;
  padding: 26px 20px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 900;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── ACTIVE STATE — stronger than hover ── */
.main-nav nav a.active,
.navbar > a.active,
.dropdown > a.active {
  color: #ffffff;
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.18);
  border-bottom: 3px solid #e53935;
}

/* ── HOVER STATE — lighter, doesn't compete with active ── */
.main-nav nav a:hover,
.navbar > a:hover,
.dropdown > a:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.10);
}

/* Caret turns red when parent is active */
.dropdown > a.active .fa-angle-down {
  color: #e53935;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  color: #0b2942 !important;
  padding: 15px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-bottom: 1px solid #eeeeee !important;
  background: #ffffff;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dropdown-menu a:hover {
  background: #243c96 !important;
  color: #ffffff !important;
  padding-left: 26px !important;
}

/* ── ACTIVE SUB-LINK in dropdown (was missing entirely) ── */
.dropdown-menu a.active-sub {
  background: #243c96 !important;
  color: #ffffff !important;
  border-left: 3px solid #e53935 !important;
  padding-left: 17px !important;
}

.dropdown-menu a.active-sub:hover {
  background: #1a2d7a !important;
  color: #ffffff !important;
  padding-left: 23px !important;
}

.dropdown-menu .has-submenu {
  position: relative;
}

.dropdown-menu .has-submenu > a {
  color: #e53935 !important;
  font-weight: 900 !important;
  background: #ffffff;
}

.dropdown-menu .has-submenu > a:hover {
  background: #fff5f5 !important;
  color: #e53935 !important;
  padding-left: 20px !important;
}

.dropdown-menu .has-submenu > a .sub-arrow {
  font-size: 11px;
  margin-left: auto;
  flex-shrink: 0;
  color: #e53935;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  background: #ffffff;
  box-shadow: 6px 12px 35px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: 0.25s ease;
  border-top: 3px solid #e53935;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu a {
  display: block !important;
  color: #0b2942 !important;
  padding: 16px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  background: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s;
  justify-content: flex-start !important;
}

.submenu a:first-child {
  color: #e53935 !important;
}

.submenu a:hover {
  background: #243c96 !important;
  color: #ffffff !important;
  padding-left: 30px !important;
}

.submenu a.active-sub {
  background: #243c96 !important;
  color: #ffffff !important;
  border-left: 3px solid #e53935 !important;
  padding-left: 19px !important;
}

.nav-btn {
  background: #ffffff;
  color: #243c96;
  border-radius: 0;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #e53935;
  color: #ffffff;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  min-height: 720px;
  background:
    linear-gradient(rgba(0,20,35,0.58), rgba(0,20,35,0.58)),
    url("../images/working-1.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero h6 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.12;
  font-weight: 900;
  margin: 0 0 35px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-block;
  background: #243c96;
  color: #ffffff;
  padding: 16px 34px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn.dark {
  background: #10245f;
}

.btn:hover {
  background: #e53935;
  color: #ffffff;
}

/* =====================================================
   SECTIONS — COMMON
   ===================================================== */

.section {
  padding: 90px 0;
}

.about,
.industries {
  background: #f4f4f4;
}

.two-col,
.product-intro,
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.two-col img,
.service-row img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

h2 {
  font-size: 42px;
  color: #061f35;
  margin-top: 0;
  font-weight: 900;
}

h3 {
  font-size: 28px;
  color: #061f35;
  font-weight: 800;
}

p {
  font-size: 17px;
  line-height: 1.8;
}

/* PRODUCTS DARK */
.products-dark {
  background:
    linear-gradient(rgba(0,20,35,0.85), rgba(0,20,35,0.85)),
    url("../images/working-1.jpeg") center center / cover no-repeat;
  color: #ffffff;
}

.products-dark h2,
.products-dark h3,
.products-dark p,
.products-dark h5 {
  color: #ffffff;
}

.product-intro {
  grid-template-columns: 1fr 1fr;
}

.product-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.service-row {
  margin-bottom: 75px;
}

.service-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

/* INDUSTRIES */
.center-title {
  text-align: center;
  margin-bottom: 55px;
}

.center-title h5 {
  color: #243c96;
  font-size: 16px;
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.industry-grid h3 {
  text-align: center;
  font-size: 22px;
  margin: 24px 0 45px;
}

/* CTA */
.cta {
  padding: 60px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background: #ffffff;
}

.cta h2 {
  max-width: 850px;
  margin: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: #061f35;
  color: #ffffff;
  padding: 80px 0 35px;
}

.footer h2,
.footer h3,
.footer p,
.footer a {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 70px;
}

.footer-icons-only {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #e53935;
  color: #000000;
  transform: translateY(-4px);
}

.copyright {
  width: 86%;
  max-width: 1200px;
  margin: 45px auto 0;
  color: #9bb0bf;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

.page-banner {
  min-height: 360px;
  background:
    linear-gradient(rgba(0,20,35,0.55), rgba(0,20,35,0.55)),
    url("../images/industry-rail-making-furnace-4674845.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px;
}

.page-banner h1 {
  font-size: 64px;
  color: #ffffff;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-weight: 900;
}

.page-banner p,
.page-banner a {
  color: #ffffff;
  font-weight: 700;
}

.about-page {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url("../images/working-1.jpeg") center center / cover fixed no-repeat;
}

.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.quote-box h4 {
  color: #061f35;
  font-size: 16px;
  font-weight: 900;
}

.quote-box h2 {
  font-style: italic;
  line-height: 1.45;
}

.center-heading {
  text-align: center;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #0b2942;
}

.tick-list li::before {
  content: "✓";
  color: #e53935;
  font-weight: 900;
  margin-right: 12px;
}

/* CERTIFICATES */
.credentials-section {
  background: #f7f7f7;
  overflow: hidden;
}

.certificate-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px;
}

.certificate-track {
  display: flex;
  gap: 35px;
  width: max-content;
  animation: certificateSlide 24s linear infinite;
}

.certificate-card {
  width: 320px;
  height: 190px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.14);
  border-radius: 6px;
  flex: 0 0 auto;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.certificate-slider:hover .certificate-track {
  animation-play-state: paused;
}

@keyframes certificateSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.footer .footer-grid > div:nth-child(2) a {
  display: block;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 17px;
}

.footer .footer-grid > div:nth-child(2) h3 {
  margin-bottom: 28px;
}

/* =====================================================
   HAMBURGER + SIDEBAR DRAWER  (desktop hidden)
   ===================================================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 10px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.hamburger:hover { background: rgba(255,255,255,0.25); }

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999998;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #0b1f5e;
  z-index: 999999;
  overflow-y: auto;
  transition: left 0.32s ease;
  display: flex;
  flex-direction: column;
}

.sidebar-drawer.open { left: 0; }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #061540;
  border-bottom: 2px solid #e53935;
  flex-shrink: 0;
}

.sidebar-header img {
  height: 48px;
  object-fit: contain;
}

.sidebar-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.3s;
}

.sidebar-close:hover { color: #e53935; }

.sidebar-nav { flex: 1; padding: 12px 0; }

.sidebar-nav > a,
.sidebar-item > .sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, padding-left 0.2s;
  cursor: pointer;
}

.sidebar-nav > a:hover,
.sidebar-item > .sidebar-link:hover {
  background: rgba(255,255,255,0.10);
  padding-left: 30px;
}

.sidebar-nav > a.active {
  color: #e53935;
  border-left: 3px solid #e53935;
}

.sidebar-link .arrow {
  font-size: 12px;
  transition: transform 0.3s;
  color: #e53935;
}

.sidebar-item.open > .sidebar-link .arrow {
  transform: rotate(90deg);
}

.sidebar-submenu {
  display: none;
  background: rgba(0,0,0,0.25);
  border-left: 3px solid #e53935;
  margin-left: 24px;
}

.sidebar-item.open > .sidebar-submenu { display: block; }

.sidebar-submenu > .sidebar-sub-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-sub-item > .sidebar-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #e53935;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar-sub-item > .sidebar-sub-link:hover {
  background: rgba(255,255,255,0.08);
}

.sidebar-sub-item .arrow {
  font-size: 11px;
  transition: transform 0.3s;
  color: #e53935;
}

.sidebar-sub-item.open > .sidebar-sub-link .arrow {
  transform: rotate(90deg);
}

.sidebar-submenu > a {
  display: block;
  padding: 12px 20px;
  color: #cccccc;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, color 0.2s;
}

.sidebar-submenu > a:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

/* ── ACTIVE SUB-LINK in sidebar (was only targeting 3rd-level deep) ── */
.sidebar-submenu > a.active-sub {
  background: #243c96;
  color: #ffffff;
  border-left: 3px solid #e53935;
  padding-left: 17px;
}

.sidebar-submenu > a.active-sub:hover {
  background: #1a2d7a;
  color: #ffffff;
}

.sidebar-sub-submenu {
  display: none;
  background: rgba(0,0,0,0.2);
  border-left: 2px solid rgba(255,255,255,0.15);
  margin-left: 20px;
}

.sidebar-sub-item.open > .sidebar-sub-submenu { display: block; }

.sidebar-sub-submenu a {
  display: block;
  padding: 11px 18px;
  color: #b0bec5;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, color 0.2s;
}

.sidebar-sub-submenu a:hover,
.sidebar-sub-submenu a.active-sub {
  background: #243c96;
  color: #ffffff;
}

.sidebar-contact {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #061540;
  flex-shrink: 0;
}

.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.sidebar-contact a:last-child { margin-bottom: 0; }
.sidebar-contact a:hover { color: #ffffff; }

.sidebar-contact i {
  color: #e53935;
  width: 16px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-section { background: #ffffff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-content h2 {
  font-size: 42px;
  color: #061f35;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.contact-info {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: #243c96;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item span,
.contact-info-item a,
.contact-info-item div {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info-item a:hover { color: #e53935; }

.tag {
  display: inline-block;
  background: #243c96;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 1px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: #f4f6fb;
  border-left: 4px solid #243c96;
  padding: 28px 24px;
  transition: 0.3s;
}

.contact-card:hover {
  background: #243c96;
  border-left-color: #e53935;
}

.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a { color: #ffffff; }

.contact-card-icon {
  font-size: 28px;
  color: #243c96;
  margin-bottom: 14px;
  transition: 0.3s;
}

.contact-card:hover .contact-card-icon { color: #ffffff; }

.contact-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #061f35;
  margin-bottom: 10px;
  transition: 0.3s;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  transition: 0.3s;
}

.contact-card a {
  color: #555;
  font-size: 15px;
  transition: 0.3s;
}

.contact-card-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.contact-card-social a {
  width: 34px;
  height: 34px;
  background: #243c96;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.contact-card:hover .contact-card-social a {
  background: rgba(255,255,255,0.2);
  color: #ffffff !important;
}

.contact-card-social a:hover { background: #e53935 !important; }

.map-section { padding-bottom: 90px; }

.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* =====================================================
   THANK YOU PAGE
   ===================================================== */

.thankyou-section { background: #f4f4f4; }

.thankyou-box {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  text-align: center;
  padding: 70px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  position: relative;
  border-top: 5px solid #243c96;
}

.thankyou-icon {
  font-size: 72px;
  color: #243c96;
  margin-bottom: 24px;
  line-height: 1;
}

.thankyou-logo {
  width: 180px;
  display: block;
  margin: 0 auto 30px;
}

.thankyou-box h2 {
  font-size: 36px;
  color: #061f35;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.25;
}

.thankyou-box > p {
  font-size: 18px;
  color: #555;
  margin-bottom: 0;
}

.thankyou-divider {
  width: 70px;
  height: 4px;
  background: #e53935;
  margin: 28px auto;
}

.thankyou-sub {
  font-size: 16px !important;
  color: #666 !important;
  line-height: 1.8;
  margin-bottom: 36px !important;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.thankyou-contact {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  border-top: 1px solid #eeeeee;
  padding-top: 28px;
  margin-top: 10px;
}

.thankyou-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #444;
  font-weight: 700;
}

.thankyou-contact i { color: #243c96; font-size: 18px; }

.thankyou-contact a {
  color: #243c96;
  font-weight: 700;
  transition: 0.3s;
}

.thankyou-contact a:hover { color: #e53935; }


/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 1100px) {
  .main-nav { padding: 0 4%; }
}

@media (max-width: 900px) {

  .navbar { display: none !important; }
  .hamburger { display: flex; }

  .main-nav {
    justify-content: space-between;
    padding: 0 16px;
    min-height: 58px;
    gap: 0;
  }

  .main-nav::before {
    content: "AXIS THERMAL";
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .top-bar {
    padding: 0;
    min-height: auto;
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
  }

  .top-contact,
  .top-right {
    display: none;
  }

  .top-left {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
  }

  .logo-area {
    gap: 12px;
    justify-content: center;
  }

  .logo img {
    width: 140px;
  }

  .azadi-logo img {
    width: 46px;
  }

  .mobile-contact-strip {
    display: flex !important;
    background: #243c96;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .mobile-contact-strip a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .mobile-contact-strip a i {
    font-size: 13px;
    color: #ffcdd2;
  }

  .mobile-social-strip {
    display: flex !important;
    background: #f4f4f4;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    border-bottom: 1px solid #e0e0e0;
  }

  .mobile-social-strip a {
    width: 30px;
    height: 30px;
    background: #243c96;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
  }

  .mobile-social-strip a:hover {
    background: #e53935;
  }

  .hero {
    min-height: 420px;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero h6 {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    padding: 13px 24px;
    font-size: 13px;
  }

  .section { padding: 50px 0; }

  .two-col,
  .product-intro,
  .service-row,
  .service-row.reverse,
  .footer-grid,
  .about-story {
    grid-template-columns: 1fr;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .service-row { margin-bottom: 40px; }

  .two-col img,
  .service-row img {
    height: 240px;
  }

  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p  { font-size: 15px; }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .industry-grid img { height: 160px; }

  .industry-grid h3 {
    font-size: 15px;
    margin: 12px 0 24px;
  }

  .cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .footer { padding: 50px 0 24px; }

  .footer-grid {
    gap: 36px;
  }

  .footer-icons-only { justify-content: center; }
  .footer-social     { justify-content: center; }

  .copyright {
    width: 90%;
    text-align: center;
    font-size: 13px;
  }

  .page-banner {
    min-height: 220px;
    padding: 40px 20px;
  }

  .page-banner h1 {
    font-size: 36px;
  }

  .certificate-card {
    width: 230px;
    height: 145px;
  }

  .certificate-track { gap: 18px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-content h2 { font-size: 26px; }

  .thankyou-box {
    padding: 40px 20px;
  }

  .thankyou-box h2  { font-size: 24px; }
  .thankyou-icon    { font-size: 52px; }
  .thankyou-contact { flex-direction: column; gap: 12px; align-items: center; }
}

@media (max-width: 768px) {

  .top-left {
    padding: 8px 14px;
  }

  .logo img       { width: 120px; }
  .azadi-logo img { width: 40px;  }

  .main-nav::before {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .main-nav { min-height: 52px; }

  .hero { min-height: 360px; padding: 50px 16px; }
  .hero h1 { font-size: 28px; }

  .product-intro { gap: 28px; }
  .product-item  { padding: 18px 0; }

  .industry-grid { grid-template-columns: 1fr 1fr; }

  .contact-cards { grid-template-columns: 1fr; }

  .map-section iframe { height: 320px; }

  .footer .footer-grid > div:nth-child(2) a { font-size: 15px; }
}

@media (max-width: 520px) {

  .logo img       { width: 110px; }
  .azadi-logo img { width: 36px; }

  .logo-area { gap: 8px; }

  .mobile-contact-strip {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }

  .hero { min-height: 300px; padding: 40px 14px; }
  .hero h1 { font-size: 24px; }
  .hero h6 { font-size: 11px; margin-bottom: 12px; }
  .hero-buttons .btn { padding: 11px 18px; font-size: 12px; }

  .industry-grid { grid-template-columns: 1fr; }
  .industry-grid img { height: 200px; }

  .page-banner h1 { font-size: 28px; }

  .certificate-card  { width: 200px; height: 130px; }
  .certificate-track { gap: 14px; }

  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}