:root {
  --primary: #0b3d5c;
  --secondary: #ff9800;
  --dark: #071c2c;
  --light: #f5f7fa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}
.text-justify{
    text-align: justify;
}

.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
}

.top-social {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  transition: 0.3s;
}

.top-social:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.navbar {
  padding: 18px 0;
}

.logo {
  max-width: 200px;
}
.navbar-nav .nav-link {
  position: relative;
  color: #222;
  font-weight: 600;
  margin-left: 18px;
  padding-bottom: 10px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 50px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar {
  overflow: visible !important;
}

.navbar-nav {
  overflow: visible;
}

.dropdown {
  overflow: visible;
}
.dropdown-menu {
  border-radius: 14px;
  padding: 12px 0;
  min-width: 240px;
  margin-top: 18px;
}

.dropdown-item {
  padding: 12px 22px;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: rgba(255, 152, 0, 0.1);
  color: var(--secondary);
  padding-left: 28px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: 0.15rem;
  content: "";
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
}

.dropdown-toggle::after {
  display: none !important;
}

.small-dropdown-icon {
  font-size: 12px;
  margin-top: 2px;
}

/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {
  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0;
    border: none;
    border-radius: 14px;
    pointer-events: none;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-1 {
  background-image: url("../images/slider-1.jpg");
}

.hero-bg-2 {
  background-image: url("../images/slider-2.jpg");
}

.hero-bg-3 {
  background-image: url("../images/slider-3.jpg");
}
.hero-bg-4 {
  background-image: url("../images/slider-4.jpg");
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 20px;
  max-width: 650px;
  margin-bottom: 35px;
}

.carousel-indicators {
  bottom: 40px;
}

.carousel-indicators button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  margin: 0 8px !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    min-height: 85vh;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
.btn-warning {
  background: var(--secondary);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-warning:hover {
  background: #e68900;
  color: #fff;
}

.section-tag {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title {
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
}

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.services-section {
  background: var(--light);
}


.service-card:hover {
  transform: translateY(-10px);
}
.service-top-text{
    max-width:900px;
    margin:auto;
    margin-top:20px;
    color:#666;
    line-height:1.8;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-image{
    height:240px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.1);
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin:25px 25px 15px;
    color:var(--primary);
}

.service-card p{
    margin:0 25px 30px;
    color:#666;
    line-height:1.7;
}
.service-card i {
  width: 80px;
  height: 80px;
  background: rgba(255, 152, 0, 0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 34px;
  margin-bottom: 25px;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}



.quote-section {
  background: #fff;
}

.quote-box {
  background: #fff;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
  height: 58px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding-left: 20px;
  box-shadow: none !important;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.footer-section{
    background:#071c2c;
    padding:90px 0 0;
    color:#cfd6dc;
    position:relative;
    overflow:hidden;
}

.footer-logo{
    max-width:220px;
    margin-bottom:25px;
}

.footer-about p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:30px;
}

.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#ff7a00;
    transform:translateY(-4px);
}

.footer-widget h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
}

.footer-widget h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:3px;
    background:#ff7a00;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:5px;
}

.footer-links a{
    color:#cfd6dc;
    transition:.3s;
    text-decoration:none;
    font-size:15px;
}

.footer-links a:hover{
    color:#ff7a00;
    padding-left:6px;
}



.office-item{
    border-bottom:1px solid rgba(255,255,255,.08);
    padding-bottom:18px;
}

.office-item h5{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:14px;
}

.office-item h5 span{
    color:#ff7a00;
}

.office-item p{
    margin-bottom:10px;
    line-height:1.7;
    font-size:14px;
    color:#cfd6dc;
}

.footer-bottom {
    margin-top: 0px;
    padding: 20px 0 20px;
    border-top: 1px solid #6f6f6f;
}

.copyright{
    margin:0;
    font-size:15px;
}

.footer-bottom-links{
    display:flex;
    justify-content:flex-end;
    gap:25px;
}

.footer-bottom-links a{
    color:#cfd6dc;
    text-decoration:none;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#ff7a00;
}

/* TABLET */

@media(max-width:991px){

    .footer-office-list{
        grid-template-columns:1fr;
    }

    .footer-widget{
        margin-top:10px;
    }
}

/* MOBILE */

@media(max-width:767px){

    .footer-section{
        padding-top:70px;
    }

    .footer-bottom-links{
        justify-content:flex-start;
        margin-top:12px;
        flex-wrap:wrap;
        gap:15px;
    }

    .footer-logo{
        max-width:180px;
    }

    .footer-widget h4{
        font-size:22px;
    }
}

hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.back-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.back-top.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 34px;
  }

  .quote-box {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .quote-box {
    padding: 30px 20px;
  }

  .logo {
    font-size: 28px;
  }

  .navbar {
    padding: 12px 0;
  }
}


.why-choose-modern{
    position:relative;
    overflow:hidden;
}

.why-image{
    height:100%;
}

.why-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.why-content-box{
    background:#f3f3f3;
    padding:40px 30px;
    max-width:760px;
    margin-left:-120px;
    position:relative;
    z-index:2;
}

.why-title{
    font-size:32px;
    font-weight:700;
    color:#001b5e;
    margin-bottom:50px;
    line-height:1.1;
}

.why-title span{
    color:#ff7a00;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:30px;
    margin-bottom:45px;
}

.why-icon{
    min-width:42px;
    width:42px;
    height:42px;
    background:#ff7a00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
}

.why-text h4{
    font-size:22px;
    font-weight:700;
    color:#001b5e;
    margin-bottom:12px;
}

.why-text p{
    font-size:14px;
    line-height:1.8;
    color:#222;
    margin:0;
}

/* TABLET */

@media(max-width:1199px){

    .why-content-box{
        margin-left:0;
        max-width:100%;
    }

    .why-title{
        font-size:50px;
    }

    .why-text h4{
        font-size:32px;
    }

    .why-text p{
        font-size:18px;
    }
}

/* MOBILE */

@media(max-width:767px){



    .why-content-box{
        padding:30px 15px;
    }

    .why-title{
        font-size:26px;
        margin-bottom:35px;
    }

    .why-item{
        gap:18px;
        margin-bottom:35px;
    }

    .why-icon{
        min-width:35px;
        width:35px;
        height:35px;
        font-size:20px;
    }

    .why-text h4{
        font-size:20px;
    }

    .why-text p{
        font-size:14px;
        line-height:1.7;
    }
}

/**/
.page-banner{
    position:relative;
    overflow:hidden;
    min-height:420px;
    display:flex;
    align-items:center;
}

.page-banner-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.banner-title{
    font-size:72px;
    font-weight:700;
}

.breadcrumb-wrap{
    display:flex;
    gap:12px;
    align-items:center;
}

.breadcrumb-wrap a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-wrap span{
    color:#fff;
}

@media(max-width:768px){

    .page-banner{
        min-height:280px;
    }

    .banner-title{
        font-size:42px;
    }

}

/**/
.contact-section{
    background:#f8f9fa;
}

.contact-form-box,
.office-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
}

.office-badge{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
}

.office-card h3{
    font-size:26px;
    font-weight:700;
    color:#0b3d5c;
    margin-bottom:20px;
}

.office-card p{
    display:flex;
    gap:12px;
    line-height:1.8;
    color:#555;
    margin-bottom:18px;
}

.office-card i{
    color:#ff7a00;
    margin-top:6px;
}

.office-card:hover{
    transform:translateY(-8px);
    transition:.35s;
}

.contact-form-box{
    border-top:5px solid #ff7a00;
}

.form-control{
    min-height:55px;
    border-radius:10px;
}

textarea.form-control{
    min-height:180px;
}


/**/
.map-section{
    background:#f8f9fa;
}

.map-address-card{
    background:#071c2c;
    color:#fff;
    border-radius:18px;
    padding:35px;
    height:100%;
}

.map-address-card h3{
    font-size:28px;
    font-weight:700;
    margin:20px 0 30px;
}

.office-badge{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    text-transform:uppercase;
}

.address-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    line-height:1.8;
}

.address-item i{
    color:#ff7a00;
    font-size:20px;
    margin-top:5px;
}

.map-box{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.map-box iframe{
    width:100%;
    height:500px;
    border:0;
}

@media(max-width:991px){

    .map-box iframe{
        height:400px;
    }

}




.steel-intro{

    padding:100px 0;

}

.steel-intro .section-tag{

    display:inline-block;

    color:#ff7a00;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.feature-box{

    background:#fff;

    border-radius:12px;

    padding:15px 18px;

    border:1px solid #ececec;

    font-weight:600;

    transition:.35s;

}

.feature-box i{

    color:#ff7a00;

    margin-right:10px;

}

.feature-box:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.experience-box{

    position:absolute;

    right:-25px;

    bottom:40px;

    background:#071c2c;

    color:#fff;

    padding:30px;

    width:190px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.experience-box h2{

    color:#ff7a00;

    font-size:48px;

    font-weight:700;

    margin-bottom:5px;

}

.experience-box p{

    margin:0;

    font-size:17px;

}

@media(max-width:991px){

    .experience-box{

        position:relative;

        right:auto;

        bottom:auto;

        margin:20px auto 0;

    }

}


/*=========================
WHY CHOOSE
==========================*/

.steel-advantages{

    background:#f8fafc;

}

.section-subtitle{

    max-width:700px;

    color:#6b7280;

    font-size:18px;

}

.adv-card{

    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.35s;

    border:1px solid #edf0f5;

}

.adv-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.35s;

}

.adv-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.adv-card:hover::before{

    transform:scaleX(1);

}

.adv-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#fff3eb;

    color:#ff7a00;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.adv-card h3{

    font-size:30px;

    font-weight:700;

    color:#0b3155;

    margin-bottom:18px;

}

.adv-card p{

    margin:0;

    color:#666;

    line-height:1.9;

}

/*==========================
EXPERT CARE
===========================*/

.expert-care{

    background:#fff;

}

.expert-image{

    position:relative;

}

.expert-image img{

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.floating-box{

    position:absolute;

    bottom:30px;

    right:-30px;

    background:#071c2c;

    color:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    width:220px;

    box-shadow:0 25px 50px rgba(0,0,0,.25);

}

.floating-box h2{

    color:#ff7a00;

    font-size:50px;

    margin-bottom:5px;

}

.service-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border:1px solid #ececec;

    border-radius:15px;

    transition:.35s;

    background:#fff;

}

.service-item:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.service-item i{

    width:55px;

    height:55px;

    border-radius:15px;

    background:#fff3eb;

    color:#ff7a00;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.service-item span{

    font-weight:600;

    color:#0b3155;

}

@media(max-width:991px){

    .floating-box{

        position:relative;

        right:auto;

        bottom:auto;

        margin:20px auto 0;

    }

}