/* ===== BODY ===== */
body {
  padding-top: 120px;
  font-family: "Poppins", sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #cae0f1;
  color: #0a0606;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 140px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON STYLE */
.top-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #0a0606;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-icon i {
  font-size: 14px;
  color: #0a0606;
}

.top-right a,
.top-right span {
  color: #0a0606;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* ===== MAIN HEADER ===== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 110px;
  background: #fff;
  position: fixed;
  top: 58px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
}

.main-header.shrink {
  padding: 8px 110px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.logo img {
  max-height: 50px;
  transition: all 0.3s;
}

/* ===== NAV MENU ===== */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.menu a:hover {
  color: #2e4cbf;
}

/* ===== MEGA DROPDOWN ===== */
.custom-dropdown-new {
  position: relative;
  cursor: pointer;
}

.dropdown-menu-new {
  display: none;
  position: absolute;
  top: 100%;
  left: -550px;
  width: 1050px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 999;
}

.custom-dropdown-new:hover .dropdown-menu-new {
  display: flex;
}

.dropdown-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.dropdown-flex ul {
  list-style: none;
  min-width: 250px;
  padding: 0 15px;
  margin: 0;
}

.dropdown-flex li a {
  display: block;
  padding: 6px 0;
  color: #030202;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.dropdown-flex li a:hover {
  color: #2e4cbf;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  width: 25px;
  height: 20px;
  cursor: pointer;
  justify-content: space-between;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  background: #2e4cbf;
  border-radius: 2px;
}


/* Tablet */
@media (max-width:991px){
  body {
    padding-top: 70px; /* adjusts for main-header without top-bar */
  }

  .main-header {
    top: 0;
    flex-wrap: wrap;
    padding: 14px 30px;
  }

  .logo img {
    max-height: 40px;
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 15px;
    display: none;
    margin-top: 20px;
    background: #fff;
    padding-bottom: 20px;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: block;
    padding: 8px 0;
  }

  /* Disable hover mega menu on mobile */
  .custom-dropdown-new:hover .dropdown-menu-new {
    display: none;
  }

  /* Enable click dropdown */
  .custom-dropdown-new.active .dropdown-menu-new {
    display: flex;
    flex-direction: column;
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 10px 0;
  }

  .dropdown-flex {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-flex ul {
    padding: 0;
    min-width: 100%;
  }

  .dropdown-flex li a {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width:576px){
  .main-header {
    padding: 12px 67px;
    margin-top: -54px;
  }

  .logo img {
    max-height: 35px;
  }

  .menu a {
    font-size: 13px;
  }

  .menu {
    gap: 10px;
  }

  .dropdown-flex li a {
    font-size: 12px;
  }

  .top-bar {
    display: none;
  }
}
/* page header */
.banner {
  width: 100%;
  min-height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.career-ban {
  width: 100%;
  min-height: 400px;
  background-image: url("../images/career-banner.png");

  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.about-ban {
  width: 100%;
  min-height: 400px;
  background-image: url("../images/about-banner.png");
  
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.contact-ban {
  width: 100%;
  min-height: 400px;
  background-image: url("../images/contact-banner.png");
 
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.market-ban {
  width: 100%;
  min-height: 400px;
  background-image: url("../images/market-ban.png");
 
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-wrapper {
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 15px 0;
  background-color: #d6d8da;
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
  font-size: 16px;
}

.breadcrumb a {
  text-decoration: none;
  color: #060707;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #007bff;
  /* primary color on hover */
}

.breadcrumb .active {
  color: #007bff;
  font-weight: 500;
}

/* ===== RESPONSIVE BANNER ===== */
@media (max-width: 1200px) {
  .banner {
    min-height: 350px;
  }
}

@media (max-width: 992px) {
  .banner {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 230px;
  }
}

@media (max-width: 576px) {
  .banner {
    min-height: 180px;
  }
}

/* ===== RESPONSIVE BREADCRUMB ===== */
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .breadcrumb {
    font-size: 12px;
  }

  .breadcrumb-wrapper {
    padding: 10px 0;
  }
}
/* carousel */

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #2e4cbf;
}

@media (max-width: 768px) {
  .banner-img {
    height: 250px;
  }
}

/* hero content */
.hero-content {
  width: 90%;
  padding: 60px;
  border-radius: 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #dfdfdf;
  position: relative;
  bottom: 3rem;
  background-color: #ffff;
  z-index: 222;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.hero-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #050404;
  line-height: 1.3;
}

.hero-content .highlight {
  color: #2e4cbf;
}

.hero-content p {
  max-width: 850px;
  margin: 25px auto;
  font-size: 17px;
  line-height: 1.7;
  color: #0a0808;
}

.hero-content p a {
  color: #010101;
  font-weight: 600;
  text-decoration: none;
}

.hero-content p a:hover {
  text-decoration: underline;
}

.hero-content .btn {
  padding: 14px 38px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 0;
}

.hero-content .btn-secondary {
  background: #0c0b0b;
  border: none;
}

.hero-content .btn-secondary:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 30px 20px !important;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content .col-sm-6 {
    justify-content: center !important;
    margin-bottom: 15px;
  }

  .hero-content .btn {
    width: 100%;
    max-width: 260px;
  }
}

/* why choose us */
.hero-choose-section {
  padding: 80px 0;
  background: #f3f6f5;
}

/* underline */
.section-underline {
  width: 60px;
  height: 3px;
  background: #0e60d2;
  display: block;
}

/* badges */
.badge-item {
  background: #0e60d2;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 14px;
}

/* stats layout */
.stats-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 30px;
}

/* cards */

.stat-card {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 55px;
  height: 55px;
  margin: auto;
  background: #0e60d2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

/* bottom content */

.stats-bottom {
  margin-top: 30px;
  text-align: center;
}

.stats-bottom p {
  color: #666;
  margin-bottom: 15px;
}
/* ===== RESPONSIVE ===== */

/* Large tablets / small desktops */
@media (max-width:1200px){
  .hero-choose-section {
    padding: 60px 30px;
  }

  .stats-wrapper {
    gap: 15px;
  }
}

/* Tablets */
@media (max-width:991px){
  .hero-choose-section {
    padding: 50px 20px;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .stat-card {
    padding: 20px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .badge-item {
    font-size: 13px;
    padding: 5px 12px;
    margin-bottom: 5px;
  }

  .stats-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Mobile */
@media (max-width:576px){
  .hero-choose-section {
    padding: 40px 15px;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .stat-card {
    padding: 15px;
  }

  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .badge-item {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 5px;
  }

  .stats-bottom p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .section-underline {
    width: 50px;
    height: 3px;
  }
}
/* our clients */
.clients-section {
  padding: 3px 4px 53px;
  background-color: #f3f6f5;
}

.clients-slider {
  width: 90%;
  margin: auto;
  position: relative;
}

/* card */

.client-card {
  background: #e3e3e3;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 4px;
}

.client-card img {
  max-width: 160px;
  max-height: 70px;
  object-fit: cover;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

/* arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 42px;
  height: 42px;
  background: #0e60d2;
  color: #fff;
  border-radius: 4px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
}

/* responsive */

@media (max-width: 768px) {
  .client-card {
    height: 100px;
  }

  .client-card img {
    max-width: 120px;
  }
}

/* map */

.map-section{
width:100%;
max-width:1400px;
margin:auto;
}

.map-title{
text-align:center;
font-size:36px;
font-weight:700;
margin:40px 0;
}

#customMap{
width:100%;
height:650px;
}

/* country label */

.country-label{
font-size:13px;
font-weight:600;
color:#333;
white-space:nowrap;
}

.leaflet-interactive{
cursor:pointer;
}

/* hide controls */

.leaflet-control-container{
display:none;
}

/* ===== RESPONSIVE MAP SECTION ===== */

/* Large tablets / small desktops */
@media (max-width:1200px){
  .map-section {
    max-width: 1000px;
  }

  .map-title {
    font-size: 32px;
    margin: 30px 0;
  }

  #customMap {
    height: 550px;
  }

  .country-label {
    font-size: 12px;
  }
}

/* Tablets */
@media (max-width:991px){
  .map-section {
    padding: 0 20px;
  }

  .map-title {
    font-size: 28px;
    margin: 25px 0;
  }

  #customMap {
    height: 450px;
  }

  .country-label {
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width:576px){
  .map-section {
    padding: 0 10px;
  }

  .map-title {
    font-size: 24px;
    margin: 20px 0;
  }

  #customMap {
    height: 350px;
  }

  .country-label {
    font-size: 10px;
  }
}

/* ================= CATEGORY SECTION ================= */
.wm-section {
  padding: 40px 6%;
}

.wm-section.alt-bg {
  background: #ecedef;
}

.wm-slider-box {
  position: relative;
  overflow: hidden;
}

.wm-product-track {
  display: flex;
  gap: 30px;
  transition: 0.5s;
}

.wm-product-card {
  background: #fff;
  border: 1px solid #e2e6ec;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
  animation: fadeUp 0.9s ease both;
  min-width: 32%;
}

.wm-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1c2d, #1b3a5f);
  transform: translateY(100%);
  transition: 0.5s;
}

.wm-product-card:hover::before {
  transform: translateY(0);
}

.wm-product-inner {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.wm-product-image {
  height: 200px;
  overflow: hidden;
  background: #eef2f7;
}

.wm-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.wm-product-card:hover .wm-product-image img {
  transform: scale(1.08);
}

.wm-product-content {
  margin-top: 15px;
}

.wm-product-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.wm-product-content p {
  font-size: 14px;
  color: #110e0e;
  line-height: 1.5;
}

.wm-product-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  border: 1px solid #2e4cbf;
  color: #2e4cbf;
  font-size: 13px;
  text-decoration: none;
  transition: 0.4s;
}

.wm-product-card:hover h4,
.wm-product-card:hover p {
  color: #fff;
}

.wm-product-card:hover .wm-product-btn {
  background: #2e4cbf;
  color: #000;
}

.wm-slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #2e4cbf;
  border: none;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 5;
}

.wm-slider-arrow.prev {
  left: -10px;
}

.wm-slider-arrow.next {
  right: -10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .wm-product-card {
    min-width: 48%;
  }
}

@media (max-width: 600px) {
  .wm-product-card {
    min-width: 100%;
  }
}

/* about us home */
.welcome-section {
  padding: 70px 0;
  background:
    linear-gradient(#f2f2f2 1px, transparent 1px),
    linear-gradient(90deg, #f2f2f2 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: #fff;
}

.main-title {
  text-align: center;
  margin-bottom: 55px;
}

.main-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0d60d2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-title h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
  text-transform: uppercase;
}

.title-bar {
  width: 45px;
  height: 3px;
  background: #909090;
  margin: 15px auto 0;
}

/* Card boxes */
.content-box {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 30px;
  height: 100%;
}

.content-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  text-transform: uppercase;
}

/* CMD message */
.cmd-text {
  position: relative;
  padding-right: 20px;
}

.cmd-text:after {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 80px;
  color: #909090;
  opacity: 0.4;
}

.cmd-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.cmd-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.cmd-profile img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
}

.cmd-profile span {
  font-size: 14px;
  font-weight: 600;
}

/* About section */
.about-text {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

.about-text li {
  text-align: left;
  line-height: 1.6;
}

.btn-read {
  margin-top: 25px;
  background: #0d60d2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  border: none;
}

.video-box {
  text-align: center;
}

.video-box img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 3px;
}

.video-title {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .main-title h2 {
    font-size: 26px;
  }
}

.about-section {
  width: 90%;
  margin: auto;
  padding: 35px 0;
}

.about-row {
  display: flex;
  align-items: center;
  position: relative;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-img {
  width: 50%;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

.about-content {
  width: 50%;
  background: #fff;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-left: -80px;
  position: relative;
}

.about-row.reverse .about-content {
  margin-left: 0;
  margin-right: -80px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.iota-container {
  max-width: 1300px;
  margin: auto;
  /* padding:40px 20px; */
}

/* Content Card */
.iota-box {
  background: #f7f9fc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

/* Title */
.iota-title {
  font-size: 32px;
  color: #0c2d57;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.iota-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0c2d57;
  margin-top: 10px;
  border-radius: 2px;
}

/* Paragraph */
.iota-text {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* List */
.iota-list {
  margin-top: 15px;
  padding-left: 20px;
}

.iota-list li {
  color: #444;
  margin-bottom: 8px;
}

/* Responsive */

@media (max-width: 992px) {
  .iota-title {
    font-size: 28px;
  }

  .iota-text,
  .iota-list li {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .iota-title {
    font-size: 24px;
  }

  .iota-text,
  .iota-list li {
    font-size: 15px;
  }

  .iota-box {
    padding: 20px;
  }
}

/* MAIN SECTION */

.iota-info-section {
  width: 90%;
  margin: auto;
  padding: 11px 0;
}

/* CONTENT BOX */

.iota-info-box {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

/* HEADING */

.iota-heading {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1f4f8b;
}

/* PARAGRAPH */

.iota-info-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* LIST */

.iota-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.iota-list li {
  margin-bottom: 8px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .iota-info-section {
    width: 95%;
    padding: 50px 0;
  }

  .iota-info-box {
    padding: 25px;
  }

  .iota-heading {
    font-size: 24px;
  }

  .iota-info-box p {
    font-size: 14px;
  }
}

/* products pages css */
.page-banner {
  position: relative;
  min-height: 300px;
  color: #fff;
  background-image: url("../images/common-banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-banner-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  transform: translateY(-50%);
}

.page-banner-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
}

.btn-quote {
  background-color: #2b57a3;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-quote:hover {
  background-color: #2b57a3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-quote:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-quote:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(15, 1, 170, 0.4);
}
/* ============================= */
/* PRODUCT PAGE LAYOUT */
/* ============================= */

.product-page {
  margin-top: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
  line-height: 1.8;
}

/* ============================= */
/* PRODUCT GALLERY */
/* ============================= */

.horizontal-gallery {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.horizontal-gallery::-webkit-scrollbar {
  height: 6px;
}

.horizontal-gallery::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.gallery-image {
  width: 196px;
  height: 159px;
  border-radius: 6px;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* IMAGE MODAL */
/* ============================= */

.zoom-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 999;
}

.close-btn:hover {
  background: #000;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.4;
}
/* ============================= */
/* SPECIFICATION TABLE */
/* ============================= */

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

.specs-table th {
  background: #f8f9fa;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  width: 35%;
  color: #222;
  border: 1px solid #e5e5e5;
}

.specs-table td {
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  color: #555;
}

.specs-table tr:nth-child(even) {
  background: #fafafa;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 6px;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #2b57a3;
  position: absolute;
  left: 0;
  bottom: 0;
}
/* ========================= */
/* PRODUCT SEO CONTENT AREA */
/* ========================= */

.product-content {
  margin-top: 40px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
  color: #444;
}

/* ========================= */
/* HEADING STYLE */
/* ========================= */

.product-content h2,
.product-content h3,
.product-content h4 {
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 15px;
  font-size: 28px;
  position: relative;
  padding-bottom: 8px;
}

/* underline design */

.product-content h2::after,
.product-content h3::after,
.product-content h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2b57a3;
  position: absolute;
  bottom: 0;
  left: 0;
}


/* ========================= */
/* PARAGRAPH */
/* ========================= */

.product-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}

.product-content strong {
  color: #000;
  font-weight: 600;
}


/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 576px) {

  .product-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}


/* contact us */
.contact06 {
  padding: 60px 20px;
}

.contact06 h2 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  color: #2b57a3;
}

/* Contact Box */
.contact06 .contact-box {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

/* Form */
.contact06 .contact-form {
  flex: 1;
  padding: 40px;
}

.contact06 .contact-form h4 {
  margin-bottom: 25px;
  color: #2b57a3;
  font-size: 22px;
}

.contact06 .row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact06 .form-group {
  width: 100%;
  margin-bottom: 15px;
}

.contact06 input,
.contact06 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  font-size: 14px;
  background: #f9f9f9;
  transition: 0.3s;
}

.contact06 input:focus,
.contact06 textarea:focus {
  outline: none;
  border-color: #2b57a3;
  background: #fff;
}

.contact06 textarea {
  resize: none;
}

.contact06 .send-btn {
  background: #2b57a3;
  color: white;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s;
}

.contact06 .send-btn:hover {
  background: #1d3e7c;
}

/* Map */
.contact06 .contact-map {
  flex: 1;
  min-height: 400px;
}

.contact06 .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Contact Info Boxes */
.contact06 .contact-info {
  display: flex;
  justify-content: space-between;
  /* margin-top: 50px; */
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  padding: 29px;
}

.contact06 .info-box {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact06 .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact06 .icon {
  width: 50px;
  height: 50px;
  background: #2b57a3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}

.contact06 .info-box p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact06 .contact-box {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact06 .contact-form {
    padding: 30px 20px;
  }

  .contact06 h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .contact06 .row {
    flex-direction: column;
  }

  .contact06 h2 {
    font-size: 24px;
  }
}

/* request a call */
.panorama-section {
  position: relative;
  min-height: 50vh;
  background-image: url("../images/bg-contact.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-repeat: no-repeat;
  padding: 20px 30px;
}

.panorama-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* CONTENT */
.panorama-content {
  position: relative;
  z-index: 2;
}

/* HEADING LINE */
.section-line {
  width: 50px;
  height: 2px;
  background: #fff;
  border: none;
  margin: 15px 0;
}

/* FORM */
.callback-form input,
.callback-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
  margin-bottom: 20px;
  color: #fff;
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
  color: #e0e0e0;
}

.callback-form button {
  width: 100%;
  padding: 14px;
  background: #ffffff;
  color: #020b8d;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.callback-form button:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .panorama-section {
    background-attachment: scroll;
    /* better mobile performance */
    padding: 60px 0;
  }
}

/* Footer Background */
.site-footer {
  position: relative;
  background: url("../images/footer-bg.jpg") center center / cover no-repeat;
  padding: 25px 10px;
  color: #050404;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Footer Row */
.footer-row {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

/* Footer Columns */
.footer-col {
  flex: 1;
  min-width: 200px;
}

/* Headings */
.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
}

.footer-col h3::before {
  content: "\f0c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #000000;
}

/* Paragraphs & Links */
.footer-col p,
.footer-col li {
  line-height: 1.7;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* Tick style for links */
.footer-col.links-col ul li::before,
.footer-col.quick-col ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  background-color: #000000;
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 12px;
}

.footer-col ul li a {
  color: #050404;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #000000;
}

/* Contact Icons */
.footer-col.contact-col ul li i {
  margin-right: 8px;
  color: #000000;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #050404;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: #000000;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Footer Social */
.footer-social {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #000000;
  color: #f8f5f5;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #2e4cbf;
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .footer-right {
    margin-top: 10px;
  }
}

/* ===============================
   MARKET AREA SECTION
=================================*/
/* MAIN FIX */
.market-area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 per row */
  gap: 20px;
  padding: 30px 89px;
  justify-content: center;
}

.market-area a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #060505;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.market-area a i {
  font-size: 18px;
  color: #1129af;
  transition: 0.4s;
}

.market-area a:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #1129af, #5745e0);
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.market-area a:hover i {
  color: #fff;
  transform: scale(1.3) rotate(10deg);
}

.market-area a::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: -120%;
  transform: skewX(-25deg);
  transition: 0.6s;
}

.market-area a:hover::after {
  left: 120%;
}
/* MAIN FIX */
.market-area {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop 5 per row */
  gap: 20px;
  padding: 30px 89px;
  justify-content: center;
}

.market-area a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #060505;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.market-area a i {
  font-size: 18px;
  color: #1129af;
  transition: 0.4s;
}

.market-area a:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #1129af, #5745e0);
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.market-area a:hover i {
  color: #fff;
  transform: scale(1.3) rotate(10deg);
}

.market-area a::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: -120%;
  transform: skewX(-25deg);
  transition: 0.6s;
}

.market-area a:hover::after {
  left: 120%;
}

/* -------- RESPONSIVE -------- */

/* Laptop */
@media (max-width: 1200px) {
  .market-area {
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 40px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .market-area {
    grid-template-columns: repeat(3, 1fr);
    padding: 25px 30px;
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .market-area {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .market-area {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .market-area a {
    font-size: 14px;
    padding: 14px 16px;
  }
}