    
    body{
        padding: 0px;
        margin: auto;
            font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 16px;

    }
    
    /* Top Contact Bar */
    .top-bar {
      background: #fff;
      font-size: 14px;
      border-bottom: 1px solid #eee;
      padding: 6px 0;
      text-align: center;
    }
    .top-bar a {
      color: #000;
      margin: 0 10px;
      text-decoration: none;
    }


    /* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px; 
    overflow: hidden;
    z-index: 0;
  }

  
/* Slider Wrapper for smooth transitions */
.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Smooth slide transition */
}

/* Individual Slide Styling */
.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; 
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}

.slide-content {
    position: relative;
   
    max-width: 800px; 
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 48px; 
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); 
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


.slide-content .btn{
  background: red;
  border: red;
  color: white;
}

/* Contact Us Button */
.contact-us-btn {
      background-color: #c31432 ;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block; 
    text-transform: uppercase;
}

.contact-us-btn:hover {
    background-color: #ffffff; 
      color: rgb(3, 98, 36);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); 
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
   
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}




/* Responsive Adjustments (Example) */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .contact-us-btn {
        padding: 12px 25px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slider-arrow {
        padding: 10px;
        font-size: 20px;
        width: 40px;
        height: 40px;
    }
}




/* Keyframe for fading in and moving up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframe for zooming in */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Keyframe for a subtle background zoom effect */
@keyframes backgroundZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}


/* Apply animations to elements within the active slide */
.slide-content .animate-text,
.slide-content .animate-btn {
    opacity: 0;
}

/* When a slide is active, trigger animations */
.slide.active .slide-content .animate-text {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide.active .slide-content .animate-btn {
    animation: zoomIn 0.6s ease-out forwards;
}

/* Animation delays for sequential appearance */
.slide.active .slide-content .delay-1 {
    animation-delay: 0.3s;
}

.slide.active .slide-content .delay-2 {
    animation-delay: 0.6s;
}


.slide.active {
    animation: backgroundZoom 8s ease-in-out forwards; 
    background-size: cover; 
    background-position: center; 
}


.slide:not(.active) {
    animation: none; 
    transform: scale(1); 
}

.slider-wrapper {
    transition: transform 0.5s ease-in-out;
}

    /* Middle Header */
    .middle-header {
      background: #fff;
      padding: 12px 20px;
      display: flex;
      width: 85%;
      margin: auto;
      align-items: center;
      justify-content: space-between;
    }
    .middle-header img {
      height: 80px;
      border-radius: 10PX;
    }
    .middle-header .center-box {
      text-align: center;
      flex-grow: 1;
    }
    .middle-header .center-box span {
      font-size: 47px;
      font-weight:bold ;
      margin-left: 10px;
    }
    .middle-header .social a {
      margin: 0 6px;
      color: #dc3545;
      font-size: 18px;
    }
    .search-box {
      border: 1px solid #ccc;
      padding: 5px 10px;
    }

    /* Navbar */
    .navbar {
      background: #fff !important;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10000; /* dropdown ke liye safe zone */
    }
    .navbar-nav .nav-link {
      color: #000 !important;
      font-weight: 500;
      padding: 10px 15px;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      border-bottom: 2px solid #000;
    }
    .dropdown-menu {
      width: 400px;
      padding: 20px;
      columns: 1;
    }

    .dropdown-menu {
  z-index: 9999 !important; /* sabse upar dikhane ke liye */
  position: absolute !important;
}
    @media (max-width: 768px) {
.middle-header .center-box span {
  font-size: 29px;
}
    }


    @media (max-width: 768px) {
      .middle-header {
        flex-direction: column;
        text-align: center;
      }
      .search-box {
        width: 100%;
      }
      .dropdown-menu {
        width: 100%;
        columns: 1;
      }
    }

    .dropdown-menu li{
      list-style: none;
      border-bottom: 1px solid rgb(228, 228, 228);
border-style:dashed ;
      padding-top: 10px;
      
      border-left: none;
      border-top: none;
      border-right: none;
    }
      .dropdown-menu li a{
      text-decoration: none;
      color: #000;
      
    }

.dropdown-menu li a:hover{
      color: #ce0000;
      cursor: pointer;
      
    }

	.whatsapp-float {
    position: fixed; 
    background: #10b418; 
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
    border-radius: 50%; 
    text-align: center;  
    bottom: 62px; 
    color: #fff; 
    z-index: 10000;
  }
	.whatsapp-float a {
    color: #fff; 
    width: 100%; 
    height: 100%; 
    display: block; 
    font-size:25px;
  }
	.whatsapp-float.left {left: 35px;}
	.whatsapp-float.right {right: 35px;}

    /* Hero Section */
   .steel-grade-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    color: #1a1a1a;
    overflow: hidden;
  }

  .steel-grade-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
      
  
  }

  .steel-grade-section .container {
    position: relative;
     
  }

  .steel-grade-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1e1e40;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .steel-grade-section p {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 10px 0;
  }

  .steel-grade-section em {
    font-style: italic;
    font-weight: bold;
    color: #002b6b;
  }

  .steel-grade-section a {
    color: #002b6b;
    font-weight: bold;
    text-decoration: underline;
  }

  .steel-grade-section .quote-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    border: 2px solid #002b6b;
    border-radius: 25px;
    background: transparent;
    color: #002b6b;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .steel-grade-section .quote-btn:hover {
    background: #002b6b;
    color: #fff;
  }
  /*product*/
  .products .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}
.products .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.products img {
 /* height: 220px;*/
  object-fit: contain;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.products .btn {
  border-radius: 6px;
  font-weight: 600;
}
.card-body a{
  text-decoration: none;
  color: red;
}
/*end*/


/*about*/

.quality-section {
  background-color: #dc3545; /* same orange background */
}
.quality-section h2 {
  font-size: 26px;
  line-height: 1.4;
}
.quality-section p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.quality-section img {
  max-width: 100%;
  border: 6px solid #fff;
}

/*end*/

/*testimonials*/

.testimonials {
  background: #fff;
}
.testimonials h2 {
  font-size: 32px;
  color: #002b6b;
  letter-spacing: 1px;
}
.testimonial-card {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}
.testimonial-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 64, 128, 0.75); /* blue overlay */
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.testimonial-card h4 {
  font-weight: bold;
  margin-bottom: 15px;
}
.testimonial-card p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card .quote {
  display: block;
  font-size: 28px;
  color: #ff4d4d;
  margin-top: 15px;
}

/*end*/

/*Brochure*/

.steel-section {
  position: relative;
  background: url('../img/bg-2.jpg') no-repeat center center/cover;
  padding: 120px 20px;
  text-align: center;
  color: white;
  font-family: 'Nunito', sans-serif;
  overflow: hidden;
  z-index: 0;
}

.steel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.76);
  z-index: -1; 
}

.steel-section h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.btn-download {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.btn-download:hover {
  background-color: white;
  color: black;
}
/*end*/

/*form*/


   .contact-section {
  padding: 60px 20px;
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* for responsiveness */
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p,
.contact-info a {
  margin: 5px 0;
  font-size: 15px;
  color: #444;
  text-decoration: none;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.submit-btn {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #e56000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #c94e00;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
   
  .form-row {
    flex-direction: column;
  }
}
}
/*end*/
/*faq*/



     .faq-item {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
  }
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
  }
  .faq-question {
    font-size: 18px;
    color: #002b6b;
  }
  .faq-icon {
    font-size: 20px;
    color: #e63946;
    transition: transform 0.3s ease;
  }
  .faq-answer {
    display: none;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    padding-top: 10px;
  }
  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }
  .faq-item.active .faq-icon {
    transform: rotate(45deg); /* '+' ko '×' bana dega */
  }
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-5px);}
    to {opacity: 1; transform: translateY(0);}
  }





  
/*end*/

/*inquiry*/
 .inquiry-float {
      position: fixed;
      bottom: 90px;
      /* WhatsApp button se thoda upar */
      right: 20px;
      /* ab button right side aa jayega */
      z-index: 10000;
    }

    .inquiry-float .btn {
      padding: 10px 18px;
      border-radius: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    /*end*/


    /*about-us*/
.about-banner {
  position: relative;
background: url('../img/about_us.jpg') no-repeat center center/cover; 
  height: 200px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.5); 
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-subtitle {
  color: #ddd;
  font-size: 20px;
  letter-spacing: 1px;
}


  .about-section {
  background: #fff;
  color: #222;
  line-height: 1.8;
}

.about-section h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 17px;
  margin-bottom: 15px;
  text-align: justify;
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

.product-card button {
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 600;
}


.company-facts {
  background: #f9f9f9;
}

.company-facts h2 {
  font-weight: 700;
  color: #222;
}

.company-facts table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.company-facts th {
  background: #dc3545;
  color: #fff;
  width: 30%;
  font-weight: 600;
  vertical-align: middle;
}

.company-facts td {
  color: #333;
  font-size: 15px;
}
/*end*/

/*product */
.round-bars-section {
  position: relative;
  background: url('../img/m-bg.jpg') no-repeat center center/cover ;
   }
.round-bars-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(218, 218, 218, 0.6); /* overlay dark effect */
}
.round-bars-section h2 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  z-index: 2;
}
.round-bars-section p {
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.image-box {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.enquiry-btn {
  position: absolute;
  bottom: -25px;
  right: 109px;
  background: #e85c0d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.enquiry-btn:hover {
  background: #c94b0c;
}


.sizes-round-bars {
  background: #dc3545; 
  color: #fff;
  margin-bottom: 30px;
}

.sizes-round-bars .section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.sizes-round-bars .subtitle {
  font-size: 18px;
}

.sizes-round-bars .sizes-list span {
  font-size: 40px;
  font-weight: bold;
  margin-right: 20px;
  display: inline-block;
}

.sizes-round-bars .description {
  font-size: 18px;
}

.sizes-round-bars .btn {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
}

/* Image Box with Border */
.image-box {
  background: #fff;     
  padding: 8px;            
  display: inline-block;
  border-radius: 5px;      
}

.image-box img {
  border-radius: 5px;
  max-width: 100%;
}


.uses-ms-pipes {
  background: #fff;
  
  color: #333;
}

.uses-ms-pipes .section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c31432;
}

.uses-ms-pipes .description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.uses-list {
  list-style-type: disc; /* bullets */
  padding-left: 20px;
  font-size: 18px;
  margin-bottom: 20px;
}

.uses-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
}


.image-slider {
  background: #fff;
}

.swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.swiper-button-next, .swiper-button-prev{
  color: red !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
    color: red !important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
    color: red !important;
}

/*end*/

/*catagory*/

.uses-round-bars {
  background: #fff;
  color: #333;
}

.uses-round-bars .section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #002060; /* Dark Blue like screenshot */
}

.uses-round-bars .description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/*end*/

/*footer*/
 .footer-link {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
      transition: 0.3s;
    }

    .footer-link:hover {
      color: #fff;
      transform: translateX(5px);
    }

    .footer .btn-outline-light:hover {
      background-color: #fff;
      color: #000;
    }

    .intl-tel-input .country-list {color:#333 !important}
