/* ===== GLOBAL ===== */
:root {
  --primary: #0170b9;
  --accent: #ff3600;
  --dark-nav: #091441;
  --dark-nav2: #2e396f;
  --grey-dark: #696461;
  --text: #303030;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

/* Light */
@font-face {
  font-family: "Bank Gothic";
  src: url("font/Bank Gothic light Regular.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: "Bank Gothic";
  src: url("font/BankGothicMediumBT.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Bank Gothic";
  src: url("font/BankGothic Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("font/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("font/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("font/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("font/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  /* font-family: 'Lato', sans-serif; */
  font-size: 16px;
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 2.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bank Gothic", sans-serif;
  text-transform: uppercase;
  color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

/* ===== NAVBAR ===== */
.site-header {
  background: #f2f2f2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  padding: 0px 0;
}

.site-header .container-fluid.align-items-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  padding: 0;
}

.navbar > .container-fluid {
  padding-left: 0px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  width: 70%;
  max-width: 187px;
  display: inline-block;
}

.brand-name {
  font-family: "Bank Gothic";
  font-size: 28px;
  font-weight: 400;
  color: #213d51;
  line-height: 1.3em;
  margin: 0;
}

.brand-sub {
  font-size: 11px;
  color: #888;
  letter-spacing: 1.5px;
  display: block;
}

.navbar-collapse {
  flex: 1 1 auto;
}

#mainNav .collapse .navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar-nav {
display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
    margin-right: 20%;
}

.header-actions {
  margin-left: auto;
  position: absolute;
    top: 25px;
    right: 110px;
}

.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #213d51 !important;
  text-transform: none;
  padding: 8px 10px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  margin: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-page {
  color: var(--accent) !important;
  transform: translateY(-3px);
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  min-width: 220px;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-item {
  font-size: 18px;
  padding: 9px 18px;
  color: var(--text);
  border-bottom: 1px solid #eee;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.dropdown-item:last-child {
  border: none;
}

.dropdown-item:hover {
  background: #213d51;
  color: #fff;
}

.navbar-toggler {
  border: none;
  font-size: 22px;
  color: var(--accent);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.language-dropdown .btn {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  color: var(--dark-nav);
  background: #fff;
  border: 1px solid #d1d3d6;
  border-radius: 4px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.language-dropdown .btn:hover,
.language-dropdown .btn:focus {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 54, 0, 0.15);
}

.language-dropdown .dropdown-menu {
  min-width: 180px;
  right: 0;
  left: auto;
}

.language-dropdown .dropdown-item {
  white-space: nowrap;
}

.language-flag {
  font-size: 18px;
  line-height: 1;
}

body {
  top: 0 !important;
}

@media (max-width: 991px) {
  .header-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 12px;
  }

  .navbar-collapse {
    flex: none;
  }
}

/* ===== HERO SLIDER (Swiper) ===== */
.hero-swiper {
  width: 100%;
  height: 407px;
}
@media (max-width: 1600px) {
  .navbar-brand img {
    width: 70%;
    max-width: 157px;
    display: inline-block;
}
}

@media (max-width: 767px) {
  .hero-swiper {
    height: 340px;
  }
}

.swiper-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 60px 0 0 100px;
}

@media (max-width: 767px) {
  .slide-inner {
    padding: 100px 20px 20px;
  }
}

.slide-content {
  max-width: 32%;
}

@media (max-width: 767px) {
  .slide-content {
    max-width: 100%;
  }
}

.slide-heading {
  font-family: "Bank Gothic", sans-serif;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
  margin-bottom: 14px;
}

.slide-desc {
  font-size: 17px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

.slide-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #000;
  color: #000;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  background: transparent;
}

.slide-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Slide backgrounds */
.slide-1 .swiper-slide-bg {
  background-color: #bbbbbb;
  background-image: url("images/RUBBER-DIAPHRAGMS-1.png");
}

.slide-2 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-1-5-gas.png");
}

.slide-3 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-2-1.png");
}

.slide-4 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-3-1.png");
}

.slide-5 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-4-1.png");
}

.slide-6 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-5-1.png");
}

.slide-7 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-6-1.png");
}

.slide-8 .swiper-slide-bg {
  background-color: #4054b2;
  background-image: url("images/Banner-7-1.png");
}

/* swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* ===== PRODUCT ICONS BAR ===== */
.product-bar {
  background: #ffffff;
  padding: 0px;
}

.product-bar .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-bar-item {
  flex: 1 1 170px;
  min-width: 170px;
  max-width: 250px;
  text-align: center;
  padding: 1em;
  border-bottom: 3px solid #ffffff;
  display: flex;
  justify-content: center;
}

.product-bar-item:hover {
  transition: border-color 0.3s ease;
  border-bottom-color: #f26522;
}

.product-bar-item figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-bar-item img {
  width: 80%;
  max-width: 100%;
  /* image size increase */
  object-fit: contain;
  margin-bottom: 20px;
}

.product-bar-item figcaption {
  font-family: "Bank Gothic";
  font-size: 14px;
  line-height: 1.8;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  color: #091441;
}
.mobile-logo-wrap{
  display: none;
}
.mobile-logo-wrap img{
  width: 36%;
}
.text_end{
  text-align: end !important;
}
@media (max-width: 992px) {
  .product-bar-item {
    min-width: 140px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .product-bar-item {
    flex: 1 1 45%;
    max-width: 45%;
  }
  .text_end{
  text-align: center !important;
}
  .desktop_wrap{
 display: none;
  }
  .mobile-logo-wrap{
display: block;
text-align: center;
padding-bottom: 20px;
  }
 
}

@media (max-width: 576px) {
  .product-bar-item {
    
    max-width: 100%;
  }
}

/* .product-bar-item{
    width:14.28%;
} */
/* ===== SECTION LABELS ===== */
.section-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  text-transform:uppercase;
}

.section-title-main {
  font-family:
    "Rajdhani",
    Bank Gothic Medium;
  font-size: 3em;
  font-weight: 700;
  color: var(--dark-nav);
  text-transform: capitalize;
  line-height: 1.1;
  margin-top: -10px;
}

@media (max-width: 767px) {
  .section-title-main {
    font-size: 25px;
  }
}

.divider-slashes {
  display: flex;
  align-items: center;
  margin: 8px 0 16px;
  font-size: 2px;
}

.divider-slashes span {
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -4px;
  font-weight: 900;
  opacity: 0.7;
}

/* ===== ABOUT SECTION ===== */
#aboutSection {
  background: #ffffff;
  padding: 0px;
  margin: 0;
  max-width: 100%;
}

.about-col-right {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-logo-wrap {
  max-width: 280px;
}

.about-logo-wrap img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  height: auto;
}

.about-logo-wrap p {
  margin-top: 24px;
  font-family: "Bank Gothic", sans-serif;
  font-size: 18px;
  color: #091441;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.about-col-left {
  padding: 5em 4em;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.43), rgba(255, 255, 255, 0.43)),
    url(images/image-from-rawpixel-id-585155.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-col-left .section-label {
  font-size: 1.5em;
  color: var(--accent);
  font-weight: 300;
  margin-bottom: 0px;
}
.title {
  font-family: "Bank Gothic", sans-serif;
  font-size: 3em;
  font-weight: 700;
  color: var(--dark-nav);
  text-transform: capitalize;
  line-height: 32px;
  margin-top: -10px;
}
.section-title{
  font-family:
    "Rajdhani",
    Bank Gothic Medium;
  font-size: 3em;
  font-weight: 700;
  color: var(--dark-nav);
  text-transform: capitalize;
  line-height: 1.1;
  margin-top: -10px;
}
.about-col-left .section-title-main {
  font-family: "Bank Gothic", sans-serif;
  font-size: 3em;
  font-weight: 700;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  color: #1d1d37;
  max-width: 100%;
  line-height: 1.3em;
}

.about-col-left .divider-slashes {
  display: flex;
  text-align: right;
  padding-block-start: 2px;
  padding-block-end: 2px;
}

.about-col-left .divider-slashes span {
  display: inline-block;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -6px;
}

.about-text {
  color: #303030;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: white;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 40px;
  letter-spacing: 1px;
  transition: all 0.2s;
  margin-top: 0px;
}

.btn-about:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}
.section-title-main.text-end {
  position: relative;
  display: block;
  padding-bottom: 20px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}

/* ::after ka use karke exact striped line right side me lagana */
.section-title-main.text-end::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 3px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 6px
      /* Pure pattern ki width ka end */
  );
}
.section-title-main {
  position: relative;
  display: block;
  padding-bottom: 20px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}
.section-title-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 2px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 5px
      /* Pure pattern ki width ka end */
  );
}
.section-title-main-2 {
  position: relative;
  display: block;
  padding-bottom: 20px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}
.section-title-main-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 30%;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 2px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 5px
      /* Pure pattern ki width ka end */
  );
}
.stats-heading {
  position: relative;
  display: block;
  padding-bottom: 20px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}
.stats-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 2px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 5px
      /* Pure pattern ki width ka end */
  );
}
.with-stripes {
  position: relative;
  display: block;
  padding-bottom: 20px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}
.with-stripes::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 2%; /* Line ko text ke exact center point ke paas se shuru karne ke liye */
  width: 26%;
  margin: 0 auto;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 2px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 5px
      /* Pure pattern ki width ka end */
  );
}
.contact-title {
  position: relative;
  display: block;
  padding-bottom: 20px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}
.contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0; /* Line ko text ke exact center point ke paas se shuru karne ke liye */
  width: 80%;
  left: 3px;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 2px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 5px
      /* Pure pattern ki width ka end */
  );
}
.breadcrumb-text {
  position: relative;
  display: block;
  padding-bottom: 25px; /* Heading aur line ke beech ka gap */
  margin-bottom: 20px;
}
.breadcrumb-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    #fe4614,
    /* Bright Orange color */ #fe4614 2px,
    /* Orange stripe ki width */ #d9d9d900 3px,
    /* Dark Blue background color se match gap */ #ffffff00 4px
      /* Pure pattern ki width ka end */
  );
}
@media (max-width: 767px) {
  #aboutSection {
    padding: 50px 0 0;
  }

  .about-col-right,
  .about-col-left {
    padding: 30px 20px;
  }

  .about-col-right {
    min-height: auto;
    margin-top: 30px;
  }

  .about-col-left .section-title-main {
    font-size: 25px;
    text-align: center;
  }
}

/* ===== MARKETS SECTION ===== */
#marketsSection {
  background: linear-gradient(180deg, #091441 0%, #2e396f 100%);
  padding: 60px 0;
}

.markets-img-col {
  background-image: url("https://diatax.com/wp-content/uploads/2020/08/Diaphragm-Application-Markets.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.markets-text-col {
  padding: 0px;
}

.markets-text-col .section-title-main {
  color: #fff;
  font-size: 44px;
  max-width: 80%;
}

@media (max-width: 767px) {
  .markets-text-col .section-title-main {
    font-size: 25px;
    text-align: center;
    max-width: 100%;
  }
}

.markets-body {
  color: #fff;
  text-align: justify;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== STATS SECTION ===== */

.global-p {
  text-align: left;
  color: #303030;
  line-height: 1.7;
}

#statsSection {
  background: #fff;
  padding: 30px 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border: 15px solid #fff;
  color: #fff;
  cursor: default;
  font-size: 19px;
  font-family: "Rajdhani", sans-serif;
}

.stat-box.dark {
  background: linear-gradient(180deg, #091441 0%, #2e396f 100%);
}

.stat-box.grey {
  background: #696461;
}

.stat-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.stat-lbl {
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
  line-height: 1.1;
  margin-top: 0px;
  font-weight: 400;
}

#statsSection .section-left {
  padding: 2em 3em;
}

.stats-heading {
  font-family: "Bank Gothic", sans-serif;
  font-size: 3em;
  font-weight: 700;
  color: #1d1d37;
  text-transform: capitalize;
  max-width: 90%;
}

@media (max-width: 767px) {
  .stats-heading {
    font-size: 25px;
    text-align: center;
  }
  .text-start{
    text-align: center !important;
  }
  .diaphragm-left h2{
    text-align: center;
   font-size: 25px !important;
  }
  .section-label{
    font-size: 21.88px;
    font-weight: 400;
  }
}

/* ===== DIAPHRAGM TYPES SECTION ===== */
#diaphragmSection {
  background: linear-gradient(90deg, #091441 0%, #2e396f 100%);
  position: relative;
  padding: 70px 0;
}

#diaphragmSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://diatax.com/wp-content/uploads/2020/07/sustainable-energy.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.24;
  filter: saturate(0%);
}

.diaphragm-inner {
  position: relative;
  z-index: 1;
}

.diaphragm-left {
  padding: 0 2em 0 3em;
}

.diaphragm-left .section-title-main {
  color: #fff;
  font-size: 50px;
}

@media (max-width: 767px) {
  .diaphragm-left .section-title-main {
    font-size: 25px;
  }
}

.diaphragm-body {
  color: #fff;
  text-align: justify;
  font-size: 15px;
}

.btn-diaphragm {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 24px;
  letter-spacing: 1px;
  transition: all 0.2s;
  margin-top: 16px;
}

.btn-diaphragm:hover {
  background: var(--accent);
  color: #fff;
}

/* Diaphragm image carousel */
.diaphragm-carousel .swiper-slide-image {
  width: 100%;
  border: 5px solid #696461;
  border-radius: 20px;
}

.diaphragm-carousel .swiper-slide {
  padding: 10px;
}

.diaphragm-carousel figcaption {
  text-align: center;
  color: #fff;
  font-size: 15px;
  margin-top: 8px;
}

/* ===== CERTIFICATIONS ===== */
#certsSection {
  background-image: url("https://diatax.com/wp-content/uploads/2020/07/image-from-rawpixel-id-585155.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5em 2em 6em;
}

#certsSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  mix-blend-mode: overlay;
}

.certs-inner {
  position: relative;
  z-index: 1;
}

.cert-logo-wrap {
  background: #fff;
  padding: 5px;
  margin: 5px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  border-bottom: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: border-color 0.2s;
}

.cert-logo-wrap:hover {
  border-color: #696461;
}

.cert-logo-wrap img {
  max-height: 120px;
  max-width: 120px;
  object-fit: contain;
}

/* ===== CONTACT SECTION ===== */
#contactSection {
  background: linear-gradient(180deg, #091441 0%, #2e396f 100%);
  padding: 50px 0 50px;
}

.contact-section-icon {
  display: flex;
  align-items: center;
  color: #ff3600;
  font-size: 50px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.contact-title {
  font-family: "Bank Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  color: #fff;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .contact-title {
    font-size: 28px;
  }
  .certs-inner p{
    text-align: center;
  }
}

.contact-card {
  background: #fff;
  border-bottom: 3px solid #fff;
  box-shadow: 0 1px 10px 2px rgba(0, 0, 0, 0.2);
  padding: 2em;
  transition: border-color 0.2s;
  height: 100%;
}

.contact-card:hover {
  border-color: #696461;
}

.contact-card .icon {
  font-size: 24px;
  border-radius: 50%;
  background-color: #ff3600;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #ffffff;
  margin-bottom: 12px;
}

.contact-card h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--dark-nav);
  font-size: 16px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: #555;
}

.contact-card .contact-email {
  color: var(--accent);
  font-weight: 600;
  line-height: 1.3;
}

/* ===== INQUIRY FORM ===== */
#inquirySection {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.43), rgba(255, 255, 255, 0.43)),
    url(images/image-from-rawpixel-id-585155.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 0;
}

.inquiry-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  border-radius: 0;
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.btn-send {
  background: #2e396f;
  color: #fff;
  border: none;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 50px;
  width: 100%;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-send:hover {
  background: var(--accent);
}

/* ===== FOOTER ===== */
#footer {
  background: #0b2035;
  color: #ffffff;
  padding: 50px 0 0;
}

.footer-logo-col {
  padding-bottom: 30px;
}

.footer-logo-col img {
  max-width: 180px;
  margin-bottom: 12px;
  display: block;
}

#footer h6 {
  font-family: "Bank Gothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  border-left: 3px solid var(--accent);
  padding: 0px 0px 0px 15px;
  border-width: 0px 0px 0px 3px;
}

#footer ul {
  list-style: none;
  padding: 0;
}

#footer ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

#footer ul li a {
  color: #ffffff;
  transition: color 0.2s;
}

#footer ul li a:hover {
  color: var(--accent);
}

#footer ul li i {
  color: #ffffff;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--accent);
}

.footer-bottom {
  background: #ffffff;
  padding: 16px 0;
  margin-top: 40px;
  font-size: 13px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: black;
  text-align: center;
}

.footer-bottom a {
  color: var(--accent);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ===== MISC ===== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .hero-swiper {
    height: 340px;
  }
}

.elementor-section .elementor-container {
  display: flex;
  margin-inline: auto;
  position: relative;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -15px;
}
.box-1 {
  background-color: #131b3a;
  padding: 32px;
}
.m_b_5 {
  margin-bottom: 60px;
}
.breadcrumb-text-2{
position: relative;
padding-bottom: 20px;
margin-bottom: 20px;
}
.breadcrumb-text-2::after{
content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 65%;
    height: 6px;
    background: repeating-linear-gradient(-45deg, #fe4614, /* Bright Orange color */ #fe4614 2px, /* Orange stripe ki width */ #d9d9d900 3px, /* Dark Blue background color se match gap */ #ffffff00 4px /* Pure pattern ki width ka end */);
    
}
.section-title-main-3{
position: relative;
padding-bottom: 20px;
margin-bottom: 20px;
 font-family:
    "Rajdhani",
    Bank Gothic Medium;
  font-size: 50px;
  font-weight: 700;
  color: var(--dark-nav);
  text-transform: capitalize;
  line-height: 1.1;
  margin-top: -10px;
}
.section-title-main-3::after{
content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 60%;
    height: 6px;
    background: repeating-linear-gradient(-45deg, #fe4614, /* Bright Orange color */ #fe4614 2px, /* Orange stripe ki width */ #d9d9d900 3px, /* Dark Blue background color se match gap */ #ffffff00 4px /* Pure pattern ki width ka end */);
    
}
.bottom-heading{
   
    font-size: 36px;
    font-weight: 900;
    color: #1d1d37;
    margin-bottom: 40px;

}


/* RIGHT SIDE WRAPPER */
.image-stack {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 20px;
}

/* FIGURE BOX */
.image-stack figure {
  position: absolute;
  margin: 0;
  width: 320px; /* adjust if needed */
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
}

.image-stack .stack-fig-1 {
  top: 0;
  left: 15%;
  z-index: 3;
}

.image-stack .stack-fig-2 {
  top: 290px;
  right: -10%;
  z-index: -1;
}

.image-stack .stack-fig-3 {
  top: 480px;
  left: 15%;
  z-index: 1;
}

.image-stack figure:hover {
  z-index: 10 !important;
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

/* IMAGE */
.image-stack img {
  width: 100%;
  display: block;
  height: auto;
}

/* CAPTION BAR (ORANGE OVERLAY) */
.image-stack figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e84c1f; /* accent orange */
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.h-800{
  height: 1100px;
  padding-top:80px;
}
.m-top{
  margin-top: 180px
}
.m2-top{
  margin-top: 100px
}

/* TITLE */
.title-wrap{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.title-line{
    width:3px;
    height:35px;
    background:#111;
    margin-right:12px;
}

.title{
    color:#ff3d00;
    font-size:48px;
    font-weight:600;
    letter-spacing:1px;
}

/* TABLE WRAPPER */
.table-wrap{
    overflow-x:auto;
}

/* TABLE STYLE */
table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    font-size:14px;
}

/* HEADER */
thead th{
    background:#ff8a66; /* orange like image */
    color:#303030;
    padding:14px 20px;
    
    font-weight:800;
    border:1px solid #ffffff;
    font-size:16px;
}

/* FIRST COLUMN */
tbody td:first-child{
    font-weight:500;
    text-align:left;
}

/* BODY CELLS */
tbody td{
    padding:14px 10px;
    
    border:1px solid #e5e5e5;
    color:#333;
    font-size: 16px;
}

/* ROW HEIGHT FEEL */
tbody tr{
    background:#fff;
}

/* SUBTLE GRID LOOK */
table, th, td{
    border:1px solid #e6e6e6;
}

/* ===== MOBILE & TABLET NAVBAR OVERRIDES ===== */
@media (max-width: 1199.98px) {
  .site-header {
    background: #f2f2f2 !important;
    padding: 8px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
  }

  .navbar {
    position: relative !important;
  }

  .navbar > .container-fluid,
  .navbar > .container {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    order: 1 !important;
    margin-right: auto !important;
    max-width: 55% !important;
  }

  .navbar-brand img {
    max-width: 110px !important;
    height: auto !important;
  }

  .brand-name {
    font-size: 18px !important;
  }

  .brand-sub {
    font-size: 9px !important;
  }

  /* Language Dropdown next to toggler */
  .header-actions {
    display: flex !important;
    /* order: 2 !important; */
    margin-left: auto !important;
    margin-right: 12px !important;
    margin-top: 0 !important;
  }

  .language-dropdown .btn {
    background: #ffffff !important;
    border: 1px solid #d1d3d6 !important;
    padding: 6px 10px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
  }

  /* Toggler Button */
  .navbar-toggler {
    order: 3 !important;
    padding: 6px 10px !important;
    font-size: 20px !important;
    color: #213d51 !important;
    border: 1px solid #d1d3d6 !important;
    border-radius: 4px !important;
    background-color: #ffffff !important;
  }

  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  /* Hamburger to X icon transition when open */
  .navbar-toggler[aria-expanded="true"] .fa-bars::before {
    content: "\f00d" !important;
  }

  /* Absolute Positioned white menu overlay matching user screenshot */
  .navbar-collapse {
    order: 4 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-top: 1px solid #eaeaea !important;
    padding: 15px 20px 25px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    z-index: 9999 !important;
  }

  .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .navbar-nav .nav-item {
    width: 100% !important;
  }

  .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #213d51 !important;
    padding: 10px 10px !important;
    width: 100% !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    border: none !important;
    transform: none !important;
    line-height: 1.5 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active-page {
    color: var(--accent) !important;
    background: transparent !important;
  }

  /* Dropdown indicator */
  .navbar-nav .dropdown-toggle::after {
    color: #213d51 !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-left: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    transition: transform 0.25s ease !important;
  }

  .navbar-nav .dropdown-toggle.show::after {
    transform: rotate(180deg) !important;
  }

  /* Dropdown Menu inside Collapse */
  .navbar-collapse .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    background-color: #fcfdfe !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 5px 0 10px 20px !important;
    border-left: 3px solid var(--accent) !important;
    border-radius: 0 !important;
  }

  .navbar-collapse .dropdown-item {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px !important;
    color: #4a5e6d !important;
    padding: 8px 10px !important;
    border: none !important;
    background: transparent !important;
    transition: color 0.2s ease !important;
  }

  .navbar-collapse .dropdown-item:hover,
  .navbar-collapse .dropdown-item:focus {
    color: var(--accent) !important;
    background-color: transparent !important;
  }
}
.counter-item{
  font-family:'Rajdhani',sans-serif;
  font-size:55px;
  font-weight:700;
  display:block;
  line-height: 54px;
}
.font-48{
font-size: 48px !important;
}
figure{
  position: relative;
}
@media (max-width:991px) {
  .m-top{
    margin-top: 0px;
  }
  .h-800{
 height: 1600px;
  }
}
@media (max-width: 768px) {
  .image-stack {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    margin: 40px auto !important;
  }
 
 .markets-text-col{
    padding:0px  20px;
  }
  .slide-desc{
    font-size: 13px;
  }
  .page-hero{
    min-height: 235px;
  }
  .section-label{
    text-align: center;
  }
  .section-title-white-custom::after{
    width: 100% !important;
  }
  .section-title-main{
    text-align: center;
  }
  .standout-title{
    font-size: 25px !important;
  }
  .counter-item{
  
  font-size:32px;
 
}
.section-title-main-2{
  text-align: center;
}
.section-title-main-2::after{
  width: 100%;
}
.product-grid-title{
  font-size: 25px;
}
.font-48{
font-size: 25px !important;
}
.breadcrumb-text-2::after{
  width: 100%;
}
.section-title-main-3{
  text-align: center;
}
.section-title-main-3::after{
  width: 100%;
}
.image-stack figure{
  width: 270px;
}

.image-stack .stack-fig-1 {
  top: 0;
  left: 10%;
  z-index: 3;
}

.image-stack .stack-fig-2 {
  top: 290px;
  right: 5%;
  z-index: -1;
}

.image-stack .stack-fig-3 {
  top: 480px;
  left: 10%;
  z-index: 1;
}
.m2-top{
  margin-top: 0px;
}
.section-title-main-3{
  font-size: 25px;
}
.section-title{
   font-size: 25px;
}
}

.our-apc{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  
  margin-top: 30px;
  background-color: #fff;
}
.w-250{
  width: 275px;
}
.counter-var{
  background:#131B3A;
  color:#fff;
  padding:2.5em 1em; 
  margin: 15px 0px 30px;
}
.box-before {
    position: relative;
    box-shadow: 0px 19px 10px -10px rgba(0, 0, 0, 0.34);

}

.box-before::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #FF5E14;
    transition: width 0.3s ease;
}

.box-before:hover::after {
    width: 100%;
}

.language-dropdown .dropdown-menu {
    min-width: 130px;
    max-height: 150px;
    overflow-y: auto;
}

.language-dropdown .dropdown-item img {
    margin-right: 8px;
}

.language-dropdown .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 130px;
}
.lau-text-13 li a{
  font-size: 13px !important;
   padding: 0px 0px 0px 10px;
}


@media (max-width: 575px) {
    .navbar-brand {
        display: block !important;
        align-items: center !important;
        gap: 8px !important;
        order: 1 !important;
        margin: auto !important;
        max-width: 100% !important;
        margin-right: 56px !important;
    }
    .navbar-toggler {
        order: 3 !important;
        padding: 6px 10px !important;
        font-size: 20px !important;
        color: #213d51 !important;
        border: 1px solid #d1d3d6 !important;
        border-radius: 4px !important;
        background-color: #ffffff !important;
        position: absolute;
        top: 0;
    }
    .header-actions {
    margin-left: auto;
    position: absolute;
    top: 0px;
    right: 25px;
    z-index: -1;
}
.navbar-brand img{
  padding-top: 70px;
  max-width: 132px !important
}
}
@media (max-width: 425px) {
    .navbar-brand {
        
        margin-right: 53px !important;
    }}
    @media (max-width: 375px) {
    .navbar-brand {
      
        margin-right: 40px !important;
    }}
     @media (max-width: 320px) {
    .navbar-brand {
      
        margin-right: 30px !important;
    }}