body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #343a40; /* dark grey */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #eae6e6;
}

p {
    font-size: 16px;
    margin-bottom: 1rem;
}

.custom-navbar {
    background-color: #1A3C6D;
}

.navbar-brand img {
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* .navbar-brand:hover img {
    transform: scale(1.05);
} */

.nav-link, .navbar-text {
    color: #FFFFFF !important;
    font-weight: 400;
}

.nav-link:hover {
    color: #FFC107 !important;
}

.custom-heading {
    font-weight: 700;
    color: #FFFFFF;
}

#hero {
    background: url('Images/steel2.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(26, 60, 109, 0.5); /* #1A3C6D overlay */
    z-index: 0;
}

#hero h1, #hero h2 {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.btn-gradient {
    background: linear-gradient(to right, #FFC107, #FF9800);
    color: #000;
    border: none;
    transition: 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #FF9800, #FFC107);
    color: #fff;
}

.z-1 {
    z-index: 1;
}

/* Why Us Section CSS */

.card-title {
  font-size: 1.1rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.product-card {
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.contact-details .details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    font-size: 1.5rem;
    color: #1A3C6D;
    margin-right: 10px;
}

.contact-details .topic {
    font-weight: bold;
    color: #1A3C6D;
}

.contact-details a {
    text-decoration: none;
    color: inherit;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    color: #FFC107;
}

.social-links i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.footer-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Optional: makes logo white if it's dark */
}

/* Product Section CSS */

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.2rem;
}

.card-title {
  color: #1A3C6D;
}

/* Contact Section CSS */
.body4{
    min-height: 100vh;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .input-box input::placeholder {
    color: white;
}
.form-group textarea::placeholder {
  color: white;
}
  .contact-container{
    width: 85%;
    background: #ffffff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 8px 8px 16px #2e2e36;
  }
  .contact-container .contact-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact-container .contact-content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .contact-content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f8f8;
  }
  .contact-content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .contact-content .left-side .details i{
    font-size: 30px;
    color: #000000;
    margin-bottom: 10px;
  }
  .contact-content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .contact-content .left-side .details .text-one,
  .contact-content .left-side .details .text-two{
    font-size: 14px;
    color: #000000;
  }
  .contact-container .contact-content .right-side{
    width: 75%;
    margin-left: 75px;
  }
  .contact-content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: #2c4964;
  }
  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background:#1A3C6D;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 6px;
  }
  .right-side .button{
    display: inline-block;
    margin-top: 12px;
  }
  .right-side .button input[type="button"]{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #717175;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button input[type="button"]:hover{
    background: #1A3C6D;
  }
  
  @media (max-width: 720px) {
    .contact-container{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .contact-container .contact-content .right-side{
     width: 75%;
     margin-left: 55px;
  }
  }
  @media (max-width: 720px) {
    .contact-container{
      margin: 40px 0;
      height: 100%;
    }
    .contact-container .contact-content{
      flex-direction: column-reverse;
    }
   .contact-container .contact-content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .contact-container .contact-content .left-side::before{
     display: none;
   }
   .contact-container .contact-content .right-side{
     width: 100%;
     margin-left: 0;
   }
  }
  .custom-heading {
    font-size: 24px; 
    font-weight: bold;
    color: #ffffff; 
    text-transform: uppercase;
    margin-right: 20px; 
    text-shadow: 2px 2px 4px rgba(3, 3, 3, 3.5);
}
.img-fluid{
  height: 60%;
}
.card1 {
  border: none; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: transform 0.1s;
}
.card1:hover {
  transform: scale(1.02); 
}