body {
    font-family: Arial, sans-serif;
}

/* NAVBAR */
/*.main-navbar {
    background: linear-gradient(to right, #0b2a4a, #0f3d66);
    position: sticky;
    top: 0;
    z-index: 999;
}*/

.main-navbar {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid #0f3d66;
    border-top: 3px solid #0f3d66;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}
.navbar-nav .nav-link {
    color: #f58220;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

/* Hover same as active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: #f58220;
    color: #fff;
}
.navbar-toggler{
    background-color: #f58220;
}

.logo-box {
    background: #f57c00;
    padding: 6px 10px;
    margin-right: 8px;
    border-radius: 4px;
}
.home-link {
    background: #f57c00;
    border-radius: 4px;
    padding: 6px 12px;
}

/* HERO SLIDER */
.hero-slider {
    height: 85vh;
    position: relative;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item {
    background-size: cover;
    background-position: center;
}

.hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-slider .carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.hero-slider h1 {
    font-weight: bold;
    font-size: 42px;
}

.hero-slider p {
    font-size: 18px;
}

/* QUICK ENQUIRY FIXED */
.quick-enquiry {
    position: absolute;
    right: 0px;
    top: 162px;
    width: 250px;
    background: #0f3d66;
    padding: 15px;
    border-radius: 6px;
    z-index: 10;
}

/* Close button */
.qe-close {
    position: absolute;
    top: 5px;
    right: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.qe-close:hover {
    color: #f58220;
}

.quick-enquiry h5 {
    color: #fff;
    margin-bottom: 10px;
}

/* FEATURED PRODUCTS SECTION */
.featured-products-section {
    position: relative;
    padding: 40px 0;
    background: url("../images/bg-steel.jpg") center/cover no-repeat;
}

.overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
  margin-top: 25px;
}

/* Orange underline */
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #f58220;
  border-radius: 2px;
}


/* BANNER */
.page-banner {
  background: url('../images/bg-steel.jpg') center/cover;
  padding: 15px 0;
  color: #fff;
  text-align: center;
  border-bottom: 3px solid #0f3d66; /* your brand color */
}

/* CATEGORY */
.category-box {
  border: 1px solid #e5e5e5;
  padding: 15px;
  margin-top: 15px;
  border-radius: 6px;
  background: #fff;
}

.category-box h5{
  font-weight: 600;
  margin-bottom: 12px;
}

.category-box ul{
  list-style: none;        /* ✅ remove dots */
  padding: 0;
  margin: 0;
}

.category-box ul li {
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 6px;
  transition: 0.3s;
}

.category-box ul li a{
  text-decoration: none;
  color: #333;
  display: block;
  font-size: 14px;
}

.category-box ul li:hover{
  background: #f7f7f7;
}

.category-box ul li.active {
  background: #f2f2f2;
  border-left: 4px solid #f58220;
}

/* PRODUCT CARD */
.product-card-p{
  border:1px solid #eee;
  padding:12px;
  border-radius:6px;
  text-align:center;
  transition:0.3s;
  background:#fff;
}

.product-card-p:hover{
  box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.product-card-p img{
  max-width:100%;
  height:140px;
  object-fit:contain;
  margin-bottom:10px;
}

.btn-orange {
  background: #f58220;
  color: #fff;
  border: 2px solid transparent;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: #fff;
  color: #f58220;
  border-color: #f58220;
}


/* PRODUCT CARD */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.product-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.product-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(11,42,74,0.9);
    color: #fff;
    text-align: center;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
}

.product-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  transition: 0.3s;
}

.product-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.view-link {
  color: #f58220;
  font-weight: 500;
  text-decoration: none;
}

.certifications img {
  height: 50px;
  margin-right: 10px;
}

/* LATEST NEWS */
.latest-news {
    padding-left: 20px;
}

.latest-news h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.latest-news h6 {
    color: #f57c00;
    font-weight: 600;
    margin-bottom: 8px;
}

.latest-news p {
    font-size: 14px;
    color: #333;
}

.read-more {
    color: #f57c00;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.map-box iframe {
  border-radius: 6px;
}

.quick-enquiry {
  background: #0c2b4d;
  padding: 20px;
  border-radius: 6px;
  color: #fff;
}

.quick-enquiry h5 {
  margin-bottom: 15px;
}

.message-box {
  background: #0c2b4d;
  padding: 25px;
  border-radius: 6px;
  color: #fff;
}

.message-box input,
.message-box textarea,
.quick-enquiry input,
.quick-enquiry textarea {
  border-radius: 4px;
}

/* FOOTER */
.footer {
    background: #0b2a4a;
    color: #fff;
    padding: 50px 0 20px;
}
/*.footer {
    background: #fff;
    color: #f58220;
    padding: 50px 0 20px;
    z-index: 999;
    border-top: 3px solid #0f3d66; 
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}*/
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 6px;
}

.footer h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f58220;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #f57c00;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 16px;
}

.social-icons a:hover {
    background: #fff;
    color: #0b2a4a;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}

.developed-by a {
    color: #f57c00;
    text-decoration: none;
}

.developed-by a:hover {
    text-decoration: underline;
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 80px; /* Adjust as needed */
    z-index: 9999; /* Ensure it's on top of other content */
}
#whatsapp-button a {
    display: inline-block;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#whatsapp-button a:hover {
    transform: scale(1.1);
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 10px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: #f58220; /* Bootstrap success green */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #0f3d66;
    transform: translateY(-3px);
}


