:root {
  --black: #080809;
  --white: #fff;
  --logo-color: #02adef;
  --logo-bg: grey;
}

body {
  font-family: "Inter", sans-serif;
}

::-moz-selection {
  background-color: black;
  color: #fff;
}

::selection {
  background-color: black;
  color: #fff;
}


ul,
li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;

}

a:focus,
a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 5px;
}

section {
  padding-top: 70px;
  padding-bottom: 70px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}


/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--logo-color);
  border-radius: 6px;
  border: 2px solid white;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}





/* **********************************************************************/
/* **********************************************************************/




/* ===============================
   BASE BUTTON
================================ */
.btn-cover {
  margin-top: 20px;

}

.all-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

/* ===============================
   BUTTON TEXT (SPAN)
================================ */
a.all-btn span {
  position: relative;
  /* anchor for ::before */
  display: inline-block;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid var(--logo-color);
  overflow: hidden;
  /* clips background */
  transition: color 0.3s ease;
  z-index: 1;
}

/* ===============================
   BACKGROUND LAYER (INSIDE SPAN)
================================ */
/* BACKGROUND LAYER */
a.all-btn span::before {
  content: "";
  position: absolute;
  inset: -150%;
  background-color: var(--logo-color);
  transform: rotate(12deg);
  transition: transform 0.45s ease;
  z-index: -1;
}

/* HOVER */
.all-btn:hover span::before {
  transform: rotate(12deg) translateX(-65%);
}

.all-btn:hover span {
  color: var(--logo-color);
}


/* ===============================
   end
================================ */











/* =================================================
   UNIVERSAL SECTION HEADER
================================================= */

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--logo-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 34px;
  }
}











/* **********************************************************************/
/* **********************************************************************/





/* fixed-phone-btnn */
.fixed-phone-btnn,
.fixed-wtsapp-btnn {
  color: white;
  background-color: var(--logo--orange);
  background-color: rgb(44, 107, 178);
  border-radius: var(--border-radius);
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  z-index: 100;
  text-decoration: none;
}

.fixed-wtsapp-btnn {
  bottom: 95px;
  background: #81d742;
  border: 1px solid #81d742;
}

.fixed-phone-btnn i,
.fixed-wtsapp-btnn i {
  font-size: 25px;
}

.fixed-wtsapp-btnn:hover {
  color: #81d742;
  border: 1px solid #81d742;
  background-color: white;
  transition: 0.4s;
}

.fixed-phone-btnn:hover {
  color: rgb(44, 107, 178);
  border: 1px solid rgb(44, 107, 178);
  background-color: white;
  transition: 0.4s;
}













/* **********************************************************************/
/* **********************************************************************/

#header-top {
  background: var(--logo-color);
  background: #fff;
  color: black;
  font-size: 14px;
}

#header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

#header-top a {
  color: #000000;
  color: #000000;
  text-decoration: none;
  margin-left: 6px;
}

#header-top i {
  color: var(--logo-color);
  /* color: #ffffff; */
  font-size: 16px;
  vertical-align: middle;
}

#header-top .phone,
#header-top .email-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

#header-top .phone {
  display: flex;
  align-items: center;
  gap: 4px;
}

#header-top .phone a {
  color: #000000;
  color: #000000;
  text-decoration: none;
}

#header-top .phone .separator {
  color: #000000;
  margin: 0 2px;
}


/* Mobile */
@media (max-width: 768px) {
  #header-top .container {
    flex-direction: column;
    gap: 6px;
  }
}










/* **********************************************************************/
/* ================= HEADER ================= */
/* **********************************************************************/
header {
  background: #2a6c4a;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);

  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

header .container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* logo */
header .logo {
  height: 80%;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 80%;
}

header .nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

header .nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  /* font-weight: bold; */
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}



/* ham  */
header .ham {
  display: none;
}

header .ham i {
  color: var(--logo-color);
  font-size: 20px;
  font-weight: bold;
}





/* product  */
/* Make span look like nav link */
header .nav-toggle {
  color: white;
  cursor: pointer;

  gap: 4px;

  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

/* Arrow */
/* header .nav-toggle i {
  font-size: 16px;
  transition: transform 0.3s ease;
} */

/* Rotate arrow on hover */
/* header .has-dropdown:hover .nav-toggle i {
  transform: rotate(180deg);
} */







/* ================= DROPDOWN ================= */

/* Parent */
header .nav-list li {
  position: relative;
}

/* Arrow icon */
header .nav-list li a i {
  font-size: 16px;
  margin-left: 4px;
}

/* Dropdown menu */
header .dropdown {
  position: absolute;
  top: 100%;
  left: -100px;
  background: #ffffff;
  min-width: 240px;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Dropdown items */
header .dropdown li {
  list-style: none;
}

header .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #0d1b2a;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

header .dropdown li a:hover {
  background: #f1f5f9;
  color: var(--logo-color);
}

/* SHOW ON HOVER */
header .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #2a6c4a;
  z-index: 10000; /* higher than header */
  transition: right 0.4s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* overlay */
#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#menuOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.mobile-menu-header i {
  font-size: 26px;
  cursor: pointer;
}

/* links */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-list li a,
.mobile-toggle {
  display: block;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
}

/* dropdown */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu li a {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* open dropdown */
.mobile-dropdown.active .mobile-submenu {
  display: block;
}

/* ================= MOBILE BREAKPOINT ================= */

@media (max-width: 992px) {
  header nav {
    display: none;
  }

  header .ham {
    display: flex;       /* IMPORTANT */
    align-items: center;
    cursor: pointer;
  }
}













/* **********************************************************************/
/* **********************************************************************/
/* ================= HERO SECTION ================= */

#hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Slides */
#hero .hero-slide {
  height: 70vh;
  /* min-height: 600px; */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* Slide Background Images */
#hero .hero-slide-1 {
  background-image: url("../images/home/banner/banner1.jpg");
}

#hero .hero-slide-2 {
  background-image: url("../images/home/banner/banner2.jpeg");
}

#hero .hero-slide-3 {
  background-image: url("../images/home/banner/banner3.jpg");
}

#hero .hero-slide-4 {
  background-image: url("../images/home/banner/banner4.jpg");
}

/* Overlay */
#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* Content */
#hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

#hero .hero-content h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

#hero .hero-content h1 span {
  font-size: 30px;
}

#hero .hero-content p {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
#hero .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#hero .hero-btns .btn {
  padding: 12px 32px;
  font-size: 16px;
}



/* ================= HERO CONTROLS – CENTER BOTTOM ================= */

#hero .carousel-control-prev,
#hero .carousel-control-next {
  position: absolute;
  bottom: 30px;
  top: auto;
  width: 45px;
  height: 45px;
  opacity: 1;
  z-index: 5;
}

/* Center both buttons as a group */
#hero .carousel-control-prev {
  left: 50%;
  transform: translateX(-55px); /* half of total width + gap */
}

#hero .carousel-control-next {
  left: 50%;
  transform: translateX(15px);
}

/* Icon styling */
#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
  background-size: 60% 60%;
  background-color: var(--logo-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

/* Hover */
#hero .carousel-control-prev:hover .carousel-control-prev-icon,
#hero .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--logo-color);
}














/* **********************************************************************/
/* **********************************************************************/
/* ================= ABOUT ================= */


/* CONTENT */
#about .about-tagline {
  display: inline-block;
  color: var(--logo-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

#about h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

#about .lead {
  font-size: 18px;
  font-weight: 500;
  color: #1b263b;
  margin-bottom: 15px;
}

#about p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* POINTS */
#about .about-points {
  padding-left: 0;
  margin: 25px 0;
  list-style: none;
}

#about .about-points li p {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

#about .about-points li p::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--logo-color);
  font-weight: bold;
}

/* VISUAL */
#about .about-visual {
  position: relative;
  padding-left: 40px;
}

#about .about-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

#about .about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* BADGES */
#about .about-badges {
  position: absolute;
  bottom: -40px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

#about .badge-box {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#about .badge-box h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--logo-color);
  margin-bottom: 5px;
}

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





















/* **********************************************************************/
/* **********************************************************************/
/* ================= WHAT WE DO ================= */
#what-we-do {
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;

  background-color: #000000e3;
  background-image: linear-gradient(rgb(255 255 255 / 15%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 15%) 1px, #ffffff00 1px);
}



/* section-header */
#what-we-do .section-header h2 {
  color: #ffffff;
}

#what-we-do .section-header p {
  color: #b7b7b7;
}


#what-we-do .what-we-do-individual-imgs {
  height: 300px;
  width: 100%;
  display: inline-block;
}

#what-we-do .what-we-do-individual-imgs img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#what-we-do .what-we-do-individual-imgs h5 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding-top: 20px;
}
























/* **********************************************************************/
/* **********************************************************************/
/* ================= INDUSTRIES ================= */
#industries {
  background:
    linear-gradient(rgba(247, 249, 251, 0.96),
      rgba(247, 249, 251, 0.96)),
    url("../images/industry-we-serve/industry-we-serve-bg.jpg");
  background-size: cover;
  background-position: center;
}


/* CARD */
#industries .industry-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #e5e9f0;
}

#industries .industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
#industries .industry-card i {
  font-size: 38px;
  color: var(--logo-color);
  margin-bottom: 15px;
  display: inline-block;
}

/* TITLE */
#industries .industry-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0d1b2a;
  margin: 0;
}






















/* **********************************************************************/
/* **********************************************************************/
/* ================= PRODUCTS ================= */
#products {
  background: rgba(255, 255, 255, 0.92);
}



.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}




/* CARD */
#products .product-card {
  background: #f7f9fb;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #e5e9f0;
  cursor: pointer;
}

#products .product-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
#products .product-img {
  width: 100%;
  height: 290px;
  overflow: hidden;
}

#products .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#products .product-card:hover img {
  transform: scale(1.08);
}

/* TITLE */
#products .product-card h5 {
  padding: 20px 10px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #0d1b2a;
  margin: 0;
}










/* **********************************************************************/
/* ================= STOCKIEST ================= */
/* **********************************************************************/

#stockiest {
  background:
    linear-gradient(rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.92)),
    url("https://images.unsplash.com/photo-1581091870627-3f94c3f5d32b?q=80&w=1200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;

  background-size: 40px 40px;
  background-color: #000000e3;
  background-image: linear-gradient(rgb(255 255 255 / 15%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 15%) 1px, #ffffff00 1px);
}

/* Section Header */
#stockiest .section-header h2 {
  color: #ffffff;
}

#stockiest .section-header p {
  color: #cfd8dc;
}

/* ================= CARD BASE ================= */

.stockiest-card {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stockiest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.4);
}

/* ================= BACKGROUNDS ================= */

.stockiest-card.sheets-plates {
  background-image: url("../images/home/stockiest/titanium-sheets-and-plates.jpg");
}

.stockiest-card.round-bars {
  background-image: url("../images/home/stockiest/aluminium-bronze-rod.jpg");
}

/* ================= OVERLAY ================= */

.stockiest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.75));
  z-index: 1;
  transition: all 0.35s ease;
}

.stockiest-card:hover .stockiest-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.85));
}

/* ================= CONTENT ================= */

.stockiest-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 30px;
  max-width: 90%;
}

/* ICON */
.stockiest-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stockiest-icon i {
  font-size: 34px;
  color: var(--logo-color);
}

/* TEXT */
.stockiest-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.stockiest-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 25px;
}





















/* **********************************************************************/
/* **********************************************************************/


/* ================= FOOTER ================= */
#footer {
  background: #0d1b2a;
  background-image: url(../images/footer/footer-bg.jpg);
  color: #cfd8dc;
  padding: 80px 0 30px;
  font-size: 15px;
}



/* HEADINGS */
#footer h4,
#footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ABOUT */
#footer .footer-about p {
  line-height: 1.8;
  margin: 0;
}

/* LINKS */
#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul li {
  margin-bottom: 10px;
}

#footer .footer-links ul li a {
  color: #cfd8dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-links ul li a:hover {
  color: var(--logo-color);
}

/* CONTACT */
#footer .footer-contact p {
  margin-bottom: 15px;
  line-height: 1.6;
}

#footer .footer-contact i {
  color: var(--logo-color);
  margin-right: 8px;
}

#footer .footer-contact a {
  color: #cfd8dc;
  text-decoration: none;
}

#footer .footer-contact a:hover {
  color: var(--logo-color);
}

/* SOCIAL */
#footer .social-icons {
  display: flex;
  gap: 15px;
}

#footer .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

#footer .social-icons a:hover {
  background: var(--logo-color);
  transform: translateY(-3px);
}

/* BOTTOM */
#footer .copyrights-body {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #9fb3c8;
}
#footer .copyrights-body a{
  color: white;
}














.other-pages-hero {
  height: 350px !important;
}





/* **********************************************************************/
/* ================= ABOUT PAGE  ================= */
/* **********************************************************************/

#about-page {
  background: #ffffff;
}

/* HEADER */
#about-page .about-page-header {
  max-width: 700px;
  margin-bottom: 0px;
}

#about-page .about-tagline {
  display: inline-block;
  color: var(--logo-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#about-page .about-page-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.25;
}

/* TEXT */
#about-page .about-page-text {
  max-width: 540px;
}

#about-page .lead {
  font-size: 18px;
  font-weight: 500;
  color: #1b263b;
  margin-bottom: 20px;
}

#about-page p {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* TRUST STRIP */
#about-page .about-trust-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 35px 0 40px;
}

#about-page .about-trust-strip div {
  display: flex;
  flex-direction: column;
}

#about-page .about-trust-strip strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--logo-color);
}

#about-page .about-trust-strip span {
  font-size: 13px;
  color: #666;
}

/* IMAGE */
#about-page .about-page-images {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

#about-page .about-page-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


















/* **********************************************************************/
/* ================= individual-product-page ================= */
/* **********************************************************************/
#individual-product-page {
  background-size: 40px 40px;
  background-color: #000000e3;
  background-image: linear-gradient(rgb(255 255 255 / 15%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 15%) 1px, #ffffff00 1px);
}
#individual-product-page .section-header h2 {
  color: white;
}
#individual-product-page .individual-product-page-img {
  max-width: 500px;
  margin: auto;
}
#individual-product-page .individual-product-page-img img{
  width: 100%;
}




























/* **********************************************************************/
/* ================= stockiest PRODUCT PAGE ================= */
/* **********************************************************************/

#product-single .product-single-content {
  max-width: 560px;
}

#product-single .lead {
  font-size: 18px;
  font-weight: 500;
  color: #1b263b;
  margin-bottom: 18px;
}

#product-single p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* IMAGE */
#product-single .product-single-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

#product-single .product-single-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* SUB HEADING */
#product-single .sub-heading {
  font-size: 24px;
  font-weight: 700;
  color: #0d1b2a;
  margin: 28px 0 16px;
}

/* LIST */
#product-single .feature-list {
  list-style: none;
  padding-left: 0;
}

#product-single .feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

#product-single .feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--logo-color);
  font-weight: bold;
}



.table {
  border: 1px solid #00000080;
}















/* **********************************************************************/
/* ================= CONTACT PAGE ================= */
/* **********************************************************************/

.contact-us-page-bg .hero-content{
  max-width: 900px !important;
}

#contact .contact-info-wrapper h4,
#contact .contact-form-wrapper h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
}

#contact .contact-info-block {
  margin-bottom: 22px;
}


/* ================= CONTACT ICONS ================= */
#contact .contact-info-block.with-icon {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#contact .contact-info-block.with-icon i {
  font-size: 22px;
  color: var(--logo-color);
  margin-top: 4px;
  flex-shrink: 0;
}


#contact .contact-info-block.with-icon h6 {
  margin-bottom: 6px;
}

#contact .contact-info-block h6 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--logo-color);
  margin-bottom: 6px;
}

#contact .contact-info-block p,
#contact .contact-info-block a {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  text-decoration: none;
  font-weight: bold;
}

#contact .contact-info-block a:hover {
  color: var(--logo-color);
}

/* FORM */
#contact .contact-form-wrapper {
  background: #2a6c4a;
  padding: 45px;
  border-radius: 18px;
  border: 1px solid #e5e9f0;
}

#contact .form-control {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #dce3ea;
}

#contact .form-control:focus {
  border-color: var(--logo-color);
  box-shadow: none;
}

/* ===============================
   FORM BUTTON FIX (WORKS FOR <button>)
================================ */

#contact .all-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-block;
}

/* BUTTON TEXT */
#contact .all-btn span {
  position: relative;
  display: inline-block;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid var(--logo-color);
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

/* SLANTED BACKGROUND */
#contact .all-btn span::before {
  content: "";
  position: absolute;
  inset: -150%;
  background-color: var(--logo-color);
  transform: rotate(12deg);
  transition: transform 0.45s ease;
  z-index: -1;
}

/* HOVER EFFECT */
#contact .all-btn:hover span::before {
  transform: rotate(12deg) translateX(-65%);
}

#contact .all-btn:hover span {
  color: var(--logo-color);
}



#contact-map {
  padding: 0;
}


