/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #ffffff;
}

html {
  background: #ffffff;
}

body {
  top: 0 !important;
}

/* ================= HEADER ================= */
.top-header {
  background: #f8f9fa;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.4s ease;
}



.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  transition: 0.3s;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box i {
  font-size: 24px;
  color: #1f3c88;
}

.info-box span {
  font-size: 11px;
  font-weight: 600;
  color: #1f3c88;
  letter-spacing: 1px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.btn-inquiry {
  border: 2px solid orange;
  padding: 6px 18px;
  border-radius: 30px;
  color: orange;
  text-decoration: none;
  transition: 0.3s;
}

.btn-inquiry:hover {
  background: orange;
  color: white;
}

/* ================= NAVBAR ================= */
.navbar {
  background: transparent;
  padding: 18px 0;
  transition: all 0.4s ease;
  background-color: #0c307d;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: #fff;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  gap: clamp(18px, 6vw, 85px);
  align-items: center;
}

.nav-logo {
  opacity: 0;
  transform: translateY(-15px) scale(0.9);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* SHOW AFTER SCROLL */
.navbar.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-logo img {
  height: 50px;
}



.nav-link {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fffefe !important;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: orange;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: orange !important;
}

.nav-link:hover {
  background: #f5f5f5;
  padding-left: 24px;
}

.nav-link.active {
  background: linear-gradient(135deg,#fff4df,#ffe8ba);
}

/* ================= LOGO SECTION ================= */
.logo-section {
  padding: 10px 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #eee;
  background: linear-gradient(to right, #f8f9fa, #f1f1f1);
  transition: 0.4s ease;
}

.logo-section.fade-out {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.logo-box {
  display: inline-block;
  background: #f3e0c7;
  padding: 5px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-box img {
  height: 150px;
  display: block;
  margin: 0 auto;
}

/* ================= SLIDER ================= */
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: clamp(520px, 72vh, 760px);
}

#heroCarousel .carousel-item {
  position: relative;
  overflow: hidden;
  background-color: #eef2f7;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #eef2f7;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 38, 0.48) 0%, rgba(8, 17, 38, 0.18) 48%, rgba(8, 17, 38, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 17, 38, 0.12), rgba(8, 17, 38, 0.02));
  z-index: 1;
}

.custom-caption {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 50%;
  bottom: auto;
  width: min(760px, 82vw);
  transform: translateY(-50%);
  text-align: left;
}

.custom-caption h1 {
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: bold;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.custom-caption p {
  max-width: 680px;
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.6;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.custom-caption .btn {
  padding: 10px 20px;
  font-weight: 500;
}

/* ================= INNER PAGE HERO ================= */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #162045;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  transform: scale(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 25, 58, 0.9) 0%, rgba(14, 25, 58, 0.72) 46%, rgba(14, 25, 58, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 14, 31, 0.34), rgba(8, 14, 31, 0.06));
}

.page-hero-products {
  --page-hero-image: url("../images/plastic-injection-molding-machine-operating-in-a-busy-factory-photo.jpg");
}

.page-hero-about {
  --page-hero-image: url("../images/plastic-injection-molding-machine-operating-in-a-busy-factory-photo.jpg");
}

.page-hero-services {
  --page-hero-image: url("../images/plastic-injection-molding-machine-operating-in-a-busy-factory-photo.jpg");
}

.page-hero-contact {
  --page-hero-image: url("../images/plastic-injection-molding-machine-operating-in-a-busy-factory-photo.jpg");
}

.page-hero-gallery {
  --page-hero-image: url("../images/plastic-injection-molding-machine-operating-in-a-busy-factory-photo.jpg");
}

.page-hero-content {
  position: relative;
  padding: 70px 12px;
  text-align: left;
}

.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.95);
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-hero h1,
.page-hero .page-title {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  text-align: left;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.55;
}

.page-hero p i {
  margin-right: 8px;
  color: orange;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.page-hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-hero-breadcrumb a:hover {
  color: orange;
}

/* ================= COMMON TITLES ================= */
.section-title,
p.section-title {
  color: orange;
  font-weight: bolder;
  font-size: x-large;
  letter-spacing: 1px;
}

.section-heading,
.h2,
h2 {
  font-size: 2rem;
  font-weight: bolder;
}

/* ================= ABOUT ================= */
.about {
  padding: 80px 0;
  background: #f9f9f9;
}

.about .row {
  align-items: flex-start;
}

.about .col-lg-6 {
  background: transparent !important;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  right: 40;
  background: transparent;
  box-shadow: none;
}

.about-img img {
  width: 70%;
  display: block;
  border: 5px solid orange;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.about-heading-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.about-subtitle {
  color: orange;
  font-size: x-large;
  font-weight: bolder;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
}

.about-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
  font-size: large;
}

.accordion {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  color: #162045;
}

.accordion-button {
  position: relative;
  background: #6e6d6d;
  color: #fff2f2;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.accordion-button:hover {
  background: #ff8903;
}

.accordion-button:not(.collapsed) {
  background: #e0e0e0;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::before {
  content: "-";
}

.accordion-body {
  background: #fafafa;
  font-size: 16px;
  padding: 20px;
  line-height: 1.7;
}

/* ================= OWNERS ================= */
.owners-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  position: relative;
}

.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 1060px;
  margin: 0 auto;
}

.owner-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(22, 32, 69, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(22, 32, 69, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(22, 32, 69, 0.16);
}

.owner-photo {
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: #eef2f7;
  border-bottom: 5px solid #ff9900;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.owner-card:hover .owner-photo img {
  transform: scale(1.04);
}

.owner-content {
  padding: 28px 30px 32px;
  text-align: center;
}

.owner-generation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 8px 16px;
  color: #111827;
  background: #fff3d8;
  border: 1px solid rgba(255, 153, 0, 0.45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.owner-content h3 {
  margin-bottom: 12px;
  color: #162045;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.owner-content p {
  max-width: 420px;
  margin: 0 auto;
  color: #666;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .owners-grid {
    grid-template-columns: 1fr;
  }

  .owner-card {
    max-width: 760px;
    margin: 0 auto;
  }

  .owner-photo {
    height: 420px;
  }
}

@media (max-width: 575px) {
  .owners-section {
    padding: 58px 0;
  }

  .owners-grid {
    gap: 22px;
  }

  .owner-card {
    width: 100%;
  }

  .owner-photo {
    height: 310px;
  }

  .owner-content {
    padding: 24px 18px 28px;
  }

  .owner-generation {
    font-size: 12px;
  }

  .owner-content h3 {
    font-size: 25px;
  }

  .owner-content p {
    font-size: 16px;
  }
}

.btn-read {
  display: inline-block;
  margin-top: 20px;
  background: #2c3e70;
  color: white;
  padding: 12px 35px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-read:hover {
  background: orange;
  transform: translateY(-2px);
}

/* ================= PRODUCTS ================= */
.products {
  padding: 30px 0;
  background: #f9f9f9;
}

.products .row {
  row-gap: 25px;
}

.product-card {
  position: relative;
  height: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: visible;
  transition: 0.4s;
}

.products .product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
}

.products .product-img {
  max-width: none;
  aspect-ratio: 4 / 3;
  margin-bottom: 15px;
  background: #f3f4f6;
}

.product-img img,
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 15px;
  transition: 0.6s;
}

.products .product-img img {
  display: block;
  height: 100%;
  margin-bottom: 0;
  object-fit: contain;
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: 0.4s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.product-overlay li {
  color: #fff;
  font-size: 14px;
  margin: 6px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

.product-card:hover .product-overlay li {
  opacity: 1;
  transform: translateY(0);
}

.product-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #25D366;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.product-icon i {
  color: #fff;
  font-size: 18px;
}

.product-icon:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.product-icon::after {
  content: "Chat on WhatsApp";
  position: absolute;
  bottom: -30px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

.product-icon:hover::after {
  opacity: 1;
}

.product-info {
  padding: 15px;
  text-align: center;
  background: #f5f5f5;
}

.product-info h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.product-info .btn,
.product-info .enquiry-btn {
  display: block;
  width: 70%;
  margin: 10px auto;
}

.btn-warning {
  width: 70%;
  border-radius: 25px;
  font-weight: 600;
}

.filter-btn {
  border: none;
  background: #eee;
  padding: 8px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: orange;
  color: white;
}

.product-item {
  transition: 0.4s;
}

.product-item.hide {
  display: none;
}

.product-plus {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: orange;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
  transition: 0.3s ease;
}

.product-card:hover .product-plus {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.product-plus:hover {
  box-shadow: 0 5px 20px rgba(255, 165, 0, 0.6);
}

.enquiry-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid orange;
  background: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: orange;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.enquiry-btn .btn-icon {
  transition: 0.3s;
}

.enquiry-btn:hover .btn-icon {
  transform: translateX(5px);
}

.enquiry-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, opacity 0.4s;
}

.enquiry-btn:active::after {
  width: 200px;
  height: 200px;
  opacity: 1;
}

/* ================= POPUP ================= */
.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
}

.popup-box {
  position: relative;
  width: min(92vw, 560px);
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  text-align: left;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.popup-box h2,
.popup-box h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
}

.popup-box input,
.popup-box textarea,
.popup-box select {
  width: 100%;
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid #d7dde7;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  outline: none;
}

.popup-box textarea {
  min-height: 120px;
  resize: vertical;
}

.popup-box button {
  width: 100%;
  margin-top: 4px;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: orange;
  color: #111;
  font-weight: 700;
}

.popup-box button:hover {
  background: #ff9900;
}

.close-popup {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.08);
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .popup-box {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .popup-box h2,
  .popup-box h3 {
    font-size: 22px;
  }

  .popup-box input,
  .popup-box textarea,
  .popup-box select {
    padding: 12px 14px;
  }
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #0b1a3a, #142b5c);
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(#ffffff33 2px, transparent 2px);
  background-size: 12px 12px;
}

.cta h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  color: white;
}

.cta-btn {
  display: inline-block;
  position: relative;
  background: orange;
  color: #000;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: orange;
  border-radius: 30px;
  z-index: -1;
  opacity: 0.4;
}

.cta-btn:hover {
  background: #ff9900;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}

/* ================= GALLERY ================= */
.gallery {
  padding: 80px 0;
  background: #f9f9f9;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item::after,
.gallery-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item::after {
  content: "";
  background: rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-overlay i {
  color: #fff;
  font-size: 30px;
  transform: scale(0.8);
  transition: 0.3s;
}

.gallery-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  z-index: 2;
}

.gallery-info h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.gallery-info p {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after,
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-item:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

/* ================= LIGHTBOX ================= */
.lightbox,
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox img {
  max-width: 92%;
  max-height: 88%;
  border-radius: 10px;
  object-fit: contain;
  transition: 0.4s;
}

.lightbox .close,
.close-video {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}

.lightbox .prev:hover,
.lightbox .next:hover,
.lightbox .close:hover {
  color: orange;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  color: #fff;
  font-size: 16px;
}

/* ================= FACTS ================= */
.facts-section {
  padding: 35px 0 50px;
  margin-bottom: 40px;
  background: #f7f7f7;
}

.facts-box {
  background: linear-gradient(135deg, #f4f4f4, #e7e7e7);
  padding: 35px 28px;
  border-radius: 14px;
  width: 90%;
  margin: 20px auto 0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.fact-item {
  width: 100%;
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translateY(40px);
  transition: 0.35s ease, opacity 0.6s ease, transform 0.6s ease;
}

.fact-item.show {
  opacity: 1;
  transform: translateY(0);
}

.fact-item i {
  font-size: 36px;
  color: orange;
  margin-bottom: 12px;
  transition: 0.3s;
}

.fact-item:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.fact-item:hover i {
  transform: scale(1.08);
}

.fact-item h3 {
  font-size: 40px;
  color: orange;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.fact-item p {
  color: #4f5a66;
  font-size: 14px;
  margin-top: 5px;
}

.divider {
  width: 60px;
  height: 3px;
  background: orange;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ================= VIDEO ================= */
.video-gallery {
  padding: 80px 0;
  background: #fff;
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.video-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}

.video-overlay i {
  color: #fff;
  font-size: 40px;
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.video-lightbox {
  background: rgba(0, 0, 0, 0.9);
}

.video-lightbox video {
  width: 80%;
  max-height: 80%;
}

/* ================= SUBSCRIBE ================= */
.subscribe-section {
  background: linear-gradient(135deg, #ff9d00, #ffb733);
  padding: 40px 0;
}

.subscribe-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscribe-text h2 {
  color: #111;
  font-size: 32px;
  font-weight: 700;
}

.subscribe-text p {
  color: #fff;
  font-size: 15px;
}

.subscribe-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 2px dashed #000;
}

.subscribe-form input {
  width: 280px;
  padding: 14px 20px;
  border: none;
  outline: none;
}

.subscribe-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: orange;
  color: #000;
}

.subscribe-status {
  margin: 12px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #2f3f73, #1e2a55);
  color: #fff;
  padding: 70px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-col {
  width: 25%;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 250px;
}

.footer-col p {
  line-height: 1.7;
  color: #ffffff;
}

.footer-col p:hover {
  color: orange;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  color: #ffffff;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background: orange;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: orange;
  transform: translateX(5px);
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: orange;
  padding-left: 5px;
}

.footer-bottom {
  background: #162045;
  padding: 18px 40px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

.footer-bottom a {
  color: orange;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ================= WHATSAPP ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* ================= PRODUCT LIST PAGE ================= */
.product-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  padding: 50px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  margin-bottom: 50px;
  overflow: hidden;
}

.product-content {
  min-width: 0;
}

.product-row .product-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.product-row::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(270deg, rgba(180, 202, 165, 0.774), #e3f68fb1, rgba(234, 201, 145, 0.734));
  background-size: 400% 400%;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

.product-row:hover {
  transform: translateY(-10px);
}

.product-row:hover::before {
  animation: borderGlow 4s linear infinite;
  opacity: 1;
}

.product-row:hover img {
  transform: scale(1.1);
}

.product-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
}

.product-row:hover .product-img::after {
  animation: shine 1s;
}

.floating-actions {
  position: absolute;
  top: 15px;
  left: 15px;
}

.floating-actions a {
  width: 45px;
  height: 45px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  transition: 0.3s;
}

.floating-actions a:hover {
  transform: scale(1.1);
}

.product-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.product-content ul {
  margin: 15px 0;
}

.product-content ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.product-content ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: orange;
}

.product-actions {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.btn-main {
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  padding: 14px 35px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-3px);
}

.whatsapp-product-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-product-text:hover {
  color: #128C7E;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes borderGlow {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .top-header .container,
  .header-right {
    justify-content: center;
  }

  .top-header .container {
    gap: 16px;
  }

  .header-right {
    flex-wrap: wrap;
    gap: 16px;
  }

  .logo-section.fixed {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    background: rgba(248, 249, 250, 0.98);
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }

  .custom-caption h1 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .custom-caption p {
    font-size: 18px;
  }

  .about-img {
    right: auto;
    text-align: center;
    margin-bottom: 30px;
  }

  .about-img img {
    width: 85%;
    margin: 0 auto;
  }

  .product-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .product-row {
    flex-direction: column;
    padding: 35px;
    gap: 30px;
    text-align: center;
  }

  .product-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .facts-row,
  .subscribe-container,
  .footer-container {
    flex-wrap: wrap;
  }

  .facts-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-item {
    width: 100%;
  }

  .subscribe-container {
    gap: 25px;
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 280px;
    background-position: center;
  }

  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(14, 25, 58, 0.92) 0%, rgba(14, 25, 58, 0.74) 100%),
      linear-gradient(0deg, rgba(8, 14, 31, 0.24), rgba(8, 14, 31, 0.08));
  }

  .page-hero-content {
    padding: 54px 18px;
  }

  .page-hero h1,
  .page-hero .page-title {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-hero-breadcrumb {
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .logo img {
    height: 50px;
  }

  .logo-section.fixed {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(248, 249, 250, 0.96);
    border-bottom: 1px solid #eee;
    padding: 8px 0;
  }

  .logo-box {
    margin: 0 auto;
  }

  .logo-box img {
    height: 110px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 560px;
  }

  .custom-caption {
    left: 6%;
    right: 6%;
    top: 50%;
    width: auto;
  }

  .custom-caption h1 {
    font-size: 30px;
  }

  .custom-caption p {
    font-size: 15px;
  }

  .section-heading,
  .h2,
  h2 {
    font-size: 1.65rem;
  }

  .about,
  .gallery,
  .video-gallery {
    padding: 50px 0;
  }

  .about-heading {
    font-size: 30px;
  }

  .about-text {
    font-size: 16px;
  }

  .accordion-button {
    font-size: 16px;
    padding: 16px 20px;
  }

  .product-img img,
  .product-card img {
    width: 100%;
    height: 240px;
  }

  .btn-warning,
  .product-info .btn,
  .product-info .enquiry-btn {
    width: 85%;
  }

  .cta {
    padding: 70px 16px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .gallery-item img {
    height: 300px;
  }

  .facts-box {
    width: 92%;
    padding: 22px 14px;
  }

  .facts-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .fact-item {
    padding: 16px 8px;
  }

  .fact-item h3 {
    font-size: 26px;
  }

  .fact-item i {
    font-size: 26px;
  }

  .fact-item p {
    font-size: 12px;
  }

  .subscribe-container,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
    text-align: center;
  }

  .subscribe-form {
    width: 100%;
    max-width: 420px;
    margin-top: 15px;
  }

  .subscribe-form input {
    width: 100%;
    min-width: 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-col h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .footer-col ul li,
  .footer-col ul li a {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-col p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.8;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    gap: 12px;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 10px 0;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }

  .info-box {
    justify-content: center;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 520px;
  }

  .custom-caption h1 {
    font-size: 25px;
  }

  .custom-caption .btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .about-img img {
    width: 100%;
  }

  .about-heading {
    font-size: 26px;
  }

  .filter-btn {
    padding: 8px 14px;
  }

  .product-card {
    padding: 12px;
  }

  .product-img img,
  .product-card img {
    height: 210px;
  }

  .popup-box {
    width: calc(100% - 30px);
  }

  .gallery-item img,
  .video-item video {
    height: 240px;
  }

  .facts-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .facts-box {
    width: 96%;
    padding: 14px 8px;
  }

  .fact-item {
    padding: 12px 4px;
    border-radius: 8px;
  }

  .fact-item i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .fact-item h3 {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 4px;
  }

  .fact-item p {
    font-size: 10px;
    line-height: 1.2;
  }

  .lightbox img,
  .video-lightbox video {
    width: 92%;
    max-width: 92%;
  }

  .lightbox .close,
  .close-video {
    right: 20px;
  }

  .lightbox .prev {
    left: 12px;
  }

  .lightbox .next {
    right: 12px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .subscribe-form button {
    width: 100%;
  }

  .footer {
    padding-top: 45px;
  }

  .footer-container {
    width: 92%;
    gap: 30px 16px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col ul li,
  .footer-col ul li a {
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-col p {
    font-size: 15px;
  }

  .whatsapp-btn {
    bottom: 15px;
    left: 15px;
    font-size: 20px;
    padding: 10px 13px;
  }
}
/* ================= RESPONSIVE NAVBAR ================= */
@media (max-width: 991px) {

  .navbar {
    background: #ffffff;
    padding: 10px 0;
  }
.navbar.scrolled {
    background-color: #24356f;
    transition: background-color 0.3s ease;
  }
  .navbar .container {
    position: relative;
  }

  /* SHOW LOGO */
  /* HIDE NAV LOGO INITIALLY */
.nav-logo {
  opacity: 0;
  transform: translateY(-15px) scale(0.9);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* SHOW AFTER SCROLL */
.navbar.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

  .nav-logo img {
    height: 80px;
    margin-left: 20px;
    margin-right: 30px;
  }

  /* HAMBURGER */
  .navbar-toggler {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* CUSTOM ICON */
  .navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 3px;
    background: #222;
    border-radius: 20px;
    position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #222;
    left: 0;
    border-radius: 20px;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  /* DROPDOWN MENU */
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 15px);
    left: 10px;
    right: 10px;
    background: #24356f;
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    z-index: 999;
  }

  /* MENU ITEMS */
  .navbar-nav {
    width: 100%;
    gap: 8px;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
  }

  .nav-link.active {
    background: #fff4df;
    color: orange !important;
  }

  .nav-link:hover {
    background: #f7f7f7;
    color: orange !important;
  }

  /* REMOVE DESKTOP UNDERLINE */
  .nav-link::after {
    display: none;
  }

}

/* ================= DEVICE COMPATIBILITY PASS ================= */
html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  min-width: 0;
}

img,
video,
iframe {
  height: auto;
}

a,
button,
input,
textarea,
select,
.nav-link,
.btn,
.btn-inquiry,
.enquiry-btn,
.btn-main,
.whatsapp-product-text,
.footer-col p,
.footer-col a,
.product-content h2,
.certificate-content h4 {
  overflow-wrap: anywhere;
}

.container {
  max-width: min(100% - 24px, 1200px);
}

.row {
  min-width: 0;
}

.topbar-wrapper,
.top-header .container,
.navbar .container,
.footer-container,
.subscribe-container,
.product-row,
.contact-box,
.service-container,
.gallery-container,
.certificate-grid,
.company-timeline {
  max-width: 100%;
}

.page-hero-content,
.custom-caption,
.product-content,
.certificate-content,
.contact-card,
.service-card,
.footer-col {
  min-width: 0;
}

.company-timeline {
  width: min(1200px, calc(100% - 24px));
  margin-left: auto;
  margin-right: auto;
}

.certificate-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

@media (max-width: 991px) {
  .navbar .container {
    gap: 12px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .nav-logo {
    pointer-events: auto;
  }

  .nav-logo img {
    max-width: 150px;
    height: auto;
  }

  .product-row {
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: min(100% - 20px, 720px);
  }

  .top-header {
    padding: 18px 0;
  }

  .top-header .container {
    gap: 14px;
  }

  .logo img {
    height: 72px;
  }

  .header-right {
    gap: 16px;
  }

  .info-box i {
    font-size: 28px;
  }

  .info-box span {
    font-size: 14px;
  }

  .info-box p {
    font-size: 15px;
  }

  .btn-inquiry {
    padding: 11px 24px;
    font-size: 16px;
    border-width: 2px;
  }

  .topbar-left,
  .topbar-right {
    white-space: normal;
  }

  .navbar-collapse {
    left: 0;
    right: 0;
    border-radius: 18px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: clamp(440px, 68vh, 560px);
  }

  .custom-caption {
    top: 52%;
  }

  .hero-stats,
  .facts-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-row {
    padding: 28px 18px;
    gap: 24px;
  }

  .product-content {
    text-align: center;
  }

  .product-actions {
    align-items: stretch;
  }

  .product-actions a,
  .btn-main,
  .whatsapp-product-text {
    width: 100%;
    justify-content: center;
  }

  .product-img img,
  .product-card img {
    max-width: 100%;
    object-fit: contain;
  }

  .certificate-grid {
    gap: 24px;
  }

  .certificate-card {
    border-radius: 18px;
  }

  .company-timeline {
    gap: 16px;
  }

  .timeline-item {
    min-width: min(100%, 220px);
  }

  .subscribe-form {
    min-width: 0;
  }

  .lightbox img,
  .video-lightbox video {
    max-height: 78vh;
  }
}

@media (max-width: 575px) {
  .container {
    max-width: min(100% - 16px, 540px);
  }

  .page-hero {
    min-height: 250px;
  }

  .page-hero-content {
    padding: 44px 8px;
  }

  .page-hero h1,
  .page-hero .page-title {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .page-hero-breadcrumb {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 460px;
  }

  .custom-caption {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .custom-caption h1 {
    font-size: 24px;
  }

  .custom-caption p {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a,
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats,
  .facts-row,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .product-row,
  .testimonial-card,
  .description-box {
    border-radius: 16px;
  }

  .section-heading,
  .h2,
  h2 {
    font-size: 1.45rem;
  }

  .certificate-card img {
    height: 260px;
  }

  .certificate-content {
    padding: 22px 18px;
  }

  .certificate-content h4 {
    font-size: 20px;
  }

  .certificate-content p,
  .certificate-desc {
    font-size: 15px;
  }

  .timeline-item {
    min-width: 0;
    width: 100%;
  }

  .timeline-item span {
    font-size: 34px;
  }

  .timeline-item p {
    font-size: 16px;
  }

  .whatsapp-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}

/* ================= DESKTOP NAVBAR ================= */
@media (min-width: 992px) {

  .navbar-collapse {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
  }

  .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .nav-logo {
    opacity: 0;
    margin-right: 20px;
    
  }

  .navbar.scrolled .nav-logo {
    opacity: 1;
  }
.navbar.scrolled {
  background-color: #24356f;
}
}
/* ===== PREMIUM MOBILE HEADER ===== */

@media (max-width: 768px) {

  .top-header {
    padding: 30px 0;
    background: #f8f8f8;
  }

  .top-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* TOP LOGO */
  .logo img {
    height: 95px;
  }

  /* COLUMN LAYOUT */
  .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* INFO BOX */
  .info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
  }

  /* ICON */
  .info-box i {
    font-size: 45px;
    color: #1f3c88;
    margin-bottom: 5px;
  }

  /* HEADING */
  .info-box span {
    font-size: 22px;
    font-weight: 500;
    color: #ff9900;
    letter-spacing: 1px;
  }

  /* TEXT */
  .info-box p {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin: 0;
    line-height: 1.4;
  }

  /* BUTTON */
  .btn-inquiry {
    margin-top: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    border: 3px solid orange;
    color: rgb(1, 29, 75);
    background: transparent;
    transition: 0.3s;
  }

  .btn-inquiry:hover {
    background: rgb(5, 28, 105);
    color: white;
  }

}
/* ===== FIXED PREMIUM TOPBAR ===== */

.topbar {
  background: #24356f;
  width: 100%;
  position: relative;
  z-index: 50;
}

/* TOPBAR WRAPPER */
.topbar-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  min-height: 62px;
}

/* LEFT */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  white-space: nowrap;
}

/* SOCIAL */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #ff9d00;
  color: #111;
}

/* COMPANY */
.company-strip {
  background: #ff9d00;
  color: #111;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  white-space: normal;
}

/* TEXT */
.company-text {
  background: rgba(255,255,255,0.12);
  color: #f5f5f5;
  padding: 10px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  white-space: normal;
}

/* RIGHT */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  white-space: nowrap;
}

/* HELP */
.help-text {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
  padding: 10px 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
}

.help-text span {
  color: #ffd96b;
  font-weight: 700;
}

/* LANGUAGE */
.language-box {
  background: #fff;
  color: #24356f;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.language-box i {
  color: #24356f;
}

@media (max-width: 992px) {
  .topbar-wrapper {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 10px 14px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }

  .company-strip,
  .company-text,
  .help-text,
  .language-box {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .topbar-wrapper {
    gap: 8px;
    padding: 10px 12px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  .company-strip,
  .company-text,
  .help-text,
  .language-box {
    font-size: 13px;
    padding: 10px 12px;
  }

  .help-text {
    width: 100%;
  }
}

.company-text {
  overflow: hidden;
  text-overflow: ellipsis;
}
#loader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader img {
  width: 140px;
  animation: spinLogo 1s linear infinite;
}

@keyframes spinLogo {

  100% {
    transform: rotate(360deg);
  }

}
/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

/* CARD */
.testimonial-card {
  max-width: 850px;
  margin: auto;
  background: #fff;
  padding: 55px;
  border-radius: 30px;
  text-align: center;
  border: 2px solid #111;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  position: relative;
  transition: 0.4s ease;
}



/* STARS */
.stars {
  color: orange;
  font-size: 28px;
  margin-bottom: 25px;
  letter-spacing: 5px;
}

/* REVIEW */
.testimonial-card p {
  font-size: 24px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  font-weight: 500;
}

/* CLIENT */
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* IMAGE */
.client-info img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid orange;
  background: #f2f2f2;
}

/* NAME */
.client-info h5 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #111;
}

/* LOCATION */
.client-info span {
  color: #777;
  font-size: 18px;
}

/* Keep carousel slides on the testimonial section white. */
.testimonials .carousel-inner {
  background: white !important;
}

.testimonials .carousel-item {
  background: white !important;
}
.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  width: auto;
  opacity: 1;
}

/* BUTTON DESIGN */
.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {

  background-image: none;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: rgba(0,0,0,0.75);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;

  backdrop-filter: blur(6px);
}

/* POSITION */
.testimonials .carousel-control-prev {
  left: 24%;
}

.testimonials .carousel-control-next {
  right: 24%;
}

/* ARROWS */
.testimonials .carousel-control-prev-icon::after {
  content: "←";
  color: white;
  font-size: 26px;
  font-weight: bold;
}

.testimonials .carousel-control-next-icon::after {
  content: "→";
  color: white;
  font-size: 26px;
  font-weight: bold;
}

/* HOVER */
.testimonials .carousel-control-prev-icon:hover,
.testimonials .carousel-control-next-icon:hover {

  background: orange;

  transform: scale(1.08);

}

/* MOBILE */
@media (max-width: 768px) {

  .testimonials {
    padding: 70px 0;
  }

  .testimonial-card {
    padding: 35px 25px;
    border-radius: 24px;
  }

  .testimonial-card p {
    font-size: 18px;
  }

  .client-info {
    flex-direction: column;
  }

  .client-info h5 {
    font-size: 22px;
  }

  .testimonials .carousel-control-prev {
    left: 5px;
  }

  .testimonials .carousel-control-next {
    right: 5px;
  }

  .testimonials .carousel-control-prev-icon,
  .testimonials .carousel-control-next-icon {

    width: 44px;
    height: 44px;

  }

}
/* ================= HERO ================= */

.hero-content {
  max-width: 850px;
  color: white;
  z-index: 5;
  position: relative;
}

.hero-tag {
  display: inline-block;
  max-width: 100%;
  background: orange;
  color: #111;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 24px;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.92);
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s ease;
}

.hero-btn-primary {
  background: orange;
  color: white;
}

.hero-btn-secondary {
  border: 2px solid white;
  color: white;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
  transform: translateY(-5px);
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

.stat-box span {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}
/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 110px 0;
  background: #f8f9fc;
}

/* HEADING */
.faq-section .section-title {
  color: orange;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.faq-section .section-heading {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #111;
}

/* ACCORDION */
#faqAccordion {
  max-width: 950px;
  margin: auto;
}

/* ITEM */
.accordion1-item {
  border: none !important;
  border-radius: 24px !important;
  overflow: hidden;
  margin-bottom: 24px;
  background: white;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* BUTTON */
.accordion1-button {

  background: white !important;
  color: #111 !important;

  font-size: 24px;
  font-weight: 700;

  padding: 30px 35px;

  border: none !important;
  box-shadow: none !important;
}

/* ACTIVE */
.accordion1-button:not(.collapsed) {

  background: #111 !important;
  color: white !important;

}

/* ICON */
.accordion1-button::after {

  filter: brightness(0);

  transform: scale(1.2);

}

.accordion1-button:not(.collapsed)::after {

  filter: brightness(0) invert(1);

}

/* BODY */
.accordion1-body {

  padding: 30px 35px;

  font-size: 19px;
  line-height: 1.9;

  color: #555;

  background: white;

}

/* HOVER EFFECT */
.accordion1-item:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

  .faq-section {
    padding: 80px 0;
  }

  .faq-section .section-heading {
    font-size: 36px;
  }

  .accordion1-button {

    font-size: 18px;

    padding: 22px;

  }

  .accordion1-body {

    font-size: 16px;

    padding: 22px;

  }

}

/* ================= DEVICE SAFETY ================= */
img,
video,
iframe {
  max-width: 100%;
}

.product-img img {
  max-width: 100%;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .navbar-nav {
    gap: clamp(18px, 4vw, 52px);
  }

  .nav-link {
    padding-inline: 12px;
  }
}

@media (max-width: 768px) {
  .hero-tag {
    padding: 8px 14px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-buttons {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 11px 18px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 14px;
  }

  .stat-box h2 {
    font-size: 24px;
  }

  .stat-box span {
    font-size: 12px;
  }

  .product-content h2 {
    font-size: 28px;
  }

  .product-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-main,
  .whatsapp-product-text {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .topbar-left,
  .topbar-right {
    white-space: normal;
  }

  .company-strip,
  .company-text,
  .help-text,
  .language-box {
    overflow-wrap: anywhere;
  }

  .navbar .container {
    gap: 10px;
  }

  .nav-logo img {
    height: 64px;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-toggler {
    width: 46px;
    height: 46px;
  }

  .custom-caption {
    top: 52%;
  }

  .custom-caption h1 {
    font-size: 23px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-box h2 {
    font-size: 22px;
  }

  .hero-buttons a,
  .btn-main,
  .whatsapp-product-text,
  .enquiry-btn {
    width: 100%;
  }

  .product-row {
    padding: 22px 14px;
  }

  .product-content h2 {
    font-size: 23px;
    overflow-wrap: anywhere;
  }

  .facts-row,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: auto;
  }

  .subscribe-text h2 {
    font-size: 26px;
  }

  .testimonial-card {
    padding-inline: 18px;
  }
}
/* ================= TIMELINE ================= */

.company-timeline {

  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
  border-color: #fff;

}

.timeline-item {

  flex: 1;

  min-width: 180px;

  background: #162045;
  color: rgb(219, 218, 218);

  border-radius: 20px;

  padding: 25px;

  text-align: center;

}

.timeline-item span {

  display: block;

  font-size:44px;
  font-weight: 800;
  color: orange;

  margin-bottom: 10px;

}
.timeline-item p {

  font-size: 20px;
  color: #f0f0f0;
  font-weight: 600;
  margin-top: -6px;

}
/* ================= CERTIFICATES ================= */

.certificates-section {

  padding: 110px 0;

  background: white;

}

/* DESCRIPTION */

.certificate-desc {

  max-width: 850px;

  margin: 20px auto 0;

  font-size: 20px;
  line-height: 1.8;

  color: #666;

}

/* GRID */

.certificate-grid {

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap: 35px;

  margin-top: 70px;

}

/* CARD */

.certificate-card {

  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  border: 2px solid #eee;

  transition: 0.4s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.06);
  cursor: zoom-in;

}

.certificate-card::after {

  content: "\f00e";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.3s ease;

}

.certificate-card:hover {

  transform: translateY(-10px);

  box-shadow:
  0 20px 45px rgba(0,0,0,0.1);

}

.certificate-card:hover::after {

  opacity: 1;
  transform: translateY(0);

}

/* IMAGE */

.certificate-card img {

  width: 100%;
  height: 360px;

  object-fit: contain;
  object-position: center;
  background: #f7f8fb;
  padding: 14px;

}

.certificate-pdf-card {
  cursor: default;
}

.certificate-pdf-card::after {
  display: none;
}

.certificate-pdf-preview {
  width: 100%;
  height: 420px;
  padding: 14px;
  background: #f7f8fb;
}

.certificate-pdf-preview object {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #dbe1ea;
  border-radius: 14px;
  background: #fff;
}

.certificate-pdf-preview object a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  color: #162045;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

/* CONTENT */

.certificate-content {

  padding: 30px;

}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.certificate-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #162045;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.certificate-actions a:last-child {
  background: #ff9900;
  color: #111827;
}

.certificate-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 32, 69, 0.18);
}

.certificate-content h4 {

  font-size: 28px;
  font-weight: 700;

  margin-bottom: 15px;

}

.certificate-content p {

  font-size: 17px;
  line-height: 1.8;

  color: #666;

}

/* MOBILE */

@media (max-width: 768px) {

  .certificates-section {

    padding: 80px 0;

  }

  .certificate-content h4 {

    font-size: 22px;

  }

  .certificate-card img {

    height: 300px;
    padding: 10px;

  }

  .certificate-pdf-preview {
    height: 360px;
    padding: 10px;
  }

  .certificate-desc {

    font-size: 17px;

  }

}

/* ================= FINAL RESPONSIVE OVERRIDES ================= */
.certificate-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

@media (max-width: 991px) {
  .navbar-collapse {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .nav-logo img {
    max-width: 150px;
    height: auto;
  }

  .product-row {
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: min(100% - 20px, 720px);
  }

  .top-header {
    padding: 18px 0;
  }

  .logo img {
    height: 72px;
  }

  .header-right {
    gap: 16px;
  }

  .info-box i {
    font-size: 28px;
  }

  .info-box span {
    font-size: 14px;
  }

  .info-box p {
    font-size: 15px;
  }

  .btn-inquiry {
    padding: 11px 24px;
    font-size: 16px;
    border-width: 2px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: clamp(440px, 68vh, 560px);
  }

  .facts-row,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-row {
    padding: 28px 18px;
    gap: 24px;
  }

  .product-actions a,
  .btn-main,
  .whatsapp-product-text {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .container {
    max-width: min(100% - 16px, 540px);
  }

  .page-hero {
    min-height: 250px;
  }

  .page-hero-content {
    padding: 44px 8px;
  }

  .page-hero h1,
  .page-hero .page-title {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 460px;
  }

  .custom-caption {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .custom-caption h1 {
    font-size: 24px;
  }

  .custom-caption p {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a,
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .facts-row,
  .hero-stats,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .certificate-card img {
    height: 260px;
  }

  .timeline-item {
    min-width: 0;
    width: 100%;
  }
}

/* ================= COMPACT MOBILE HEADER ================= */
@media (max-width: 768px) {
  .topbar-wrapper {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
    padding: 6px 10px;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    justify-content: center;
    gap: 6px;
    white-space: normal;
  }

  .social-icons {
    display: none;
  }

  .company-text {
    display: none;
  }

  .company-strip,
  .help-text,
  .language-box {
    width: auto;
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
  }

  .top-header {
    padding: 10px 0;
  }

  .top-header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .logo img {
    height: 76px;
    max-width: 38vw;
    object-fit: contain;
  }

  .header-right {
    flex: 0 1 230px;
    width: min(230px, 54vw);
    margin-left: auto;
    padding-right: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .info-box {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(31, 60, 136, 0.1);
    border-radius: 12px;
    background: #fff;
    text-align: left;
  }

  .info-box i {
    flex: 0 0 auto;
    margin: 0;
    font-size: 17px;
  }

  .info-box span {
    display: block;
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0.4px;
  }

  .info-box p {
    max-width: 100%;
    overflow: hidden;
    margin: 1px 0 0;
    color: #334155;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .btn-inquiry {
    margin: 0;
    align-self: flex-end;
    width: min(100%, 210px);
    padding: 10px 18px;
    border-width: 2px;
    border-radius: 999px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, #ff9d00, #ff7a00) border-box;
    border-color: transparent;
    color: #092b72;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 8px 18px rgba(255, 157, 0, 0.18);
  }

  .btn-inquiry:hover {
    background:
      linear-gradient(135deg, #ff9d00, #ff7a00) padding-box,
      linear-gradient(135deg, #ff9d00, #ff7a00) border-box;
    color: #fff;
    box-shadow: 0 10px 22px rgba(255, 157, 0, 0.3);
  }
}

@media (max-width: 420px) {
  .company-strip,
  .help-text,
  .language-box {
    font-size: 11px;
    padding: 7px 9px;
  }

  .logo img {
    height: 64px;
    max-width: 36vw;
  }

  .header-right {
    flex: 0 1 198px;
    width: min(198px, 56vw);
    gap: 6px;
  }

  .info-box {
    padding: 6px;
    gap: 5px;
  }

  .info-box i {
    font-size: 15px;
  }

  .info-box span {
    font-size: 9px;
  }

  .info-box p {
    font-size: 11px;
  }

  .btn-inquiry {
    width: min(100%, 190px);
    padding: 9px 14px;
    font-size: 13px;
  }
}

/* ================= SITE CONSISTENCY PASS ================= */
:root {
  --brand-blue: #24356f;
  --brand-orange: #ff9900;
  --text-dark: #111827;
  --text-muted: #5f6675;
  --surface: #ffffff;
  --soft-border: rgba(17, 24, 39, 0.1);
  --card-radius: 16px;
  --button-radius: 999px;
  --soft-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  --hover-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.section-heading,
.section-heading h2,
.section-heading-box h2,
.gallery-title,
.page-title,
.about-heading,
.product-content h2,
.extra-box h2,
h2 {
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-title,
p.section-title,
.about-subtitle {
  color: var(--brand-orange);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.product-card,
.product-row,
.certificate-card,
.testimonial-card,
.accordion-item,
.description-box,
.application-card {
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
}

.product-card:hover,
.product-row:hover,
.certificate-card:hover,
.testimonial-card:hover,
.application-card:hover {
  box-shadow: var(--hover-shadow);
}

.btn,
.btn-main,
.btn-read,
.btn-warning,
.filter-btn,
.enquiry-btn,
.hero-btn-primary,
.hero-btn-secondary,
.whatsapp-product-text,
.quick-enquiry-btn,
.btn-inquiry {
  border-radius: var(--button-radius);
  font-weight: 700;
  letter-spacing: 0;
}

.product-row {
  border: 1px solid var(--soft-border);
}

.product-content p,
.about-text,
.section-heading p,
.gallery-subtitle,
.footer-col p {
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-col p {
  color: #ffffff;
}

@media (max-width: 991px) {
  .navbar {
    min-height: 64px;
    padding: 8px 0;
  }

  .navbar .container {
    min-height: 48px;
    gap: 12px;
  }

  .nav-logo img {
    width: auto;
    height: 58px;
    max-width: 140px;
    margin: 0;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .navbar-collapse {
    top: calc(100% + 10px);
    left: 8px;
    right: 8px;
    max-height: calc(100vh - 84px);
    padding: 14px;
    border-radius: 18px;
  }

  .navbar-nav {
    gap: 6px;
  }

  .nav-link {
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-heading,
  .section-heading h2,
  .section-heading-box h2,
  .gallery-title,
  .page-title,
  .about-heading,
  .product-content h2,
  .extra-box h2,
  h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .navbar {
    min-height: 58px;
  }

  .nav-logo img {
    height: 50px;
    max-width: 120px;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 76px);
  }
}

/* ================= MOBILE SLIDER CLEANUP ================= */
@media (max-width: 768px) {
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: clamp(340px, 30vw, 430px);
    min-height: 0;
    background: #d8dee7;
  }

  #heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
    background: transparent;
  }

  #heroCarousel .overlay {
    background:
      linear-gradient(0deg, rgba(8, 17, 38, 0.68) 0%, rgba(8, 17, 38, 0.42) 38%, rgba(8, 17, 38, 0.04) 78%),
      linear-gradient(90deg, rgba(8, 17, 38, 0.22), rgba(8, 17, 38, 0.02));
  }

  #heroCarousel .custom-caption {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 18px;
    width: min(92%, 390px);
    transform: none;
    text-align: left;
  }

  #heroCarousel .custom-caption h1 {
    max-width: 100%;
    margin-bottom: 6px;
    font-size: clamp(20px, 5.6vw, 27px);
    line-height: 1.08;
  }

  #heroCarousel .custom-caption p {
    max-width: 100%;
    margin: 0 0 10px;
    font-size: clamp(12px, 3.3vw, 14px);
    line-height: 1.35;
  }

  #heroCarousel .hero-buttons {
    gap: 8px;
    margin-top: 10px;
  }

  #heroCarousel .hero-buttons a,
  #heroCarousel .hero-btn-primary,
  #heroCarousel .hero-btn-secondary {
    width: auto;
    min-width: 118px;
    max-width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }

  #heroCarousel .hero-stats {
    display: none;
  }
}

@media (max-width: 420px) {
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 345px;
  }

  #heroCarousel .carousel-item img {
    min-height: 0;
    max-height: none;
  }

  #heroCarousel .custom-caption {
    bottom: 16px;
    width: calc(100% - 28px);
  }

  #heroCarousel .custom-caption h1 {
    font-size: clamp(19px, 6vw, 24px);
  }

  #heroCarousel .hero-buttons {
    flex-direction: row;
    align-items: center;
  }

  #heroCarousel .hero-buttons a,
  #heroCarousel .hero-btn-primary,
  #heroCarousel .hero-btn-secondary {
    width: auto;
    min-width: 104px;
    padding: 7px 12px;
    font-size: 11px;
  }
}
/* ================= FLOATING CALL BUTTON ================= */

.call-btn{
    position:fixed;

    bottom:95px;
    left:20px;

    width:55px;
    height:55px;

    background:#007bff;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 8px 25px rgba(0,0,0,0.25);

    transition:0.3s ease;
}

/* HOVER */
.call-btn:hover{
    transform:translateY(-5px);
    background:#0062cc;
    color:#fff;
}
/* ===== RESPONSIVE HERO IMAGES ===== */

#heroCarousel picture,
#heroCarousel picture img{
    width:100%;
    height:100%;
    display:block;
}

#heroCarousel picture img{
    object-fit:cover;
    object-position:center;
}
/* FIX CAROUSEL NAVIGATION BUTTON ISSUE */

.carousel-control-prev,
.carousel-control-next{
    z-index:1 !important;
}

.custom-caption{
    z-index:99 !important;
}

.hero-btn-primary,
.hero-btn-secondary{
    position:relative;
    z-index:100 !important;
    
}
/* SMALLER CAROUSEL NAVIGATION AREA */

.carousel-control-prev,
.carousel-control-next{
    width:5% !important;
}

/* OPTIONAL: SMALLER ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    transform:scale(0.7);
}
/* ================= PREMIUM SLIDER ANIMATION ================= */

/* SMOOTH IMAGE ZOOM */
#heroCarousel .carousel-item img{
    transform:scale(1);
    transition:transform 2s ease;
}

/* ACTIVE SLIDE IMAGE */
#heroCarousel .carousel-item.active img{
    transform:scale(1.08);
}

/* TEXT ANIMATION */
.custom-caption h1,
.custom-caption p,
.hero-buttons,
.hero-stats{
    opacity:0;
    transform:translateY(40px);

    transition:
    opacity 1s ease,
    transform 1s ease;
}

/* ACTIVE TEXT */
.carousel-item.active .custom-caption h1,
.carousel-item.active .custom-caption p,
.carousel-item.active .hero-buttons,
.carousel-item.active .hero-stats{
    opacity:1;
    transform:translateY(0);
}

/* DELAYS */
.carousel-item.active .custom-caption h1{
    transition-delay:0.3s;
}

.carousel-item.active .custom-caption p{
    transition-delay:0.6s;
}

.carousel-item.active .hero-buttons{
    transition-delay:0.9s;
}

.carousel-item.active .hero-stats{
    transition-delay:1.2s;
}

/* BUTTON HOVER */
.hero-btn-primary,
.hero-btn-secondary{
    transition:
    all 0.35s ease;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover{
    transform:translateY(-4px);
}
.timeline-item{
    transition:0.35s ease;
}

.timeline-item:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}

/* ================= SEO CROSSLINKS ================= */
.seo-crosslinks {
  padding: 48px 0;
  background: #f7f9fc;
  border-top: 1px solid #e6eaf1;
  border-bottom: 1px solid #e6eaf1;
}

.seo-crosslinks h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 10px;
  text-align: center;
  color: #0f1f4d;
}

.seo-crosslinks p {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
  color: #4f5d75;
  font-size: 17px;
  line-height: 1.6;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-link-card {
  background: #fff;
  border: 1px solid #d9e0eb;
  border-radius: 14px;
  min-height: 98px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #122347;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seo-link-card i {
  color: #f5a300;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.seo-link-card:hover {
  transform: translateY(-4px);
  border-color: #f5a300;
  box-shadow: 0 10px 24px rgba(17, 34, 68, 0.14);
  color: #0b1d42;
}

@media (max-width: 991px) {
  .seo-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .seo-crosslinks {
    padding: 38px 0;
  }

  .seo-crosslinks h2 {
    font-size: 26px;
  }

  .seo-crosslinks p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .seo-links-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .seo-link-card {
    min-height: 82px;
    padding: 16px 14px;
    font-size: 15px;
  }
}

/* ================= MOBILE FOOTER 2-COLUMN OVERRIDE ================= */
@media (max-width: 575px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
    align-items: start;
  }

  .footer-col {
    width: 100%;
    text-align: left;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    text-align: center;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    width: 160px;
    margin: 0 auto 10px;
  }

  .footer-col p {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .footer-col:first-child p,
  .footer-col:last-child p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col ul li,
  .footer-col ul li a {
    font-size: 15px;
    line-height: 1.45;
  }

  .footer-col h3::after {
    left: 0;
    transform: none;
  }

  .footer-col:nth-child(2) h3::after,
  .footer-col:nth-child(3) h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col:first-child h3::after,
  .footer-col:last-child h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
