* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none !important;
}

ul {
  padding: 0 !important;
  margin: 0;
  list-style: none !important;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

/* Main Translate Box */
#google_translate_element {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 8px 12px;
    min-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
}

/* Hide Google Icon */
.goog-te-gadget-icon {
    display: none !important;
}

/* Hide Google Branding */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

/* Hide Top Translate Bar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


/* Dropdown Style */
.goog-te-combo {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    width: 100%;
}

/* Placeholder Text */
    .language-switcher::before {
        content: "";
        position: absolute;
        left: 18px;
        font-size: 14px;
        font-weight: 600;
        color: #666;
        pointer-events: none;
    }

/* Hide Placeholder After Select */
/*.language-switcher.active::before {*/
/*    display: none;*/
/*}*/


/* Mobile Responsive */
@media(max-width:768px){

    .language-switcher {
        margin-right: 10px;
    }

    #google_translate_element {
        padding: 4px 8px;
    }

    .goog-te-combo {
        font-size: 12px;
    }
}

/* HEADER */

/* --- Base Header Styling --- */
header {
  background: #fff;
  padding: 10px 0; /* Padding thoda kam kiya hai balance ke liye */
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
}

.logo img {
  width: 150px;
  height: auto;
}

/* --- Desktop Navigation --- */
.navbar-nav {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: 0.3s;
  /*text-transform: capitalize !important;*/
}

.navbar-nav .nav-link{
    text-transform: lowercase;
}

.navbar-nav .nav-link::first-letter{
    text-transform: uppercase;
}

.nav-link:hover {
  color: #d80000 !important; /* Blue theme as per your image_ae3d9b.png */
}

/* --- Quote Button --- */
.quote-btn {
  background: #d80000; /* Professional Blue */
  color: #fff !important;
  padding: 10px 10px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: none;
}

.quote-btn:hover {
  background: #b80000;
  transform: translateY(-2px);
}

/* --- Mobile Toggle Button (Hamburger) --- */
.navbar-toggler {
  padding: 8px;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}


/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu-custom{
    position:relative;
}

/* Dropdown Box */
.custom-dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    width:280px;
    padding:0;
    margin:0;
    list-style:none;
    border-radius:0 0 10px 10px;
    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:0.3s ease;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    z-index:999;
}

/* Show Dropdown */
.dropdown-menu-custom:hover .custom-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Dropdown Items */
.custom-dropdown li{
    border-bottom:1px solid #eee;
}

/* Links */
.custom-dropdown li a{
    display:block;
    padding:18px 20px;
    color:#111;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    background:#fff;
}

/* Hover Active */
.custom-dropdown li a:hover{
    background:#d80000;
    color:#fff;
}

/* Mobile */
@media(max-width:991px){

    .custom-dropdown{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        display:none;
        margin-top:10px;
    }

    .dropdown-menu-custom:hover .custom-dropdown{
        display:block;
    }

    .custom-dropdown li a{
        padding:14px 15px;
        font-size:14px;
    }
}

/* --- Mobile View (Offcanvas) Styling --- */
@media (max-width: 991px) {
  /* Offcanvas Box */
  .offcanvas {
    width: 280px !important;
    background-color: #fff;
  }

  .offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 20px;
  }

  .offcanvas-title {
    color: #1a237e;
    font-weight: 800;
  }

  .offcanvas-body {
    padding: 20px;
  }

  /* Mobile menu items vertical ho jayenge */
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 10px 0 !important;
    border-bottom: 1px solid #f9f9f9;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* --- Extra Smooth Transition for Side Menu --- */
.offcanvas.offcanvas-end {
  transition: transform 0.4s ease-in-out;
}

/* HERO */

/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    width:100%;
    height: clamp(580px, 72vh, 720px);
    min-height: 420px;
    overflow:hidden;
    background:#fff;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    width:100%;
    height:100%;
}

.hero-slide {
    position:relative;
}

.hero-slider .swiper-slide img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-slide--factory img {
    object-position:center center;
}

.hero-slide--banner img {
    object-fit:contain;
    background:#fff;
}

.hero-slide-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.18) 100%);
    z-index:1;
}

.hero-slide-content {
    position:absolute;
    top:50%;
    left:50%;
    z-index:2;
    transform:translate(-50%, -50%);
    color:#fff;
}

.hero-slide-content h1 {
    max-width:820px;
    margin:0 0 24px;
    color:#fff;
    font-size:76px;
    font-weight:900;
    line-height:1.04;
    letter-spacing:0;
    text-transform:uppercase;
}

.hero-slide-content h1 span {
    display:block;
    color:#ff2d2d;
}

.hero-slide-content p {
    max-width:720px;
    margin:0 0 40px;
    color:#fff;
    font-size:20px;
    font-weight:600;
    line-height:1.8;
}

.hero-buttons {
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons .btn {
    min-width:176px;
    padding:17px 28px;
    border-radius:5px;
    font-size:15px;
    font-weight:800;
    text-align:center;
    text-decoration:none;
    text-transform:uppercase;
}

.hero-buttons .btn-outline-light {
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.hero-buttons .btn-outline-light:hover {
    background:#fff;
    color:#111;
}

.hero-slider .swiper-pagination {
    bottom:24px;
    z-index:3;
}

.hero-slider .swiper-pagination-bullet {
    width:12px;
    height:12px;
    background:#fff;
    opacity:0.75;
}

.hero-slider .swiper-pagination-bullet-active {
    background:#d80000;
    opacity:1;
}

.btn-red{
    background:#d80000;
    color:#fff;
}

/* Responsive */
@media(max-width:1200px){

    .hero-slider{
        height: clamp(455px, 72vh, 720px);
        min-height:455px;
    }

    .hero-slide-content h1 {
        font-size:52px;
    }

    .hero-slide-content p {
        font-size:17px;
    }
}


@media(max-width:991px){

    .hero-slider{
        height: clamp(360px, 62vh, 560px);
        min-height:360px;
    }

    .hero-slide-content h1 {
        font-size:52px;
    }

    .hero-slide-content p {
        font-size:17px;
    }
}

@media(max-width:768px){

    .hero-slider {
        height: clamp(320px, 58vh, 460px);
        min-height: 320px;
    }

    .hero-slide-content {
        top:52%;
    }

    .hero-slide-content h1 {
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom:7px;
        line-height:1.08;
    }

    .hero-slide-content p {
        max-width: 92%;
        margin-bottom:7px;
        font-size:14px;
        line-height:1.55;
    }

    .hero-slide-content p br {
        display:none;
    }

    .hero-buttons {
        gap:12px;
    }

    .hero-buttons .btn {
        min-width: 132px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero-slider .swiper-pagination{
      bottom: 0px;
    }
    
}

@media(max-width:575px){

       .hero-slider {
        height: 188px;
        min-height: 188px;
    }

    .hero-slide-content {
        width: min(100% - 32px, 540px);
    }

    .hero-slide-content h1 {
        max-width: 100%;
        font-size: 21px;
    }

    .hero-slide-content p {
        max-width: 100%;
        font-size: 10px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-width: 124px;
        padding: 9px 12px;
    }
}

/* about section  */
.about-akj {
  padding: 40px 0;
  background-image: url(images/company-img.png);
  background-size: cover;
  background-position: center;

}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.about-content h2 {
  font-size: 58px;
  color: #b30000;
  margin-bottom: 20px;
  line-height: 1;
}

.about-content p {
  font-size: 18px;
  color: #4b587c;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 620px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-feature {
  text-align: center;
}

.about-feature i {
  font-size: 38px;
  color: #b30000;
  margin-bottom: 18px;
}

.about-feature h4 {
  font-size: 18px;
  color: #b30000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-feature p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.about-image {
  position: relative;
}

/* .about-image::before{
      content:'';
      position:absolute;
      left:-80px;
      top:0;
      width:180px;
      height:100%;
      background:#fff;
      transform:skewX(-20deg);
      z-index:1;
    } */

.about-image img {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

@media(max-width:768px){

    .about-features{
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
}


/* STATS */

.stats {
  background: #fff;
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  border: 1px solid #eee;
  padding: 35px 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-box h2 {
  color: #d80000;
  font-size: 50px;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* SECTION */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 52px;
}

.section-title h2 span {
  color: #d80000;
}

.section-title p {
  color: #666;
  margin-top: 15px;
  font-size: 18px;
}

/* CARDS */

.services {
  padding: 40px 0;
  background: #f7f7f7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: 30px 25px;
}

.service-content h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-content p {
  color: #666;
  line-height: 1.8;
}

/* INDUSTRIES */

.industries {
  background: #070707;
  color: #fff;
  padding: 50px 0;
}

.industries .section-title p {
  color: #bbb;
}

/*.industry-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(5, 1fr);*/
/*  gap: 25px;*/
/*}*/

.industry-box {
  /*border: 1px solid rgba(255, 255, 255, 0.1);*/
  /*padding: 40px 25px;*/
  text-align: center;
  transition: 0.3s;
  background: #111;
  align-content: center;
}

/*.industry-box:hover {*/
/*  background: #d80000;*/
/*}*/

.industry-box h3 {
  margin: 18px 0;
  font-size: 28px;
}

.industry-box p {
  color: #d0d0d0;
  line-height: 1.8;
}

/* INFRA */

.infrastructure {
  padding: 50px 0;
  background: #fff;
}

.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.infra-content h2 {
  font-size: 49px;
  margin-bottom: 20px;
}

.infra-content h2 span {
  color: #d80000;
}

.infra-content p {
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.infra-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.infra-item {
  padding: 20px;
  border: 1px solid #eee;
  font-weight: 600;
  display: flex;
}

.infra-item i {
  color: #d80000;
  margin-right: 12px;
  font-size: 35px;
}

/* QUALITY */

.quality {
  background: #f8f8f8;
  padding: 50px 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.quality-content h2 {
  font-size: 47px;
  margin-bottom: 20px;
}

.quality-content h2 span {
  color: #d80000;
}

.quality-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.quality-content ul {
  list-style: none;
}

.quality-content ul li {
  margin-bottom: 14px;
  font-weight: 600;
  color: #222;
}

.quality-list i {
  color: #fff;
  margin-right: 10px;
  background-color: #d80000;
  border-radius: 50%;
  padding: 5px;
}

/* CTA */

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&amp;w=1974&amp;auto=format&amp;fit=crop');
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.cta-content h2 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content p {
  color: #d4d4d4;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* FOOTER */

footer {
  background: #0b0b0b;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-box h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.footer-box p,
.footer-box li {
  color: #cfcfcf;
  line-height: 2;
  list-style: none;
}

.footer-box ul li a {
  color: #cfcfcf;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social-links a:hover {
  border-color: #d80000;
  background: #d80000;
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 25px 0;
  color: #bbb;
  font-size: 15px;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .card-grid,
  .industry-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .infra-grid,
  .quality-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {
  nav {
    display: none;
  }

  .section-title h2,
  .infra-content h2,
  .quality-content h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .card-grid,
  .industry-grid,
  .stats-grid,
  .infra-list {
    grid-template-columns: 1fr;
  }

}


/* about page start  */
.about-page-banner {
  background-image: url(images/company-img.png);
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.about-banner-content h1 {
  font-size: 70px;
  margin-bottom: 15px;
}

.about-banner-content p {
  font-size: 18px;
}

.about-company-section {
  padding: 40px 0;
  background: #fff;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.company-left h2 {
  font-size: 46px;
  color: #b30000;
  margin-bottom: 25px;
  line-height: 1.1;
}

.company-left p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
}

.company-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mission-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
}

.mission-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-box i {
  font-size: 38px;
  color: #d80000;
  min-width: 45px;
}

.mission-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.mission-box p {
  line-height: 1.8;
  color: #666;
}

.about-stats {
  background: #b30000;
  padding: 35px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.about-stat-box {
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-stat-box:last-child {
  border: none;
}

.about-stat-box i {
  font-size: 34px;
  margin-bottom: 12px;
}

.about-stat-box h3 {
  font-size: 40px;
  margin-bottom: 8px;
}

.journey-section {
  padding: 90px 0;
  background: #fff;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.journey-grid h2 {
  font-size: 52px;
  color: #b30000;
  margin-bottom: 20px;
}

.journey-grid p {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
}

.journey-grid img {
  /*max-width: 500px;*/
  margin: auto;
}

@media(max-width:768px) {

  .about-company-grid,
  .journey-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-banner-content h1,
  .company-left h2,
  .journey-grid h2 {
    font-size: 38px;
  }

  .about-stat-box {
    border: none;
    padding: 20px 0;
  }

}


/* capabilities page start  */


.capabilities-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('images/capabilities-bg.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.capabilities-banner-content h1 {
  font-size: 68px;
  margin-bottom: 15px;
}

.capabilities-banner-content p {
  font-size: 18px;
}

.capabilities-section {
  background: #f8f8f8;
}

.cap-sidebar {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.cap-heading {
  background: #b30000;
  color: #fff;
  padding: 20px;
  margin: 0;
  font-size: 24px;
}

.cap-sidebar .nav-link {
  color: #333;
  font-weight: 600;
  border-radius: 0;
  padding: 16px 20px !important;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.cap-sidebar .nav-link.active {
  background: #d80000 !important;
  color: #fff !important;
  border-radius: 0;
}

/*.cap-sidebar .nav-link:hover {*/
/*  color: #d80000 !important;*/
/*}*/

.capability-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.capability-card h2 {
  color: #b30000;
  font-size: 37px;
  margin-bottom: 20px;
}

.capability-card p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
}

.capability-points li {
  margin-bottom: 14px;
  font-weight: 500;
}

.capability-points li i {
  color: #d80000;
  margin-right: 10px;
}

.capability-img {
  max-width: 400px;
}

.capabilities-features-section {
  padding: 50px 0;
}

@media(max-width:991px) {

  .capability-card {
    padding: 25px;
  }

  .capability-card h2 {
    font-size: 32px;
  }

}


.capability-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-box i {
  font-size: 42px;
  color: #d80000;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111;
}

.feature-box p {
  color: #666;
  line-height: 1.8;
}

@media(max-width:991px) {

  .capabilities-layout,
  .capability-card,
  .capability-features {
    grid-template-columns: 1fr;
  }

  .capabilities-banner-content h1,
  .capability-text h2 {
    font-size: 40px;
  }

}


/* facility page start  */
.facilities-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('images/facility-bg.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.facilities-banner-content h1 {
  font-size: 68px;
  margin-bottom: 15px;
}

.facilities-banner-content p {
  font-size: 18px;
}

.header-title {
  color: #b71c1c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 5px solid #d32f2f;
  padding-left: 15px;
}

.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(211, 47, 47, 0.2);
  border-color: #d32f2f;
}

.img-container img {
  transition: transform 0.3s ease;
  max-height: 100%;
  height: 200px;

}

.shop-title {
  color: #333;
  font-weight: 600;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.img-container:hover+.shop-title {
  color: #d32f2f;
}

.bottom-border {
  border-bottom: 4px solid #d32f2f;
  margin-top: 50px;
  width: 100%;
  opacity: 0.8;
}


/* quality page start  */
.quality-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('images/quality-bg.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.quality-banner-content h1 {
  font-size: 68px;
  margin-bottom: 15px;
}

.quality-banner-content p {
  font-size: 18px;
}

/* Top Section Styling */
.quality-header {
  color: var(--brand-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.quality-text {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  /* color: var(--brand-blue); */
  font-weight: 500;
  font-size: 0.95rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: #d80000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-size: 12px;
}

.machine-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Bottom Process Bar Styling */
.process-container {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px 0;
  margin-top: 50px;
  background: #fff;
}

.process-item {
  text-align: center;
  border-right: 1px solid #eee;
  padding: 10px;
  transition: all 0.3s ease;
}

.process-item:last-child {
  border-right: none;
}

.process-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  fill: #d80000;
}

.process-title {
  /* color: #d80000; */
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}

.checklist-item i {
  color: #fff;
  margin-right: 10px;
  background-color: #d80000;
  border-radius: 50%;
  padding: 5px;
}

.certificate-section {
  padding: 70px 0;
  background: #f5f7fb;
}

.certificate-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px;
  border-left: 5px solid #d80000;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.certificate-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #d80000;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.certificate-box h2 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 32px;
  font-weight: 700;
}

.certificate-box p {
  margin: 0;
  color: #5f6f89;
}

.certificate-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.certificate-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
}

.certificate-download {
  border: 2px solid #d80000;
  color: #d80000;
  background: #fff;
}

.certificate-download:hover {
  background: #d80000;
  color: #fff;
}

/* Mobile Responsive adjustments */
@media (max-width: 768px) {
  .process-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .quality-header {
    font-size: 1.8rem;
  }

  .certificate-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
  }
}


/* career page start  */

.careers-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('images/careers-bg.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.careers-banner-content h1 {
  font-size: 68px;
  margin-bottom: 15px;
}

.careers-banner-content p {
  font-size: 18px;
}


.main-heading {
  color: #d80000;
  /* Dark Blue color from image */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sub-heading {
  color: #d80000;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
}

.description {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Vertical Divider for Desktop */
@media (min-width: 992px) {
  .divider {
    border-right: 1px solid #dee2e6;
  }
}

/* List Styling for Openings */
.list-group-item {
  border: 1px solid #eee;
  margin-bottom: 5px;
  border-radius: 8px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #d80000;
  transition: 0.3s;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

.list-group-item i {
  font-size: 0.8rem;
  color: #d80000;
}

/* Benefit Cards Styling */
.benefit-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}

.benefit-icon {
  font-size: 2.5rem;
  color: #d80000;
  margin-right: 20px;
  min-width: 60px;
  text-align: center;
}

.benefit-title {
  color: #d80000;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.benefit-text {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* conatct page start  */
.contact-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.contact-banner-content h1 {
  font-size: 68px;
  margin-bottom: 15px;
}

.contact-banner-content p {
  font-size: 18px;
}

.description-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 40px;
        }

        /* Contact Details */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            border: 1px solid #d80000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d80000;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-text {
            color: #333;
            font-weight: 500;
            padding-top: 10px;
        }

        /* Vertical Divider */
        @media (min-width: 992px) {
            .left-col {
                border-right: 1px solid #ddd;
                padding-right: 50px;
            }
            .right-col {
                padding-left: 50px;
            }
        }

        /* Form Styling */
        .form-control {
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            border-radius: 4px;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: #d80000;
        }

        textarea.form-control {
            height: 150px;
            resize: none;
        }

        .btn-send {
            background-color: #d80000;
            color: white;
            width: 100%;
            padding: 12px;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            border-radius: 4px;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .btn-send:hover {
            background-color: #b80000;
            color: white;
        }

        ::placeholder {
            color: #999 !important;
        }
        
        
/* Slider */
.industry-slider {
    width: 100%;
    padding: 20px 0;
}

/* Slide */
.swiper-slide {
    height: auto;
}

.industry-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s;
}

.industry-box:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.industry-box img {
    width: 100%;
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
}


        /* =========================
   GALLERY SECTION
========================= */

.gallery-page-banner {
  background-image: url(images/gallery-banner.png);
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #000000;
}

.gallery-banner-content h1 {
  font-size: 70px;
  margin-bottom: 15px;
}

.gallery-banner-content p {
  font-size: 18px;
}

/* Gallery Section */
.gallery-section{
    background:#f8f9fa;
}

/* Gallery Box */
.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

/* Image */
.gallery-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    transition:0.5s;
}

/* Overlay */
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(212,0,0,0.75);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
}

/* Icon */
.gallery-overlay i{
    color:#fff;
    font-size:35px;
    transform:scale(0.5);
    transition:0.4s;
}

/* Hover */
.gallery-box:hover img{
    transform:scale(1.1);
}

.gallery-box:hover .gallery-overlay{
    opacity:1;
}

.gallery-box:hover .gallery-overlay i{
    transform:scale(1);
}

.btn-close{
    color: #fff !important;
}

/* Popup Image */
#popupImage{
    max-height:85vh;
    object-fit:contain;
}

/* Modal Background */
.modal-content{
    background:transparent !important;
}


/* =========================
   PRODUCT SECTION
========================= */

.product-section{
    background:#f8f9fa;
}

/* Section Title */
.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Product Box */
.product-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* Hover */
.product-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* Product Image */
.product-img{
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

/* Image Hover */
.product-box:hover .product-img img{
    transform:scale(1.1);
}

/* Content */
.product-content{
    padding:25px;
    text-align:center;
}

.product-content h4{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin:0;
}

/* Responsive */
@media(max-width:768px){

    .section-title h2{
        font-size:32px;
    }

    .product-img img{
        height:240px;
    }

    .product-content h4{
        font-size:18px;
    }
}

/*service pages css */
/* =========================
   SERVICE DETAILS SECTION
========================= */

.service-details-section{
    background:#f7f7f7;
    position:relative;
    overflow:hidden;
}

/* Service Tag */
.service-tag{
    display:inline-block;
    background:#d80000;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

/* Heading */
.service-content h1{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    color:#111;
    margin-bottom:30px;
    text-transform:uppercase;
}

/* Red Text */
.service-content h1 span{
    color:#d80000;
}

/* Paragraph */
.service-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* Features */
.service-features{
    margin-top:35px;
}

/* Feature Item */
.feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#111;
    margin-bottom:18px;
    line-height:1.7;
}

/* Icon */
.feature-item i{
    color:#d80000;
    font-size:14px;
    margin-top:7px;
}

/* Bottom Text */
.bottom-text{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #ddd;
}

/* Image Box */
.service-image{
    position:relative;
    text-align:center;
}

/* Image */
.service-image img{
    width:100%;
    max-width:550px;
    object-fit:contain;
}

/* Responsive */
@media(max-width:991px){

    .service-content{
        margin-bottom:30px;
    }

    .service-content h1{
        font-size:42px;
    }
}

@media(max-width:768px){

    .service-details-section{
        padding:70px 0;
    }

    .service-content h1{
        font-size:32px;
    }

    .service-content p{
        font-size:15px;
    }

    .feature-item{
        font-size:14px;
    }
}
