/* =========================================================
   style.css — Full Responsive Replacement
   Kept original section order, cleaned and optimized
   ========================================================= */

/* =========================
   :root / Variables / Reset
   ========================= */
:root{
  --brand-dark: #00214F;
  --brand-primary: #00214F;
  --brand-alt: #ff6a00;
  --muted: #a39b9b;
  --light: #f8f9fa;
  --white: #ffffff;
  --bg-dark: #111;
  --shadow: 0 8px 20px rgba(0,0,0,0.12);
}

*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0}

html,body{
  height:100%;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -webkit-text-size-adjust:100%;
  color:#222;
  background:#fff;
  line-height:1.45;
}

/* Utility helpers */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.d-flex{display:flex}
.flex-column{flex-direction:column}
.align-center{align-items:center}
.justify-center{justify-content:center}
.hidden{display:none!important}
.clearfix::after{content:"";display:block;clear:both}

/* Links and Buttons */
a{color:var(--brand-primary);text-decoration:none}
a:hover{text-decoration:underline}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 18px;border-radius:8px;border:0;cursor:pointer;font-weight:600;transition:all .25s}
.btn:focus{outline:2px solid rgba(0,0,0,0.08);outline-offset:2px}
.btn-primary{background:var(--brand-dark);color:var(--white)}
.btn-primary:hover{background:#335235}
.btn-light{background:var(--light);color:var(--brand-dark);box-shadow:inset 0 0 0 0 var(--brand-dark)}
.btn-light:hover{box-shadow:inset 300px 0 0 0 var(--brand-dark);color:var(--white)}

.btn-square{width:44px;height:44px;padding:0;border-radius:50%}

/* Back to top */
.back-to-top{position:fixed;right:30px;bottom:30px;width:45px;height:45px;display:flex;align-items:center;justify-content:center;z-index:99;border-radius:50%;background:var(--brand-dark);color:#fff;box-shadow:var(--shadow);transition:0.25s}

/* =========================
   Section Title
   ========================= */
.section-title{max-width:900px;text-align:center;margin:0 auto}
.section-title .sub-style,
.section-title .sub-title{display:inline-block;text-transform:uppercase;color:var(--brand-dark);position:relative}
.section-title .sub-style::before,
.section-title .sub-title::before{content:"";position:absolute;width:100px;height:1px;top:50%;transform:translateY(-50%)}
.section-title .sub-style::before{left:-110px;border-top:1px solid var(--brand-dark)}
.section-title .sub-style::after{content:"";position:absolute;width:50px;height:1px;left:-55px;top:50%;border-top:1px solid var(--brand-dark)}
.section-title .sub-title::before{right:-110px;border-top:1px solid var(--brand-dark)}
.section-title .sub-title::after{content:"";position:absolute;width:50px;height:1px;right:-55px;top:50%;border-top:1px solid var(--brand-dark)}

/* Section header */
.section-header .section-title{font-size:42px;font-weight:800;color:var(--brand-primary)}
.section-header .section-subtitle{font-size:18px;max-width:700px;color:#555;margin:8px auto}
.section-header p{max-width:750px;margin:12px auto 0;color:#444}
.section-header .section-title::after{content:"";width:90px;height:4px;background:var(--brand-primary);display:block;margin:12px auto 0;border-radius:4px}




/*====================================================
TOP BAR
====================================================*/

.topbar-fix{
    background:#fd8b2b;
    color:#fff;
    padding:8px 0;
    font-weight:600;
}

.topbar-left a{
    color:#fff;
    text-decoration:none;
    margin-right:18px;
    font-size:15px;
}

.topbar-left a i{
    margin-right:6px;
}

.topbar-right a{
    color:#fff;
    margin-left:14px;
    font-size:15px;
    transition:.3s;
}

.topbar-right a:hover{
    color:#ff8c00;
}

@media(max-width:576px){
    .topbar-fix{
        display:none;
    }
}


/*====================================================
NAVBAR
====================================================*/

.custom-navbar{
    background:#fff;
    padding:10px 0;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    position:relative;
    z-index:999;
}

/* Logo */

.navbar-brand{
    display:flex;
    align-items:center;
    margin:0;
}

.site-logo{
    width:auto;
    height:105px;
    display:block;
}

/* Navigation */

.navbar-nav{
    align-items:center;
}

.navbar-light .navbar-nav .nav-link{
    color:#000;
    font-size:18px;
    font-weight:600;
    padding:18px 16px;
    position:relative;
}

.navbar-light .navbar-nav .nav-link:hover{
    color:#000;
}

@media(min-width:992px){

.navbar-light .navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:6px;
    width:0;
    height:2px;
    background:#000;
    transition:.3s;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after{
    width:100%;
    left:0;
}

}

/* Dropdown */

/* Dropdown */

.dropdown-menu{
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 4px 0;
    min-width: 220px;
}

.dropdown-item{
    padding: 6px 16px;
    font-size: 16px;
    line-height: 1.3;
}

.dropdown-item:hover,
.dropdown-item:focus{
    background: #f5f7fb;
    color: #2957A4;
}

/* Inquiry Button */

.inquiry-btn{
    background:#fd8b2b;
    color:#fff!important;
    padding:10px 22px;
    border-radius:35px;
    font-weight:600;
}

.inquiry-btn:hover{
    background:#ff8c00;
}

/* Mobile */

.navbar-toggler{
    border:1px solid #000;
}

@media(max-width:991px){

.site-logo{
    height:60px;
}

.navbar-light .navbar-nav .nav-link{
    padding:12px 0;
}

.dropdown-menu{
    box-shadow:none;
    border-radius:0;
}

}


/*====================================================
PREMIUM HERO SLIDER
====================================================*/

/*=========================================
      PREMIUM HERO SLIDER
=========================================*/

.premium-slider{
    position:relative;
    width:100%;
    height:100vh;
    min-height:600px;
    overflow:hidden;
}

/* Slides Container */

.slides{
    position:relative;
    width:100%;
    height:100%;
}

/* Single Slide */

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;
    transform:scale(1.05);

    transition:opacity 1s ease, transform 6s ease;
}

/* Active Slide */

.slide.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
}

/* Overlay */

.slider-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:1;
}

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

.slider-content{

    position:relative;
    z-index:5;

    max-width:650px;

    margin-left:8%;

    color:#fff;

    animation:fadeUp .8s ease;
}

/* Subtitle */

.hero-subtitle{

    display:inline-block;

    color:#fff;

    font-size:15px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

    font-weight:600;
}

/* Title */

.hero-title{

    font-size:70px;

    line-height:1.1;

    font-weight:700;

    color:#fff;

    margin-bottom:25px;
}

.hero-title span{

    display:block;

    color:#fd8b2b;
}

/* Paragraph */

.hero-text{

    font-size:18px;

    line-height:1.8;

    color:#f2f2f2;

    margin-bottom:35px;

    max-width:600px;
}

/* Button */

.hero-btn{

    display:inline-block;

    background:#fd8b2b;

    color:#fff;

    padding:14px 34px;

    border-radius:5px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.hero-btn:hover{

    background:#000;

    color:#fff;

    transform:translateY(-3px);
}

/*=========================================
      Animation
=========================================*/

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================================
      Responsive
=========================================*/

@media(max-width:1200px){

.hero-title{

    font-size:58px;
}

}

@media(max-width:991px){

.premium-slider{

    height:80vh;
    min-height:500px;
}

.slider-content{

    margin-left:30px;
    margin-right:30px;
}

.hero-title{

    font-size:42px;
}

.hero-text{

    font-size:16px;
}

.hero-btn{

    padding:12px 28px;
}

}

@media(max-width:576px){

.premium-slider{

    height:75vh;
    min-height:420px;
}

.hero-subtitle{

    font-size:12px;
}

.hero-title{

    font-size:34px;
}

.hero-text{

    font-size:15px;
    line-height:1.6;
}

.hero-btn{

    padding:10px 24px;
    font-size:14px;
}

}

/*==============================

BRANDS SECTION

==============================*/

.brands-section{

padding:100px 0;

background:#00214F;

position:relative;

overflow:hidden;

}

/* Decorative background */

.brands-section::before{

content:"";

position:absolute;

width:550px;

height:550px;

background:rgba(253,139,43,.08);

border-radius:50%;

top:-250px;

left:-180px;

}

.brands-section::after{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(255,255,255,.04);

border-radius:50%;

bottom:-180px;

right:-120px;

}

/* Heading */

.brands-heading{

max-width:800px;

margin:auto;

text-align:center;

margin-bottom:70px;

position:relative;

z-index:2;

}

.brands-heading span{

color:#FD8B2B;

font-weight:700;

letter-spacing:3px;

text-transform:uppercase;

}

.brands-heading h2{

font-size:48px;

color:#fff;

margin:18px 0;

font-weight:700;

}

.brands-heading p{

color:#d8d8d8;

line-height:1.9;

font-size:17px;

}

/* Grid */

.brands-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(170px,1fr));

gap:25px;

position:relative;

z-index:2;

}

/* Card */

.brand-item{

background:#fff;

height:120px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

padding:20px;

transition:.35s;

box-shadow:0 12px 30px rgba(0,0,0,.15);

border:2px solid transparent;

}

/* Logo */

.brand-item img{

max-width:100%;

max-height:100px;

object-fit:contain;

transition:.35s;

filter:grayscale(100%);

}

/* Hover */

.brand-item:hover{

transform:translateY(-8px);

border-color:#FD8B2B;

box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.brand-item:hover img{

filter:none;

transform:scale(1.08);

}

/* Responsive */

@media(max-width:768px){

.brands-heading h2{

font-size:34px;

}

.brands-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.brand-item{

height:95px;

padding:15px;

}

.brand-item img{

max-height:45px;

}

}

.brand-card{
    background:#fff;
    border-radius:18px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.25);
    border-color:#fd8b2b;
}

.brand-card img{
    width:90%;
    height:90%;
    object-fit:contain;
    transition:.35s;
}

.brand-card:hover img{
    transform:scale(1.12);
}
/*==============================

BRANDS SECTION end 

==============================*/



/* =========================
   BG Breadcrumb (single page hero)
   ========================= */
.bg-breadcrumb{background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url('../img/market-sectors-title-bg.png') center/cover no-repeat;padding:160px 0 60px}
.bg-breadcrumb .breadcrumb-item a{color:#fff}

/* remove oversized padding on smaller screens */
@media (max-width:992px){.bg-breadcrumb{padding:100px 12px 40px}}
@media (max-width:576px){.bg-breadcrumb{padding:70px 12px 30px}}

/* =========================
   Service Section
   ========================= */
/* SECTION */
/*=========================
    PRODUCTS SECTION
==========================*/

.metal-products{
    padding:90px 0;
    background:#f7f9fc;
}

/* Title */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#00214F;
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.section-title h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#FD8B2B;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    border-radius:50px;
}

/*=========================
        GRID
==========================*/

/*=====================================
      PRODUCT SECTION
=====================================*/

.metal-products{
    padding:100px 0;
    background:#f5f7fb;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#fd8b2b;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
}

.section-title h2{
    color:#00214F;
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
    font-size:16px;
}

/*=====================================
            GRID
=====================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

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

.metal-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid #ececec;

}

.metal-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

/*=====================================
          IMAGE
=====================================*/

.metal-img{

    position:relative;

    overflow:hidden;

    height:350px;

}

.metal-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.metal-card:hover .metal-img img{

    transform:scale(1.08);

}

/* Orange Bar */

.metal-img::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:6px;

    background:#fd8b2b;

}

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

.metal-content{

    padding:30px;

    text-align:center;

}

.metal-content h3{

    color:#00214F;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

}

/*=====================================
         BUTTON
=====================================*/

.read-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 28px;

    background:#00214F;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.read-btn i{

    transition:.4s;

}

.read-btn:hover{

    background:#fd8b2b;

    color:#fff;

}

.read-btn:hover i{

    transform:translateX(6px);

}

/*=====================================
          RESPONSIVE
=====================================*/

@media(max-width:991px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.metal-img{

height:220px;

}

}

/* =========================
   Feature Section
   ========================= */


/* =========================
  
/
/* =========================
   Misc / Accessibility / Small fixes
   ========================= */
img,video{max-width:100%;height:auto;display:block}
input,textarea,button{font-family:inherit}
input,textarea{font-size:16px}
button, .open-button, .navbar-light .nav-link{min-height:44px}

/* Remove problematic fixed heights that cause scrolling issues */
.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img{height:auto;min-height:220px;max-height:100vh;object-fit:cover}
.service-img img{height:300px;max-height:45vh;object-fit:cover}

/* Make testimonial items stack on small screens */
@media (max-width:768px){.testimonial .testimonial-item .testimonial-inner{flex-direction:column;padding:18px}}

/* Avoid parallax background on small screens */
@media (max-width:992px){
  .appointment,.testimonial,.contact,.footer{background-attachment:scroll!important}
}

/* Touch target improvements */
@media (max-width:768px){
  .navbar-light .nav-link,.btn{padding:12px 8px}
}

/* back-to-top smaller screens */
@media (max-width:576px){.back-to-top{right:18px;bottom:18px;width:40px;height:40px}}

/* sidenav width when opened */
@media (max-width:767px){.sidenav{width:80%!important;max-width:340px}}

/* optional utility classes */
.only-mobile{display:none}
@media (max-width:576px){.only-mobile{display:block}}
.no-mobile{display:block}
@media (max-width:576px){.no-mobile{display:none!important}}

/* Color contrast tweaks on small screens */
@media (max-width:768px){
  .section-header .section-subtitle,.section-header p,.about-floating p{color:#efefef}
}

/* Force logo to appear large and vertically centered */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.navbar-brand img {
    max-height: 100px !important; /* desktop */
    width: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

/* Adjust for smaller screens */
@media (max-width: 992px) {
    .navbar-brand img { max-height: 100px !important; }
}
@media (max-width: 576px) {
    .navbar-brand img { max-height: 70px !important; }
}



/* about */
.about-modern {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
  font-family: 'Poppins', sans-serif;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT IMAGE AREA */
.about-media {
  position: relative;
}

.image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.image-box img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: 0.6s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 4px solid #fd8b2b;
  animation: float 3s ease-in-out infinite;
}

.floating-card h3 {
  margin: 0;
  color: #fd8b2b;
  font-size: 22px;
}

.floating-card p {
  margin: 0;
  font-size: 13px;
  color: #7d7f80;
}

.card-1 {
  top: 25px;
  left: -20px;
}

.card-2 {
  bottom: 25px;
  right: -20px;
}

/* RIGHT CONTENT */
.about-info .tagline {
  color: #fd8b2b;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
}

.about-info h2 {
  font-size: 34px;
  color: #1f2a37;
  margin: 15px 0;
  line-height: 1.3;
}

.about-info p {
  color: #7d7f80;
  line-height: 1.8;
  font-size: 16px;
}

/* FEATURES */
.about-features {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2a37;
  font-size: 15px;
}

.feature i {
  color: #fd8b2b;
  font-size: 18px;
}

/* BUTTON */
.btn-modern {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #fd8b2b, #ff6a00);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(253,139,43,0.3);
}

.btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(253,139,43,0.4);
}

/* ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card-1, .card-2 {
    position: relative;
    left: auto;
    right: auto;
    margin: 10px auto;
  }
}


/* about end  */


  .info-box.top,
  .info-box.bottom {
    position: static;
    margin-top: 15px;
  }
}
/*==========================
      WHO WE ARE
==========================*/

.who-we-are{

    display:grid;
    grid-template-columns:45% 55%;
    min-height:650px;

}

/* LEFT */

.who-left{

    background:#00214F;
    color:#fff;

    padding:80px 70px;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.small-title{

    color:#FD8B2B;
    letter-spacing:4px;
    font-weight:700;
    margin-bottom:15px;

}

.who-left h2{

    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;

}

.who-left p{

    font-size:17px;
    line-height:1.9;
    color:#ddd;
    margin-bottom:40px;

}

.about-btn{

    display:inline-block;
    width:180px;
    text-align:center;

    background:#FD8B2B;
    color:#fff;

    padding:15px 30px;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.about-btn:hover{

    background:#fff;
    color:#00214F;

}

/* RIGHT */

/*=============================
      WHY US
=============================*/

.why-us{

    padding:100px 0;

    background:#ffffff;

}

.sub-heading{

    color:#fd8b2b;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

}

.why-us h2{

    color:#00214F;

    font-size:46px;

    margin:20px 0;

    line-height:1.2;

    font-weight:700;

}

.why-us p{

    color:#666;

    line-height:1.9;

    font-size:16px;

}

.why-btn{

    display:inline-block;

    margin-top:35px;

    background:#00214F;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:40px;

    transition:.4s;

}

.why-btn:hover{

    background:#fd8b2b;

    color:#fff;

}

/* Timeline */

.timeline{

    position:relative;

    padding-left:40px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:18px;

    top:0;

    width:2px;

    height:100%;

    background:#fd8b2b;

}

.timeline-item{

    display:flex;

    gap:25px;

    margin-bottom:45px;

    position:relative;

}

.timeline-item span{

    width:40px;

    height:40px;

    background:#00214F;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    flex-shrink:0;

    z-index:2;

}

.timeline-item h4{

    color:#00214F;

    font-size:22px;

    margin-bottom:10px;

    font-weight:700;

}

.timeline-item p{

    margin:0;

}

.timeline-item:hover span{

    background:#fd8b2b;

}

@media(max-width:991px){

.timeline{

padding-left:20px;

margin-top:50px;

}

.why-us h2{

font-size:34px;

}

}



/*=========================
 INDUSTRIES
=========================*/

.industry-section{

    padding:100px 0;

    background:#f8fafc;

}

.industry-heading{

    text-align:center;

    margin-bottom:60px;

}

.industry-heading span{

    color:#FD8B2B;

    letter-spacing:3px;

    font-weight:700;

}

.industry-heading h2{

    color:#00214F;

    font-size:44px;

    font-weight:700;

    margin:15px 0;

}

.industry-heading p{

    color:#666;

    max-width:650px;

    margin:auto;

}

/* Slider */

.industry-slider{

    display:flex;

    gap:28px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding-bottom:20px;

}

.industry-slider::-webkit-scrollbar{

    height:8px;

}

.industry-slider::-webkit-scrollbar-thumb{

    background:#FD8B2B;

    border-radius:50px;

}

/* Card */

.industry-card{

    min-width:340px;

    height:460px;

    border-radius:25px;

    overflow:hidden;

    position:relative;

    flex-shrink:0;

    transition:.5s;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.industry-card:nth-child(even){

    margin-top:45px;

}

.industry-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.industry-card:hover img{

    transform:scale(1.12);

}

/* Overlay */

.industry-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:35px;

    background:linear-gradient(transparent,rgba(0,33,79,.95));

}

.industry-overlay span{

    display:inline-flex;

    width:50px;

    height:50px;

    background:#FD8B2B;

    color:#fff;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-weight:700;

    margin-bottom:18px;

}

.industry-overlay h3{

    color:#fff;

    font-size:26px;

    margin:0;

}

.industry-card:hover{

    transform:translateY(-15px);

}

/*=========================
 INDUSTRIES
=========================*/


/*==========================
      FEATURE SECTION
==========================*/

.feature-section{

    padding:100px 0;

    background:#00214F;

    position:relative;

    overflow:hidden;

}

/* Background Circle */

.feature-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(253,139,43,.08);

    border-radius:50%;

    top:-180px;

    right:-120px;

}

.feature-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    bottom:-150px;

    left:-100px;

}

/* Heading */

.section-heading{

    text-align:center;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

.section-heading span{

    color:#FD8B2B;

    letter-spacing:3px;

    font-weight:700;

}

.section-heading h2{

    color:#fff;

    font-size:46px;

    margin:18px 0;

    font-weight:700;

}

.section-heading p{

    color:#d8d8d8;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/*==========================

      Cards

==========================*/

.feature-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    position:relative;

    z-index:2;

}

/* Line */

.feature-wrapper::before{

    content:"";

    position:absolute;

    top:70px;

    left:15%;

    width:70%;

    height:2px;

    background:rgba(255,255,255,.12);

}

/* Card */

.feature-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    transition:.45s;

    position:relative;

}

.feature-card:hover{

    transform:translateY(-15px);

    background:#fff;

}

.feature-card.active{

    background:#FD8B2B;

    transform:translateY(-20px);

}

/* Icon */

.icon-box{

    width:95px;

    height:95px;

    border-radius:50%;

    background:#fff;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 25px rgba(0,0,0,.18);

    margin-bottom:25px;

}

.icon-box img{

    width:48px;

}

/* Text */

.feature-card h3{

    color:#fff;

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    color:#ececec;

    line-height:1.8;

    font-size:15px;

}

/* Hover Text */

.feature-card:hover h3,

.feature-card:hover p{

    color:#00214F;

}

/* Active */

.feature-card.active h3,

.feature-card.active p{

    color:#fff;

}

/*==========================

Responsive

==========================*/

@media(max-width:991px){

.feature-wrapper{

grid-template-columns:1fr;

}

.feature-wrapper::before{

display:none;

}

.feature-card.active{

transform:none;

}

.section-heading h2{

font-size:34px;

}

}
/*==============================
    MVV SECTION
==============================*/

.mvv-section{

    padding:100px 0;

    background:#f8fafc;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#FD8B2B;

    letter-spacing:3px;

    font-weight:700;

}

.section-title h2{

    color:#00214F;

    font-size:42px;

    margin-top:15px;

    font-weight:700;

}

/*========================*/

.mvv-timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.mvv-timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#FD8B2B;

    transform:translateX(-50%);

}

/* Item */

.mvv-item{

    width:50%;

    position:relative;

    margin-bottom:60px;

}

.left{

    padding-right:60px;

}

.right{

    margin-left:50%;

    padding-left:60px;

}

/* Number */

.mvv-number{

    position:absolute;

    top:25px;

    width:55px;

    height:55px;

    background:#00214F;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    z-index:2;

}

.left .mvv-number{

    right:-28px;

}

.right .mvv-number{

    left:-28px;

}

/* Box */

.mvv-box{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    border-top:5px solid #FD8B2B;

}

.mvv-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.mvv-box i{

    font-size:40px;

    color:#FD8B2B;

    margin-bottom:20px;

}

.mvv-box h3{

    color:#00214F;

    margin-bottom:15px;

    font-size:26px;

    font-weight:700;

}

.mvv-box p{

    color:#666;

    line-height:1.8;

}

.mvv-box ul{

    padding-left:20px;

    color:#666;

    line-height:2;

}

/*====================*/

@media(max-width:991px){

.mvv-timeline::before{

left:25px;

}

.mvv-item{

width:100%;

margin-left:0;

padding-left:70px;

padding-right:0;

}

.right{

margin-left:0;

}

.left .mvv-number,

.right .mvv-number{

left:0;

}

}


/*====================*/

/*=================================

QUALITY POLICY

=================================*/

.quality-policy{

padding:100px 0;

background:#f8fafc;

}

.quality-heading{

text-align:center;

max-width:850px;

margin:0 auto 80px;

}

.quality-heading span{

color:#FD8B2B;

font-weight:700;

letter-spacing:3px;

}

.quality-heading h2{

font-size:46px;

color:#00214F;

margin:18px 0;

font-weight:700;

}

.quality-heading p{

color:#666;

line-height:1.8;

font-size:17px;

}

/* Timeline */

.quality-timeline{

max-width:900px;

margin:auto;

position:relative;

}

.quality-timeline::before{

content:"";

position:absolute;

left:32px;

top:0;

width:4px;

height:100%;

background:#FD8B2B;

border-radius:10px;

}

/* Item */

.quality-item{

display:flex;

gap:35px;

margin-bottom:45px;

position:relative;

}

/* Number */

.quality-number{

width:65px;

height:65px;

background:#00214F;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

flex-shrink:0;

position:relative;

z-index:2;

transition:.4s;

}

/* Content */

.quality-content{

background:#fff;

padding:28px 35px;

border-radius:18px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

border-left:5px solid #FD8B2B;

transition:.4s;

width:100%;

}

.quality-content h3{

font-size:24px;

margin-bottom:12px;

color:#00214F;

font-weight:700;

}

.quality-content p{

margin:0;

line-height:1.8;

color:#666;

}

/* Hover */

.quality-item:hover .quality-content{

transform:translateX(10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.quality-item:hover .quality-number{

background:#FD8B2B;

}

/* Mobile */

@media(max-width:768px){

.quality-heading h2{

font-size:34px;

}

.quality-item{

gap:20px;

}

.quality-number{

width:50px;

height:50px;

font-size:18px;

}

.quality-timeline::before{

left:24px;

}

.quality-content{

padding:22px;

}

}



/*=================================

QUALITY POLICY end

=================================*/


/*============================

INSPECTION SECTION

============================*/

.inspection-section{

padding:100px 0;

background:#f7f9fc;

}

.inspection-title{

text-align:center;

max-width:750px;

margin:auto;

margin-bottom:70px;

}

.inspection-title span{

color:#fd8b2b;

font-weight:700;

letter-spacing:3px;

text-transform:uppercase;

}

.inspection-title h2{

font-size:46px;

color:#00214F;

margin:15px 0;

font-weight:700;

}

.inspection-title p{

color:#666;

line-height:1.8;

}

/* Grid */

.inspection-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

/* Card */

.inspection-card{

position:relative;

height:340px;

overflow:hidden;

border-radius:22px;

box-shadow:0 18px 45px rgba(0,0,0,.10);

transition:.5s;

}

.inspection-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

/* Overlay */

.inspection-card::before{

content:"";

position:absolute;

left:0;

right:0;

top:0;

bottom:0;

background:linear-gradient(to top,
rgba(0,33,79,.90),
rgba(0,33,79,.15));

z-index:1;

}

/* Glass Box */

.inspection-content{

position:absolute;

left:25px;

right:25px;

bottom:25px;

padding:22px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.25);

border-radius:15px;

z-index:2;

transition:.4s;

}

.inspection-content h3{

margin:0;

color:#fff;

font-size:24px;

font-weight:600;

}

/* Hover */

.inspection-card:hover{

transform:translateY(-12px);

}

.inspection-card:hover img{

transform:scale(1.12);

}

.inspection-card:hover .inspection-content{

background:#fd8b2b;

}

/* Responsive */

@media(max-width:768px){

.inspection-title h2{

font-size:34px;

}

.inspection-card{

height:280px;

}

.inspection-content h3{

font-size:20px;

}

}
/*============================

INSPECTION SECTION end

============================*/


/*============================

CONTACT

============================*/

.contact-section{

padding:100px 0;

background:linear-gradient(180deg,#ffffff,#eef5ff);

}

/* Heading */

.contact-top{

text-align:center;

max-width:750px;

margin:auto auto 70px;

}

.contact-top span{

color:#FD8B2B;

font-weight:700;

letter-spacing:3px;

}

.contact-top h2{

font-size:45px;

font-weight:700;

color:#00214F;

margin:15px 0;

}

.contact-top p{

color:#666;

font-size:17px;

line-height:30px;

}

/* Grid */

.contact-grid{

display:grid;

grid-template-columns:380px 1fr;

gap:40px;

align-items:start;

}

/* Left */

.contact-left{

display:flex;

flex-direction:column;

gap:25px;

}

.contact-card{

background:#fff;

padding:28px;

border-radius:20px;

display:flex;

gap:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

border:1px solid #edf0f4;

}

.contact-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.contact-card .icon{

width:70px;

height:70px;

background:linear-gradient(135deg,#FD8B2B,#ffb15a);

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#fff;

flex-shrink:0;

}

.contact-card h4{

font-size:20px;

margin-bottom:10px;

color:#00214F;

}

.contact-card p{

margin:0;

color:#666;

line-height:28px;

}

.contact-card a{

color:#00214F;

text-decoration:none;

display:inline-block;

margin-bottom:6px;

transition:.3s;

}

.contact-card a:hover{

color:#FD8B2B;

}

/* Form */

.contact-form{

background:#fff;

padding:50px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.contact-form h3{

font-size:34px;

margin-bottom:35px;

color:#00214F;

}

.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.form-grid input,

.form-grid textarea{

width:100%;

padding:18px;

border-radius:12px;

border:1px solid #dbe3ef;

outline:none;

font-size:15px;

transition:.4s;

}

.form-grid textarea{

grid-column:1/-1;

height:180px;

resize:none;

}

.form-grid input:focus,

.form-grid textarea:focus{

border-color:#FD8B2B;

box-shadow:0 0 15px rgba(253,139,43,.20);

}

.contact-form button{

margin-top:30px;

background:linear-gradient(135deg,#00214F,#1c4d9d);

color:#fff;

padding:18px 45px;

border:none;

border-radius:50px;

font-size:16px;

font-weight:600;

transition:.4s;

cursor:pointer;

}

.contact-form button:hover{

background:linear-gradient(135deg,#FD8B2B,#ff9f24);

transform:translateY(-3px);

}

/* Map */

.map-box{

margin-top:70px;

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.map-box iframe{

width:100%;

height:500px;

border:0;

}

/* Responsive */

@media(max-width:991px){

.contact-grid{

grid-template-columns:1fr;

}

.form-grid{

grid-template-columns:1fr;

}

.contact-form{

padding:35px;

}

.contact-top h2{

font-size:34px;

}

}

/*============================

CONTACT end 

============================*/


/* Floating Buttons Container */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Common Button Style */
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* WhatsApp Button */
.float-btn.whatsapp {
    background: #25D366;
}

/* Call Button */
.float-btn.call {
    background: #0a5ad1;
}

/* Hover Effects */
.float-btn:hover {
    transform: scale(1.1);
}

/* Pulse Animation */
.float-btn::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.float-btn.whatsapp::after {
    background: #25D366;
}

.float-btn.call::after {
    background: #0a5ad1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .floating-contact {
        right: 12px;
        bottom: 70px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}


/*==========================================
        PREMIUM FOOTER
==========================================*/

.footer{
    background:#00214F;
    position:relative;
    overflow:hidden;
    color:#cfd8e6;
}

.footer::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:300px;
    height:300px;
    background:rgba(253,139,43,.08);
    border-radius:50%;
}

.footer::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
}

.footer .container{
    position:relative;
    z-index:2;
}

/* Heading */

.footer h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;
}

.footer h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#FD8B2B;
    border-radius:30px;
}

/* Paragraph */

.footer p{
    color:#d8e0ec;
    line-height:1.9;
    font-size:15px;
}

/* Links */

.footer-item a{
    display:block;
    color:#d8e0ec;
    text-decoration:none;
    margin-bottom:14px;
    transition:.35s;
    font-size:15px;
}

.footer-item a i{
    color:#FD8B2B;
    margin-right:10px;
    transition:.35s;
}

.footer-item a:hover{
    color:#FD8B2B;
    padding-left:8px;
}

.footer-item a:hover i{
    transform:translateX(5px);
}

/* Contact */

.footer .fa-map-marker-alt,
.footer .fa-phone,
.footer .fa-envelope{
    width:22px;
    color:#FD8B2B;
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#FD8B2B;
    transform:translateY(-5px);
}

/* Copyright */

.copyright{
    background:#FD8B2B;
    border-top:1px solid rgba(255,255,255,.08);
}

.copyright span,
.copyright a{
    color:#d8e0ec;
    text-decoration:none;
    font-size:15px;
}

.copyright a:hover{
    color:#FD8B2B;
}

/* Footer Columns */

.footer-item{
    height:100%;
}

/* Responsive */

@media(max-width:991px){

.footer{
    text-align:center;
}

.footer h4::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-social{
    justify-content:center;
}

.footer-item a:hover{
    padding-left:0;
}

}