/* --- Google Fonts & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Brand Color Variables --- */
:root {
  --navy-dark: #1e4183;      /* গাঢ় স্কাই ব্লু (Primary Backgrounds) */
  --navy-light: #1e4183;     /* মিড স্কাই ব্লু (Cards & Dropdowns) */
  --brand-blue: #032cd9;     /* স্কাই ব্লু (Accent/Buttons) */
  --sky-blue: #032cd9;       /* ব্রাইট স্কাই ব্লু (Highlights & Icons) */
  --text-white: #ffffff;     /* সাদা টেক্সট */
  --text-light: #ffffff;     /* অফ-হোয়াইট সাব-টেক্সট */
  --text-dark: #1e4183;      /* ডার্ক টেক্সট (Light sections) */
  --bg-light: #ffffff;       /* লাইট ব্যাকগ্রাউন্ড */
  --text-muted: rgba(30, 65, 131, 0.72); /* হালকা #1e4183 - সাব-টেক্সট/প্যারাগ্রাফ */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  background-color: var(--navy-dark);
  color: var(--text-white);
  overflow-x: hidden;
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: rgba(30, 65, 131, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Sticky Header Effect */
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(30, 65, 131, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
}

.logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(3, 44, 217, 0.4);
}
.logo-icon img{
     width: 50px;
  height: 50px;

}
.logo-icon span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.logo-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.logo-text span {
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  color: var(--text-white);
  display: block;
  margin-top: 3px;
  opacity: 0.9;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a i {
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav-links a:hover {
  color: var(--text-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Active Page Link Style (Underline) */
/* Active Link General Style */
.nav-links a.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* কেবল টেক্সটের নিচেই আন্ডারলাইন হবে */
.nav-links a.active {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
  text-decoration-thickness: 2px !important;
}

/* ড্রপডাউন আইকনের নিচে আন্ডারলাইন বন্ধ করার স্টাইল */
.nav-links a.active i {
  display: inline-block;
  text-decoration: none !important;
  /* আইকনকে আন্ডারলাইন থেকে আলাদা রাখার জন্য */
  border-bottom: none !important; 
}

/* --- Dropdown General Styling --- */
.nav-links li.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--navy-light);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  list-style: none;
}

@media (min-width: 993px) {
  .nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
  }
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.dropdown-menu li a i {
  color: var(--text-white);
  font-size: 0.85rem;
  width: 16px;
}

.dropdown-menu li a:hover {
  background: rgba(3, 44, 217, 0.35);
  color: var(--text-white);
  padding-left: 24px;
}

/* --- Mega Dropdown (For Products) --- */
.mega-dropdown {
  position: static !important;
}

.mega-menu {
  left: 50% !important;
  transform: translateX(-50%) translateY(15px) !important;
  width: 100%;
  max-width: 900px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
}

@media (min-width: 993px) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px) !important;
  }
}

.mega-menu-column h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-column ul {
  list-style: none;
}

.mega-menu-column ul li a {
  padding: 8px 0;
  display: block;
}

.mega-menu-column ul li a:hover {
  padding-left: 6px;
}

/* Mega Menu Featured Card */
.featured-card {
  background: linear-gradient(135deg, rgba(3, 44, 217, 0.2), rgba(3, 44, 217, 0.1));
  border: 1px solid rgba(3, 44, 217, 0.3);
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card i {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.featured-card h5 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.featured-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 14px;
}

.mega-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white) !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.mega-btn:hover {
  color: var(--text-white) !important;
  background: transparent !important;
}

/* Nav Actions (Social & Contact) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.btn-contact {
  background: var(--brand-blue);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #1e4183;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.4);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 65, 131, 0.75); /* Dark Sky Blue Overlay */
  z-index: 2;
}

/* Video Background Support */
.hero-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #1e4183; /* ব্ল্যাংক স্ক্রিন প্রতিরোধ করবে */
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.bg-video.active {
  opacity: 1;
}


.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 6s ease;
  transform: scale(1);
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-content-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  margin-top: 50px;
}

.content-slide {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.content-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(3, 44, 217, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.badge span {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
  color: var(--text-white);
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: var(--text-white);
  text-shadow: 0 0 30px rgba(3, 44, 217, 0.9), 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-white);
  max-width: 750px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-white);
  color: var(--brand-blue);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: var(--sky-blue);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(3, 44, 217, 0.3);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--sky-blue);
  width: 30px;
  border-radius: 10px;
}

/* --- About / Experience Section --- */
.experience-section {
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 100px 24px;
}

.exp-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1.15fr 1fr;
  align-items: center;
  gap: 45px;
}

/* Left: Image Box (আগে cyan-circle গোল ছিল, এখন rounded image card) */
.exp-badge-box {
  width: 100%;
}

.cyan-circle {
  width: 100%;
  height: 320px;
  background-color: var(--sky-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(3, 44, 217, 0.15);
}

.cyan-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cyan-circle:hover img {
  transform: scale(1.06);
}

/* Center: Heading Box */
.exp-heading-box {
  display: flex;
  flex-direction: column;
}

.since-tag {
  font-size: 0.82rem;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.exp-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.exp-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 480px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  background-color: var(--brand-blue);
  color: var(--text-white);
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background-color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(3, 44, 217, 0.3);
  transform: translateY(-2px);
}

/* Right: Stats Info Box */
.exp-info-box {
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.15);
  border-radius: 14px;
  padding: 30px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  box-shadow: 0 15px 40px rgba(3, 44, 217, 0.08);
}

.exp-stat-item h3 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.exp-stat-item .plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-blue);
  vertical-align: top;
  margin-left: 2px;
}

.exp-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Responsive */
/* Responsive */
@media (max-width: 1100px) {
  .exp-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "img content"
      "stats stats";
  }
  .exp-badge-box { grid-area: img; }
  .exp-heading-box { grid-area: content; }
  .exp-info-box {
    grid-area: stats;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10px;
  }
  .cyan-circle { height: 280px; }
}

@media (max-width: 760px) {
  .exp-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "content"
      "stats";
    gap: 30px;
    text-align: center;
  }
  .exp-heading-box, .exp-info-box { align-items: center; }
  .exp-main-title { font-size: 1.8rem; }
  .exp-desc { max-width: 100%; }
  .btn-learn-more { margin: 0 auto; }
  .exp-info-box { grid-template-columns: repeat(2, 1fr); }
  .exp-stat-item h3 { font-size: 2rem; }

  /* Image এখন width অনুযায়ী proportional height নেবে, fixed px না */
  .exp-badge-box { max-width: 480px; margin: 0 auto; }
  .cyan-circle {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .experience-section { padding: 60px 20px; }

  .exp-badge-box { max-width: 100%; }
  .cyan-circle {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 360px) {
  .cyan-circle {
    aspect-ratio: 1 / 1;
  }
}
/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .mobile-toggle {
    display: block;
  }

  /* Responsive Navbar Menu with Smooth Scroll */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    max-height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 24px 40px 24px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 18px;
  }

  .dropdown-menu, .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: var(--navy-light);
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 10px 15px;
    margin-top: 8px;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    align-items: flex-start;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
  }

  .exp-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .exp-heading-box, .exp-info-box {
    align-items: center;
  }

  .exp-main-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .btn-explore {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  
}
/* --- Products Slider Section --- */
.products-slider-section {
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 80px 24px 100px 24px;
  overflow: hidden;
}

.products-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header */
.products-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 50px;
}

.products-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-tag {
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.products-title-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: black;
  line-height: 1.3;
  letter-spacing: -0.3px;
  max-width: 700px;
}

.products-desc-box {
  display: block;
}

.slider-arrows {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(3, 44, 217, 0.18);
  background: #ffffff;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.arrow-btn:hover {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(3, 44, 217, 0.3);
}

/* Carousel Wrapper */
.products-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px 0;
}

.products-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

/* একটা পেজে ৭টা কার্ড, ক্লিন গ্রিড */
.products-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  flex-shrink: 0;
}

/* Individual Product Card — একদম ক্লিন, কোনো বর্ডার/লাইন নেই */
/* Individual Product Card — clearly floating look */
.product-card {
  min-width: 0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 12px 18px 12px;
  border: 1px solid rgba(3, 44, 217, 0.1);
  box-shadow: 0 14px 30px rgba(3, 44, 217, 0.1), 0 4px 10px rgba(30, 65, 131, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 44, 217, 0.25);
  box-shadow: 0 26px 45px rgba(3, 44, 217, 0.18), 0 8px 18px rgba(30, 65, 131, 0.1);
}

.product-img-box {
  width: 100%;
  max-width: 100px;
  height: 100px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-box {
  transform: scale(1.06);
}
.product-img-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.product-info h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
  padding: 0 2px;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.4px;
  transition: gap 0.2s ease;
}

.view-link:hover {
  color: var(--sky-blue);
  gap: 9px;
}

/* Page Dots */
.products-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.p-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(3, 44, 217, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.p-dot.active {
  background: var(--brand-blue);
  width: 26px;
  border-radius: 10px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
  .products-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 1024px) {
  .products-header {
    align-items: center;
  }

  .slider-arrows {
    position: static;
    margin-top: 16px;
    justify-content: center;
  }

  .products-title-box h2 {
    font-size: 1.7rem;
  }

  .products-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-title-box h2 {
    font-size: 1.4rem;
  }

  .products-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .product-img-box {
    max-width: 80px;
    height: 80px;
  }
}
/* --- Global Manufacturer Section --- */
.global-manufacturer-section {
  background-color: #ffffff; /* ক্লিন হোয়াইট ব্যাকগ্রাউন্ড */
  color: var(--text-muted);
  padding: 100px 24px;
}

.global-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}

/* Left Image Box */
.global-img-box {
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 65, 131, 0.12);
}

.global-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.global-img-box:hover img {
  transform: scale(1.05);
}

/* Right Content Box */
.global-content-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.global-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.global-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.global-desc strong {
  color: var(--brand-blue);
  font-weight: 700;
}

/* Checklist Points */
.global-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.global-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.global-list li i {
  color: #032cd9; /* ছবির মতো সুন্দর গ্রিন চেকমার্ক */
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Badges Section Below List */
.global-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(3, 44, 217, 0.18);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(3, 44, 217, 0.18);
}

.badge-item i {
  font-size: 1.8rem;
  color: var(--brand-blue);
}

.badge-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.badge-item span strong {
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.flag-badge i {
  color: #032cd9; /* মেক ইন ইন্ডিয়া থিম কালার */
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .global-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .global-img-box {
    height: 400px;
  }

  .global-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .global-manufacturer-section {
    padding: 60px 20px;
  }

  .global-img-box {
    height: 300px;
  }

  .global-title {
    font-size: 1.7rem;
  }

  .global-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge-item {
    width: 100%;
  }
}
/* Video Support for global-img-box */
.global-img-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.global-img-box:hover video {
  transform: scale(1.05);
}
/* --- Video Banner Section --- */
.video-banner-section {
  position: relative;
  width: 100%;
  height: 480px; /* ভিডিও সেকশনের উচ্চতা */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 60px 0;
}

/* Background Video Styling */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Sky Blue Overlay over Video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(30, 65, 131, 0.6) 0%, 
    rgba(30, 65, 131, 0.4) 50%, 
    rgba(30, 65, 131, 0.7) 100%
  );
  z-index: 2;
}

/* Center Content & Glassmorphism Tag */
.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(3, 44, 217, 0.45); /* Brand Blue Glassmorphism */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(3, 44, 217, 0.4);
  padding: 16px 40px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 90%;
}

.badge-dot {
  width: 12px;
  height: 12px;
  background-color: var(--sky-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--sky-blue);
  animation: pulse 1.8s infinite;
}

.badge-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

/* Glowing Pulse Effect for Badge Dot */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(3, 44, 217, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(3, 44, 217, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(3, 44, 217, 0);
  }
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
  .video-banner-section {
    height: 350px;
  }

  .video-badge {
    padding: 12px 24px;
    gap: 10px;
  }

  .badge-text {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .video-banner-section {
    height: 280px;
  }

  .badge-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}
/* --- Innovation & Infrastructure Section --- */
.infra-section {
  /* অফ-হোয়াইট ব্যাকগ্রাউন্ডের বদলে প্রিমিয়াম ডার্ক ওভারলে ও ব্যাকগ্রাউন্ড ইমেজ */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(3, 44, 217, 0.85) 100%), 
              url('../images/jkew-second.jpeg') center/cover no-repeat fixed;
  padding: 90px 24px;
  position: relative;
}

.infra-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header Styling */
.infra-header {
  text-align: center;
  margin-bottom: 55px;
}

.infra-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff; /* ডার্ক ব্যাকগ্রাউন্ডের ওপর স্পষ্ট দেখার জন্য সাদা কালার */
  letter-spacing: -0.5px;
}

/* Grid Layout (3 Columns Desktop) */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Card Styling */
.infra-card {
  background: rgba(255, 255, 255, 0.95); /* গ্লাস ইফেক্ট যুক্ত সফট ব্যাকগ্রাউন্ড */
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Accent Line Effect on Hover */
.infra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--sky-blue));
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Icon Box Styling */
.infra-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background-color: rgba(3, 44, 217, 0.12); /* Light Sky Blue Background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.infra-icon-box i {
  font-size: 1.5rem;
  color: var(--brand-blue);
  transition: color 0.35s ease;
}

/* Text Content */
.infra-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.35;
  margin-bottom: 14px;
}

.infra-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Interactive Hover Effects --- */
.infra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(3, 44, 217, 0.4);
  background: #ffffff;
}

.infra-card:hover::before {
  opacity: 1;
}

.infra-card:hover .infra-icon-box {
  background-color: var(--brand-blue);
  transform: scale(1.08);
}

.infra-card:hover .infra-icon-box i {
  color: #ffffff;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr); /* ট্যাবলেটে ২টি কলাম */
    gap: 24px;
  }

  .infra-header h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 640px) {
  .infra-grid {
    grid-template-columns: 1fr; /* মোবাইলে ১টি কলাম */
  }

  .infra-section {
    padding: 60px 20px;
  }

  .infra-header h2 {
    font-size: 1.8rem;
  }

  .infra-card {
    padding: 28px 22px;
  }
}
/* --- Social Live Updates Feed Section --- */
.social-feed-section {
  background-color: #ffffff;
  padding: 90px 24px;
}

.social-feed-container {
  max-width: 1320px;
  margin: 0 auto;
}

.social-feed-header {
  text-align: center;
  margin-bottom: 50px;
}

.social-feed-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.5px;
}

/* Feed Grid (3 Columns) */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Card */
.feed-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.35s ease;
}

.feed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(30, 65, 131, 0.1);
  border-color: rgba(3, 44, 217, 0.3);
}

/* Card User Header */
.feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 12px 20px;
}

.feed-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--sky-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(3, 44, 217, 0.3);
}

.feed-user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.2;
}

.feed-time {
  font-size: 0.75rem;
  color: #ffffff;
}

/* Content Text */
.feed-content {
  padding: 0 20px 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.feed-content p {
  margin-bottom: 8px;
}

/* Feed Image Area */
.feed-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #ffffff;
}

.feed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feed-card:hover .feed-image img {
  transform: scale(1.06);
}

.image-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(30, 65, 131, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 4px;
  border-left: 3px solid var(--sky-blue);
}

.image-overlay-badge span {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Card Action Buttons (Like & Comment) */
.feed-actions {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  background-color: #ffffff;
  border-top: 1px solid rgba(3, 44, 217, 0.18);
}

.action-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.18);
  border-radius: 6px;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: #ffffff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.action-btn.liked {
  color: var(--brand-blue);
  background: rgba(3, 44, 217, 0.08);
  border-color: var(--brand-blue);
}

.action-btn.liked i {
  font-weight: 900;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-feed-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .social-feed-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-section {
    padding: 60px 20px;
  }

  .social-feed-header h2 {
    font-size: 1.7rem;
  }
}
/* --- Stats Counter Section --- */
/* --- Global Container & Badge --- */
.jk-sec-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jk-sec-badge {
  color: var(--brand-blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  text-align: center;
}

.jk-sec-badge.center {
  text-align: center;
  margin-bottom: 25px;
}

/* --- Section 1: Industries We Serve --- */
/* Section Wrapper with Soft Gradient Background */
.jk-sec-industries {
  padding: 90px 0;
  background: radial-gradient(circle at top center, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

/* Modern Auto-Responsive Grid Structure */
.jk-ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

/* Base Card Styling (Neumorphic Glass Touch) */
.jk-ind-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 28px 16px 22px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 10px -6px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Bottom Glowing Line on Hover */
.jk-ind-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 3px 3px 0 0;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Premium Floating Icon Box */
.jk-ind-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0284c7;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 0 4px 10px rgba(2, 132, 199, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Text Styling */
.jk-ind-card p {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

/* Interactive Hover States */
.jk-ind-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 20px 35px -10px rgba(2, 132, 199, 0.18);
}

.jk-ind-card:hover::after {
  width: 70%;
}

.jk-ind-card:hover .jk-ind-icon {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  transform: translateY(-4px) scale(1.1) rotate(6deg);
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.35);
}

.jk-ind-card:hover p {
  color: #0284c7;
}
/* Header Alignment & Styling */
.jk-ind-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Top Small Badge */
.jk-ind-badge {
  display: inline-block;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Main Big Title */
.jk-ind-title {
  font-size: 42px; /* টাইটেল বড় করা হয়েছে */
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 15px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Center Bottom Accent Line */
.jk-title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  margin: 0 auto;
  border-radius: 10px;
}

/* Responsive Font Size for Mobile */
@media (max-width: 768px) {
  .jk-ind-title {
    font-size: 30px;
  }
}
/* --- Section 2: Why Choose Us --- */
/* Section Background with Image & Gradient Overlay */
.jk-sec-why {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(2, 26, 128, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%), 
              url('../images/jkew-first.jpeg') center/cover no-repeat fixed;
  color: #ffffff;
  overflow: hidden;
}

.jk-why-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content Styling */
.jk-sec-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.jk-why-left h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.jk-why-left h2 span {
  color: #38bdf8;
}

.jk-why-left p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Glowing Modern Button */
.jk-why-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #38bdf8;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.jk-why-btn:hover {
  background: #ffffff;
  color: #021a80;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Right Grid Glassmorphism Cards */
.jk-why-right-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jk-feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 24px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s ease;
}

.jk-feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(56, 189, 248, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #38bdf8;
  transition: all 0.3s ease;
}

.jk-feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.jk-feat-card p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* Card Hover Animation */
.jk-feat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.jk-feat-card:hover .jk-feat-icon {
  background: #38bdf8;
  color: #0f172a;
  transform: scale(1.1) rotate(4deg);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .jk-why-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .jk-why-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .jk-why-right-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Section 3: Our Manufacturing Process --- */
/* Section Base */
.jk-sec-process {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Header Styling */
.jk-proc-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 45px auto;
}

.jk-proc-badge {
  display: inline-block;
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.jk-proc-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.jk-proc-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  margin: 0 auto;
  border-radius: 10px;
}

/* Outer Flow Container */
.jk-proc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.jk-proc-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  position: relative;
}

/* Individual Step Item */
.jk-proc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

/* Icon Wrapper & Step Badge */
.jk-proc-icon-wrapper {
  position: relative;
  margin-bottom: 18px;
}

.jk-proc-step {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #0284c7;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
  transition: all 0.3s ease;
}

/* Glowing Circle Icon */
.jk-proc-circle {
  width: 68px;
  height: 68px;
  background: #f0f9ff;
  border: 2px solid #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0284c7;
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Text Content */
.jk-proc-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.jk-proc-item p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Connector Arrow */
.jk-proc-arrow {
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 26px;
  animation: pulseArrow 2s infinite ease-in-out;
}

/* Hover Animations */
.jk-proc-item:hover .jk-proc-circle {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.3);
}

.jk-proc-item:hover .jk-proc-step {
  background: #0f172a;
  transform: scale(1.1);
}

.jk-proc-item:hover h4 {
  color: #0284c7;
}

/* Arrow Subtle Pulse */
@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; color: #0284c7; }
}

/* Responsive Support for Mobile/Tablet */
@media (max-width: 992px) {
  .jk-proc-flow {
    flex-direction: column;
    gap: 30px;
  }
  
  .jk-proc-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  
  @keyframes pulseArrow {
    0%, 100% { transform: translateY(0) rotate(90deg); }
    50% { transform: translateY(4px) rotate(90deg); }
  }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .jk-ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .jk-why-wrapper {
    grid-template-columns: 1fr;
  }
  
  .jk-why-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jk-proc-flow {
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
    gap: 20px;
  }
  
  .jk-proc-item {
    min-width: 90px;
  }
}

@media (max-width: 640px) {
  .jk-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jk-why-right-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
/* --- Banner Slider Section --- */
.banner-slider-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 10%;
  background-color: var(--navy-dark);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30, 65, 131, 0.92) 0%, rgba(30, 65, 131, 0.6) 60%, rgba(30, 65, 131, 0.2) 100%);
  z-index: 2;
}

/* Background Slides */
.banner-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 5s ease;
  transform: scale(1);
}

.banner-bg-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

/* Content Slider Animation */
.banner-content-container {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.banner-text-slide {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.banner-text-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Typography & Elements */
.banner-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.banner-text-slide h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.banner-text-slide h2 .highlight {
  color: var(--sky-blue);
}

.banner-text-slide p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 28px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: var(--text-white);
  transform: translateX(4px);
}

/* Pagination Dots */
.banner-dots-nav {
  position: absolute;
  bottom: 30px;
  right: 10%;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.b-dot.active {
  background: var(--sky-blue);
  width: 28px;
  border-radius: 10px;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .banner-slider-section {
    padding: 60px 6%;
    min-height: 460px;
  }
  .banner-text-slide h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 640px) {
  .banner-slider-section {
    padding: 50px 20px;
  }
  .banner-text-slide h2 {
    font-size: 1.8rem;
  }
  .banner-text-slide p {
    font-size: 0.9rem;
  }
}
/* --- Insights Section Styling --- */
.insights-section {
  background-color: #ffffff;
  padding: 90px 24px;
}

.insights-container {
  max-width: 1280px;
  margin: 0 auto;
}

.insights-header {
  text-align: center;
  margin-bottom: 50px;
}

.insights-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.5px;
}

/* Green Highlight Word */
.highlight-green {
  color: var(--sky-blue); /* highlight word - sky blue */
}

/* 3 Column Grid Layout */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card Container */
.insight-card {
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.18);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(30, 65, 131, 0.08);
  border-color: rgba(3, 44, 217, 0.25);
}

/* Image Wrapper */
.insight-image-box {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}

.insight-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-image-box img {
  transform: scale(1.06);
}

/* Image Tag Badge */
.insight-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(30, 65, 131, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

/* Card Body Area */
.insight-body {
  padding: 24px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.insight-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.4;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.insight-card:hover .insight-title {
  color: var(--brand-blue);
}

/* Circle Arrow Button */
.insight-arrow-btn {
  width: 44px;
  height: 44px;
  background-color: var(--brand-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.insight-card:hover .insight-arrow-btn {
  background-color: var(--navy-dark);
  transform: rotate(45deg);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insights-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 640px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-section {
    padding: 60px 20px;
  }

  .insights-header h2 {
    font-size: 1.65rem;
  }
}
/* --- Footer Styling --- */
.main-footer {
  background-color: #1e4183; /* ডার্ক স্কাই ব্লু ব্যাকগ্রাউন্ড */
  color: #ffffff;
  padding: 60px 0 30px 0;
  font-family: inherit;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Section Layout (Grid with 4 columns) */
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.3fr;
  gap: 35px;
  margin-bottom: 20px;
}

/* Logo Styling */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-wrapper {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-wrapper img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 0.7rem;
  color: #ffffff;
  font-weight: 500;
}

/* Headings & Links */
.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* New Contact Section in 4th Column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.4;
}

.contact-value:hover {
  color: rgba(255, 255, 255, 0.8);
}

.contact-multi-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.number-divider {
  color: #ffffff;
  opacity: 0.6;
}

.address-text {
  font-style: normal;
  font-weight: 500;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0 20px 0;
}

/* Bottom Copyright Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-right: 70px; /* Floating buttons এর জন্য কিছুটা ফাকা জায়গা রাখা */
}

/* নিশ্চিত করুন z-index সোশ্যাল মিডিয়া বাটনেও ঠিক আছে */
.footer-socials {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.copyright-text {
  font-size: 0.85rem;
  color: #ffffff;
}


.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #ffffff;
  color: #1e4183;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .main-footer {
    padding: 40px 0 20px 0;
  }
}

/* ==========================================
   PIPES HERO SECTION STYLES
   ========================================== */
.pipes-hero-section {
  position: relative;
  background: #ffffff; /* পিওর হোয়াইট ব্যাকগ্রাউন্ড */
  padding: 130px 0 90px 0; /* ফিক্সড হেডারের জন্য padding-top অ্যাডজাস্ট করা হয়েছে */
  overflow: hidden;
  color: #1e4183;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.pipes-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(3, 44, 217, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pipes-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Badge */
.pipes-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 44, 217, 0.08);
  border: 1px solid rgba(3, 44, 217, 0.3);
  color: #032cd9;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Title */
.pipes-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #032cd9; /* হেডিং কালার ব্লু করা হয়েছে */
}

.pipes-hero-title .highlight {
  color: #032cd9;
}

/* Description */
.pipes-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(30, 65, 131, 0.85); /* ডার্ক টেক্সট */
  margin-bottom: 25px;
}

/* Feature Bullets */
.pipes-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.pipes-hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #1e4183;
  font-weight: 600;
}

.pipes-hero-features i {
  color: #032cd9;
}

/* Buttons */
.pipes-hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary-pipes {
  background: #032cd9;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(3, 44, 217, 0.25);
  transition: all 0.3s ease;
}

.btn-primary-pipes:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(3, 44, 217, 0.4);
}

.btn-secondary-pipes {
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.3);
  color: #032cd9;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-pipes:hover {
  background: rgba(3, 44, 217, 0.05);
  border-color: #032cd9;
}

/* Image & Floating Card */
.pipes-image-wrapper {
  position: relative;
  width: 100%;
}

.pipes-img-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.08);
  border: 1px solid rgba(3, 44, 217, 0.18);
  background: #ffffff;
}

.pipes-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.pipes-slide-img.active {
  opacity: 1;
}

.pipes-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.08);
  border: 1px solid rgba(3, 44, 217, 0.18);
  object-fit: cover;
}

.floating-stat-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.2);
  padding: 16px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 12px 30px rgba(3, 44, 217, 0.12);
  z-index: 5;
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: #032cd9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
}

.stat-info h4 {
  color: #032cd9;
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}

.stat-info p {
  color: rgba(30, 65, 131, 0.72);
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pipes-hero-section {
    padding-top: 140px;
  }

  .pipes-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pipes-hero-title {
    font-size: 2.5rem;
  }

  .pipes-hero-features, .pipes-hero-btns {
    justify-content: center;
  }

  .floating-stat-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ==========================================
   SKY BLUE & WHITE LIGHT THEME PIPES CATALOG
   ========================================== */
.pipes-catalog-section {
  background: #ffffff; /* পিওর হোয়াইট ব্যাকগ্রাউন্ড */
  padding: 80px 0;
  color: rgba(30, 65, 131, 0.72);
}

.pipes-catalog-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.pipes-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: #032cd9; /* স্কাই ব্লু সাবটাইটেল */
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #032cd9; /* ব্লু টাইটেল */
}

.section-desc {
  color: rgba(30, 65, 131, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-desc strong {
  color: #032cd9;
}

/* Grid System */
.pipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card Container */
.pipe-card {
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.18);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pipe-card:hover {
  transform: translateY(-6px);
  border-color: #032cd9;
  box-shadow: 0 12px 25px rgba(3, 44, 217, 0.18);
}

/* FULL IMAGE FRAME */
/* FULL IMAGE FRAME */
.pipe-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(3, 44, 217, 0.18);
  /* ইমেজ মাঝখানে আনার জন্য */
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipe-card-img {
  width: 70%;
  height: auto; /* উচ্চতা ইমেজের অনুপাত অনুযায়ী সেট করার জন্য auto রাখা ভালো */
  max-height: 100%; /* যেন প্যারেন্ট বক্সের বাইরে না বের হয় */
  object-fit: contain; /* ইমেজ কেটে না গিয়ে সুন্দরভাবে ফিট হবে */
  transition: transform 0.5s ease;
}

.pipe-card:hover .pipe-card-img {
  transform: scale(1.08);
}

/* Image Bottom Badge (Sky Blue) */
.pipe-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #032cd9;
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 8px 12px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Content Area */
.pipe-card-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pipe-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #032cd9;
  margin-bottom: 10px;
  line-height: 1.35;
}

.pipe-card-desc {
  color: rgba(30, 65, 131, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* PDF Section */
.pdf-download-box {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(3, 44, 217, 0.18);
}

.pdf-notice {
  font-size: 0.74rem;
  color: #032cd9;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.pdf-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pdf-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.18);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.pdf-btn:hover {
  background: #032cd9;
  color: #ffffff;
  border-color: #032cd9;
  box-shadow: 0 4px 10px rgba(3, 44, 217, 0.3);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .pipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pipes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   UNIQUE PIPE FITTINGS HERO SECTION (pf-hero)
   ========================================== */
.pf-hero-wrapper {
  background: #ffffff; /* সম্পূর্ণ হোয়াইট ব্যাকগ্রাউন্ড */
  padding-top: 130px; /* ফিক্সড হেডারের নিচে সঠিক স্পেস এর জন্য */
  padding-bottom: 80px;
  color: #1e4183;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.pf-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content Styling */
.pf-hero-tagline {
  color: #032cd9; /* ব্রাইট স্কাই ব্লু */
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.pf-hero-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #032cd9; /* হেডিং কালার ব্লু করা হয়েছে */
}

.pf-hero-description {
  color: rgba(30, 65, 131, 0.85); /* ডার্ক টেক্সট (সাদা ব্যাকগ্রাউন্ডের জন্য) */
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.pf-brand-highlight {
  color: #032cd9;
  font-weight: 700;
}

.pf-hero-action-btns {
  display: flex;
  gap: 15px;
}

.pf-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pf-primary-btn {
  background: #032cd9;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.25);
}

.pf-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 44, 217, 0.4);
}

.pf-secondary-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.3);
}

.pf-secondary-btn:hover {
  background: rgba(3, 44, 217, 0.05);
  border-color: #032cd9;
}

/* Right Slider Frame */
.pf-hero-slider-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.08);
  background: #ffffff;
}

.pf-hero-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.pf-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-slide-item.active {
  opacity: 1;
}

/* Hero Slider Image Full Cover Fix */
.pf-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* Slider Controls */
.pf-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.pf-dot {
  width: 10px;
  height: 10px;
  background: rgba(3, 44, 217, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pf-dot.active {
  background: #032cd9;
  width: 25px;
  border-radius: 10px;
}

/* Responsive View */
@media (max-width: 992px) {
  .pf-hero-wrapper {
    padding-top: 140px;
  }
  .pf-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pf-hero-action-btns {
    justify-content: center;
  }
  .pf-hero-slider-frame {
    height: 300px;
  }
}

/* ==========================================
   SKY BLUE & WHITE CATALOG SECTION (pfc-*)
   ========================================== */
.pfc-catalog-section {
  padding: 80px 0;
  background-color: #ffffff; /* ক্লিন লাইট ব্যাকগ্রাউন্ড */
}

.pfc-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.pfc-header-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.pfc-subtitle {
  color: #032cd9;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.pfc-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #032cd9;
  margin-bottom: 12px;
}

.pfc-description {
  color: rgba(30, 65, 131, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Product Cards Grid */
.pfc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Card (Pure White with Sky Blue Hover) */
.pfc-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pfc-card:hover {
  transform: translateY(-6px);
  border-color: #032cd9;
  box-shadow: 0 12px 25px rgba(3, 44, 217, 0.18);
}

/* Image Box Inside Card */
.pfc-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid rgba(3, 44, 217, 0.18);
}

.pfc-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pfc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  color: #032cd9;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(3, 44, 217, 0.18);
  letter-spacing: 0.5px;
}

/* Card Content */
.pfc-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pfc-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #032cd9;
  margin-bottom: 8px;
}

.pfc-card-text {
  font-size: 0.82rem;
  color: rgba(30, 65, 131, 0.72);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* PDF Download Section inside Card */
.pfc-pdf-box {
  margin-top: auto;
  border-top: 1px dashed rgba(3, 44, 217, 0.18);
  padding-top: 15px;
}

.pfc-pdf-label {
  display: block;
  font-size: 0.75rem;
  color: #032cd9;
  font-weight: 700;
  margin-bottom: 10px;
}

.pfc-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* PDF Download Buttons */
.pfc-pdf-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.18);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.pfc-pdf-btn:hover {
  background: #032cd9;
  color: #ffffff;
  border-color: #032cd9;
  box-shadow: 0 4px 10px rgba(3, 44, 217, 0.3);
}

.jkw-v-hero-wrapper {
  background: #ffffff; /* সাদা ব্যাকগ্রাউন্ড করা হয়েছে */
  /* ফিক্সড হেডারের নিচে কন্টেন্ট যেন আটকে না যায় সে জন্য padding-top রাখা হয়েছে */
  padding-top: 130px;
  padding-bottom: 80px;
  color: #1e4183;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.jkw-v-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content Styling */
.jkw-v-hero-tagline {
  color: #032cd9; /* Bright Sky Blue Accent */
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.jkw-v-hero-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #032cd9; /* হেডিং ব্লু কালার করা হয়েছে */
}

.jkw-v-hero-description {
  color: rgba(30, 65, 131, 0.85); /* ডার্ক টেক্সট (সাদা ব্যাকগ্রাউন্ডের জন্য) */
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.jkw-v-brand-highlight {
  color: #032cd9;
  font-weight: 700;
}

.jkw-v-hero-action-btns {
  display: flex;
  gap: 15px;
}

.jkw-v-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jkw-v-primary-btn {
  background: #032cd9;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.25);
}

.jkw-v-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 44, 217, 0.4);
}

.jkw-v-secondary-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.3);
}

.jkw-v-secondary-btn:hover {
  background: rgba(3, 44, 217, 0.05);
  border-color: #032cd9;
}

/* Right Slider Frame */
.jkw-v-hero-slider-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.08);
  background: #ffffff;
}

.jkw-v-hero-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.jkw-v-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jkw-v-slide-item.active {
  opacity: 1;
}

.jkw-v-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* Slider Controls */
.jkw-v-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.jkw-v-dot {
  width: 10px;
  height: 10px;
  background: rgba(3, 44, 217, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jkw-v-dot.active {
  background: #032cd9;
  width: 25px;
  border-radius: 10px;
}

/* ==========================================
   PURE WHITE CATALOG SECTION
   ========================================== */
.jkw-v-catalog-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.jkw-v-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.jkw-v-header-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.jkw-v-subtitle {
  color: #032cd9;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.jkw-v-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #032cd9;
  margin-bottom: 12px;
}

.jkw-v-description {
  color: rgba(30, 65, 131, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Product Cards Grid */
.jkw-v-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Card */
.jkw-v-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.jkw-v-card:hover {
  transform: translateY(-6px);
  border-color: #032cd9;
  box-shadow: 0 12px 25px rgba(3, 44, 217, 0.18);
}

/* Image Box Inside Card */
.jkw-v-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid rgba(3, 44, 217, 0.18);
}

.jkw-v-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.jkw-v-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  color: #032cd9;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(3, 44, 217, 0.18);
  letter-spacing: 0.5px;
}

/* Card Content */
.jkw-v-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jkw-v-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #032cd9;
  margin-bottom: 8px;
}

.jkw-v-card-text {
  font-size: 0.82rem;
  color: rgba(30, 65, 131, 0.72);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* PDF Download Section inside Card */
.jkw-v-pdf-box {
  margin-top: auto;
  border-top: 1px dashed rgba(3, 44, 217, 0.18);
  padding-top: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jkw-v-pdf-label {
  display: block;
  font-size: 0.75rem;
  color: #032cd9;
  font-weight: 700;
  margin-bottom: 10px;
  width: 100%;
}

.jkw-v-pdf-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.18);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.jkw-v-pdf-btn:hover {
  background: #032cd9;
  color: #ffffff;
  border-color: #032cd9;
  box-shadow: 0 4px 10px rgba(3, 44, 217, 0.3);
}

/* ==========================================
   RESPONSIVE VIEW
   ========================================== */
@media (max-width: 992px) {
  .jkw-v-hero-wrapper {
    padding-top: 140px;
  }
  .jkw-v-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .jkw-v-hero-action-btns {
    justify-content: center;
  }
  .jkw-v-hero-slider-frame {
    height: 300px;
  }
}
.jkw-ind-hero-wrapper {
  background: #ffffff; /* সাদা ব্যাকগ্রাউন্ড করা হয়েছে */
  padding-top: 130px; /* ফিক্সড হেডারের জন্য স্পেস */
  padding-bottom: 80px;
  color: #1e4183;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.jkw-ind-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content Styling */
.jkw-ind-hero-tagline {
  color: #032cd9; /* ব্রাইট স্কাই ব্লু */
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.jkw-ind-hero-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #032cd9; /* হেডিং ব্লু কালার করা হয়েছে */
}

.jkw-ind-hero-description {
  color: rgba(30, 65, 131, 0.85); /* ডার্ক টেক্সট (সাদা ব্যাকগ্রাউন্ডের জন্য) */
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.jkw-ind-brand-highlight {
  color: #032cd9;
  font-weight: 700;
}

.jkw-ind-hero-action-btns {
  display: flex;
  gap: 15px;
}

.jkw-ind-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jkw-ind-primary-btn {
  background: #032cd9;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.25);
}

.jkw-ind-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 44, 217, 0.4);
}

.jkw-ind-secondary-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.3);
}

.jkw-ind-secondary-btn:hover {
  background: rgba(3, 44, 217, 0.05);
  border-color: #032cd9;
}

/* Right Slider Frame */
.jkw-ind-hero-slider-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.08);
  background: #ffffff;
}

.jkw-ind-hero-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.jkw-ind-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jkw-ind-slide-item.active {
  opacity: 1;
}

.jkw-ind-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* Slider Controls */
.jkw-ind-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.jkw-ind-dot {
  width: 10px;
  height: 10px;
  background: rgba(3, 44, 217, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jkw-ind-dot.active {
  background: #032cd9;
  width: 25px;
  border-radius: 10px;
}

/* ==========================================
   CATALOG SECTION
   ========================================== */
.jkw-ind-catalog-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.jkw-ind-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.jkw-ind-header-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.jkw-ind-subtitle {
  color: #032cd9;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.jkw-ind-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #032cd9;
  margin-bottom: 12px;
}

.jkw-ind-description {
  color: rgba(30, 65, 131, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Product Cards Grid */
.jkw-ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Card Styling */
.jkw-ind-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(3, 44, 217, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.jkw-ind-card:hover {
  transform: translateY(-6px);
  border-color: #032cd9;
  box-shadow: 0 12px 25px rgba(3, 44, 217, 0.18);
}

.jkw-ind-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid rgba(3, 44, 217, 0.18);
}

.jkw-ind-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.jkw-ind-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  color: #032cd9;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(3, 44, 217, 0.18);
  letter-spacing: 0.5px;
}

/* Card Content */
.jkw-ind-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jkw-ind-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #032cd9;
  margin-bottom: 8px;
}

.jkw-ind-card-text {
  font-size: 0.82rem;
  color: rgba(30, 65, 131, 0.72);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* PDF Box */
.jkw-ind-pdf-box {
  margin-top: auto;
  border-top: 1px dashed rgba(3, 44, 217, 0.18);
  padding-top: 15px;
}

.jkw-ind-pdf-label {
  display: block;
  font-size: 0.75rem;
  color: #032cd9;
  font-weight: 700;
  margin-bottom: 10px;
}

.jkw-ind-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jkw-ind-pdf-btn {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.18);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.jkw-ind-pdf-btn:hover {
  background: #032cd9;
  color: #ffffff;
  border-color: #032cd9;
  box-shadow: 0 4px 10px rgba(3, 44, 217, 0.3);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
  .jkw-ind-hero-wrapper {
    padding-top: 140px;
  }
  .jkw-ind-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .jkw-ind-hero-action-btns {
    justify-content: center;
  }
  .jkw-ind-hero-slider-frame {
    height: 300px;
  }
}
/* ==========================================
   GLOBAL RESET FOR CERTIFICATE PAGE
   ========================================== */
/* ==========================================
   WHITE HERO SECTION
   ========================================== */
.jcert-hero-section {
  position: relative;
  background: #ffffff;
  padding: 130px 0 40px 0;
  overflow: hidden;
  color: #1e4183;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.jcert-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(3, 44, 217, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.jcert-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.jcert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 44, 217, 0.08);
  border: 1px solid rgba(3, 44, 217, 0.3);
  color: #032cd9;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jcert-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #032cd9;
}

.jcert-highlight {
  color: #032cd9;
}

.jcert-hero-desc {
  font-size: 1rem;
  color: rgba(30, 65, 131, 0.8);
}

/* ==========================================
   6 CERTIFICATES IMAGE ONLY GRID
   ========================================== */
.jcert-grid-section {
  padding: 60px 0 90px 0;
  background-color: #ffffff;
}

.jcert-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jcert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Certificate Pure Image Card */
.jcert-img-card {
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.35s ease;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.jcert-img-card:hover {
  transform: translateY(-8px);
  border-color: #032cd9;
  box-shadow: 0 14px 28px rgba(3, 44, 217, 0.18);
}

.jcert-thumb {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.jcert-img-card:hover .jcert-thumb {
  transform: scale(1.03);
}

/* ==========================================
   BLUR BACKGROUND LIGHTBOX MODAL
   ========================================== */
.jcert-modal {
  display: none;
  position: fixed;
  z-index: 2000; /* Header এর ওপরে থাকবে */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 45, 0.75);
  backdrop-filter: blur(10px); /* ব্যাকগ্রাউন্ড ব্লার ইফেক্ট */
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jcert-modal.show {
  display: flex;
  opacity: 1;
}

.jcert-modal-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.jcert-modal.show .jcert-modal-content {
  transform: scale(1);
}

/* Close Button */
.jcert-modal-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  z-index: 2001;
}

.jcert-modal-close:hover {
  color: #032cd9;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .jcert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .jcert-grid {
    grid-template-columns: 1fr;
  }
  .jcert-img-card {
    height: 350px;
  }
}
.jcat-hero-section {
  position: relative;
  background: #ffffff;
  padding: 130px 0 50px 0;
  overflow: hidden;
  color: #1e4183;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.jcat-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(3, 44, 217, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.jcat-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.jcat-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.jcat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 44, 217, 0.08);
  border: 1px solid rgba(3, 44, 217, 0.3);
  color: #032cd9;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jcat-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #032cd9;
}

.jcat-highlight {
  color: #032cd9;
}

.jcat-hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(30, 65, 131, 0.85);
}

/* ==========================================
   12 CATALOGUES GRID SECTION
   ========================================== */
.jcat-grid-section {
  padding: 60px 0 90px 0;
  background-color: #ffffff;
}

.jcat-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jcat-header-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px auto;
}

.jcat-subtitle {
  color: #032cd9;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.jcat-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #032cd9;
  margin-bottom: 10px;
}

.jcat-description {
  color: rgba(30, 65, 131, 0.75);
  font-size: 0.95rem;
}

/* Grid System */
.jcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 25px;
}

/* Catalogue Card Design */
.jcat-card {
  background: #ffffff;
  border: 1px solid rgba(3, 44, 217, 0.18);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  position: relative;
}

.jcat-card:hover {
  transform: translateY(-6px);
  border-color: #032cd9;
  box-shadow: 0 12px 28px rgba(3, 44, 217, 0.16);
}

/* Master Edition Special Highlight */
.jcat-master-card {
  border: 2px solid #032cd9;
  background: rgba(3, 44, 217, 0.02);
}

.jcat-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(3, 44, 217, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #032cd9;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

.jcat-card:hover .jcat-icon-box {
  background: #032cd9;
  color: #ffffff;
}

.jcat-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jcat-doc-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(30, 65, 131, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.jcat-tag-master {
  color: #032cd9;
}

.jcat-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #032cd9;
  margin-bottom: 8px;
  line-height: 1.3;
}

.jcat-card-desc {
  font-size: 0.85rem;
  color: rgba(30, 65, 131, 0.75);
  line-height: 1.5;
  margin-bottom: 22px;
}

/* Action Buttons */
.jcat-action-box {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px dashed rgba(3, 44, 217, 0.15);
}

.jcat-btn {
  flex: 1;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.jcat-btn-view {
  background: #ffffff;
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.3);
}

.jcat-btn-view:hover {
  background: rgba(3, 44, 217, 0.08);
  border-color: #032cd9;
}

.jcat-btn-download {
  background: #032cd9;
  color: #ffffff;
  border: 1px solid #032cd9;
}

.jcat-btn-download:hover {
  background: #1e4183;
  border-color: #1e4183;
  box-shadow: 0 4px 12px rgba(3, 44, 217, 0.3);
}

/* Responsive Grid */
@media (max-width: 992px) {
  .jcat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .jcat-grid {
    grid-template-columns: 1fr;
  }
}
.jcat-img-box {
  width: 100%;
  height: 200px;
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(3, 44, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jcat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.jcat-card:hover .jcat-img-box img {
  transform: scale(1.05);
}
/* Button reset for view action */
button.jcat-btn-view {
  cursor: pointer;
  font-family: inherit;
}

/* Lightbox Modal Structure */
.jcat-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px); /* Background Blur Effect */
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Enlarged Modal Image */
.jcat-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalZoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: contain;
}

/* Close Button Styling */
.jcat-modal-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}

.jcat-modal-close:hover,
.jcat-modal-close:focus {
  color: #032cd9;
  transform: scale(1.15);
}

/* Zoom Animation */
@keyframes modalZoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .jcat-modal-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
  .jcat-modal-content {
    max-width: 95%;
    max-height: 80vh;
  }
}
/* Master Top Container Alignment */
.jcat-master-wrapper {
  margin-bottom: 35px;
  width: 100%;
}

/* Master Card Styling (Horizontal Full-Width Layout) */
.jcat-master-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid #032cd9;
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.12);
  padding: 30px;
}

.jcat-master-card .jcat-img-box {
  width: 240px;
  height: 220px;
  flex-shrink: 0;
  margin-bottom: 0;
  cursor: pointer;
}

.jcat-title-link {
  color: #032cd9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.jcat-title-link:hover {
  color: #1e4183;
  text-decoration: underline;
}

.jcat-btn-link {
  background: rgba(3, 44, 217, 0.08);
  color: #032cd9;
  border: 1px solid rgba(3, 44, 217, 0.3);
}

.jcat-btn-link:hover {
  background: #032cd9;
  color: #ffffff;
}

/* Responsive adjustment for Master Card */
@media (max-width: 768px) {
  .jcat-master-card {
    flex-direction: column;
    padding: 20px;
  }
  .jcat-master-card .jcat-img-box {
    width: 100%;
    height: 200px;
  }
}
/* ==========================================
   GLOBAL & HERO SECTION
   ========================================== */


.jgal-hero-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0 40px 0;
  text-align: center;
  border-bottom: 1px solid rgba(3, 44, 217, 0.15);
}

.jgal-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.jgal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 44, 217, 0.08);
  border: 1px solid rgba(3, 44, 217, 0.3);
  color: #032cd9;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.jgal-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #032cd9;
  margin-bottom: 10px;
}

.jgal-highlight {
  color: #032cd9;
}

.jgal-hero-desc {
  font-size: 1.05rem;
  color: rgba(30, 65, 131, 0.85);
  line-height: 1.6;
}

/* ==========================================
   FILTER BUTTONS
   ========================================== */
.jgal-main-section {
  padding: 50px 0 80px 0;
}

.jgal-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jgal-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.jgal-filter-btn {
  background: #ffffff;
  color: #1e4183;
  border: 1px solid rgba(3, 44, 217, 0.25);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jgal-filter-btn:hover,
.jgal-filter-btn.active {
  background: #032cd9;
  color: #ffffff;
  border-color: #032cd9;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.25);
}

/* ==========================================
   GALLERY GRID
   ========================================== */
.jgal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.jgal-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.jgal-item.hide {
  display: none;
}

.jgal-img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(3, 44, 217, 0.12);
  cursor: pointer;
}

.jgal-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jgal-img-card:hover img {
  transform: scale(1.1);
}

/* Hover Overlay */
.jgal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(3, 44, 217, 0.85) 0%, rgba(3, 44, 217, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.jgal-img-card:hover .jgal-overlay {
  opacity: 1;
}

.jgal-cat-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.25);
  padding: 3px 10px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}

.jgal-img-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.jgal-zoom-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #032cd9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   ZOOM LIGHTBOX MODAL (BLUR BACKGROUND)
   ========================================== */
.jgal-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 15, 60, 0.65);
  backdrop-filter: blur(12px); /* Blur Background Effect */
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jgal-modal.active {
  display: flex;
  opacity: 1;
}

.jgal-modal-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  text-align: center;
}

.jgal-modal-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid #ffffff;
  animation: jgalZoomIn 0.3s ease;
}

.jgal-modal-caption {
  margin-top: 15px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.jgal-modal-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10000;
}

.jgal-modal-close:hover {
  color: #032cd9;
}

@keyframes jgalZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Slider Arrows Style */
.jgal-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  z-index: 10001;
}

.jgal-slider-btn:hover {
  background: #032cd9;
  border-color: #032cd9;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(3, 44, 217, 0.5);
}

.jgal-prev-btn {
  left: 30px;
}

.jgal-next-btn {
  right: 30px;
}

@media (max-width: 768px) {
  .jgal-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .jgal-prev-btn {
    left: 10px;
  }
  .jgal-next-btn {
    right: 10px;
  }
}

.jk-abt-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jk-abt-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.jk-abt-bg-sky {
  background-color: #ffffff !important;
}

/* Section Header */
.jk-abt-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.jk-abt-sub-tag {
  color: #032cd9;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.jk-abt-title {
  color: #021a80;
  font-size: 2.2rem;
  font-weight: 800;
}

.jk-abt-title-line {
  width: 60px;
  height: 4px;
  background: #00b4d8;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.jk-abt-subtitle-text {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-top: 15px;
}

/* Grids */
.jk-abt-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.jk-abt-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Hero Banner */
.jk-abt-hero {
  position: relative;
  background: linear-gradient(135deg, #021a80 0%, #032cd9 100%);
  padding-top: 140px;
  padding-bottom: 70px;
  color: #ffffff;
  text-align: center;
}

.jk-abt-badge {
  background: rgba(224, 247, 250, 0.15);
  border: 1px solid #00b4d8;
  color: #e0f7fa;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.jk-abt-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.jk-abt-highlight {
  color: #00b4d8;
}

.jk-abt-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Overview Section */
.jk-abt-img-box {
  position: relative;
}

.jk-abt-img-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.1);
  object-fit: cover;
  height: 420px;
}

.jk-abt-experience-card {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: #032cd9;
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(3, 44, 217, 0.25);
  text-align: center;
  border: 2px solid #00b4d8;
}

.jk-abt-experience-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00b4d8;
  line-height: 1;
}

.jk-abt-experience-card p {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 5px;
}

.jk-abt-text {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.98rem;
}

.jk-abt-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.jk-abt-cert-item {
  background: #e0f7fa;
  color: #032cd9;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 180, 216, 0.3);
}

/* Brand Banner */
.jk-abt-brand-banner {
  background: linear-gradient(90deg, #032cd9, #00b4d8);
  padding: 35px 0;
  color: #ffffff;
}

.jk-abt-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.jk-abt-brand-icon {
  font-size: 2.8rem;
  color: #e0f7fa;
}

.jk-abt-brand-card h3 {
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  opacity: 0.9;
}

.jk-abt-brand-card h2 {
  font-size: 1.9rem;
  font-weight: 900;
}

.jk-abt-highlight-brand {
  background: #ffffff;
  color: #032cd9;
  padding: 2px 14px;
  border-radius: 6px;
}

/* Mission & Vision Section */
.jk-abt-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.jk-abt-mv-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(3, 44, 217, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.jk-abt-mv-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #032cd9, #00b4d8);
}

.jk-abt-mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(3, 44, 217, 0.12);
  border-color: #00b4d8;
}

.jk-abt-mv-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.jk-abt-mv-icon-wrap {
  width: 55px;
  height: 55px;
  background: #e0f7fa;
  border: 1px solid #00b4d8;
  color: #032cd9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.jk-abt-mv-box:hover .jk-abt-mv-icon-wrap {
  background: #032cd9;
  color: #ffffff;
}

.jk-abt-mv-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #032cd9;
  background: #e0f7fa;
  padding: 4px 12px;
  border-radius: 20px;
}

.jk-abt-mv-box h3 {
  font-size: 1.3rem;
  color: #021a80;
  font-weight: 800;
  margin-bottom: 15px;
}

.jk-abt-mv-box p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.jk-abt-mv-list {
  list-style: none;
  padding-top: 15px;
  border-top: 1px solid #e0f7fa;
}

.jk-abt-mv-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: #021a80;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.jk-abt-mv-list li i {
  color: #00b4d8;
  font-size: 0.95rem;
}

/* Timeline */
.jk-abt-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.jk-abt-timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: #00b4d8;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.jk-abt-tl-item {
  padding: 10px 30px;
  position: relative;
  width: 50%;
}

.jk-abt-tl-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.jk-abt-tl-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.jk-abt-tl-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background: #032cd9;
  border: 4px solid #ffffff;
  top: 20px;
  border-radius: 50%;
  z-index: 1;
}

.jk-abt-tl-item:nth-child(even) .jk-abt-tl-dot {
  left: -8px;
}

.jk-abt-tl-content {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.03);
}

.jk-abt-tl-year {
  background: #032cd9;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.jk-abt-tl-content h3 {
  font-size: 1.1rem;
  color: #021a80;
  margin-bottom: 5px;
}

.jk-abt-tl-content p {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Product Offer Cards */
.jk-abt-offer-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(3, 44, 217, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jk-abt-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(3, 44, 217, 0.12);
  border-color: #00b4d8;
}

.jk-abt-card-img {
  height: 180px;
  overflow: hidden;
}

.jk-abt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jk-abt-offer-card:hover .jk-abt-card-img img {
  transform: scale(1.08);
}

.jk-abt-card-body {
  padding: 25px;
}

.jk-abt-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #032cd9;
  background: #e0f7fa;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.jk-abt-card-body h3 {
  font-size: 1.3rem;
  color: #021a80;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0f7fa;
  padding-bottom: 8px;
}

.jk-abt-card-body ul {
  list-style: none;
}

.jk-abt-card-body ul li {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jk-abt-card-body ul li i {
  color: #00b4d8;
  font-size: 0.85rem;
}

/* Application Cards */
/* Application Area Grid Layout */
.jk-abt-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* পাশাপাশি সুন্দরভাবে বসবে */
  gap: 20px;
  margin-top: 30px;
}

/* Compact & Modern Application Cards */
.jk-abt-app-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(3, 44, 217, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jk-abt-app-card:hover {
  background: #032cd9;
  border-color: #032cd9;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(3, 44, 217, 0.2);
}

.jk-abt-app-icon {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.jk-abt-app-card:hover .jk-abt-app-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.jk-abt-app-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #021a80;
  margin: 0;
  transition: color 0.3s ease;
}

.jk-abt-app-card:hover h4 {
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .jk-abt-grid-2 {
    grid-template-columns: 1fr;
  }
  .jk-abt-experience-card {
    right: 10px;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .jk-abt-hero {
    padding-top: 120px;
  }
  .jk-abt-hero-title {
    font-size: 2rem;
  }
  .jk-abt-timeline::after {
    left: 31px;
  }
  .jk-abt-tl-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 10px;
  }
  .jk-abt-tl-item:nth-child(odd), 
  .jk-abt-tl-item:nth-child(even) {
    left: 0;
    text-align: left;
  }
  .jk-abt-tl-dot {
    left: 23px !important;
  }
}

.jk-indus-page-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jk-indus-page-block {
  padding: 70px 0;
  background-color: #ffffff;
}

.jk-indus-page-bg-soft {
  background-color: #f8fafc;
}

/* Image Box Container Styling */
.jk-indus-page-box-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden; /* Zoom প্রভাবের জন্য জুম ফ্রেমের বাইরে যাবে না */
  margin-bottom: 20px;
  background-color: #f0f4f8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* Image Base Style */
.jk-indus-page-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ইমেজ কেটে বিকৃত হবে না */
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* Card Hover Effects */
.jk-indus-page-box:hover .jk-indus-page-box-icon {
  box-shadow: 0 8px 20px rgba(30, 65, 131, 0.25);
  border-radius: 50%; /* Hover করলে বক্স গোলাকার হবে */
}

.jk-indus-page-box:hover .jk-indus-page-box-icon img {
  transform: scale(1.2) rotate(3deg); /* Smooth Zoom and slight Rotate */
}

/* Headers */
.jk-indus-page-top-head {
  text-align: center;
  margin-bottom: 40px;
}

.jk-indus-page-badge {
  color: #032cd9;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.jk-indus-page-main-title {
  color: #021a80;
  font-size: 2.2rem;
  font-weight: 800;
}

.jk-indus-page-divider {
  width: 60px;
  height: 4px;
  background: #00b4d8;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* 1. Hero Section */
.jk-indus-page-hero {
  background: linear-gradient(135deg, #021a80 0%, #032cd9 100%);
  padding: 130px 0 70px 0;
  color: #ffffff;
  text-align: center;
}

.jk-indus-page-tag {
  background: rgba(224, 247, 250, 0.15);
  border: 1px solid #00b4d8;
  color: #e0f7fa;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.jk-indus-page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.jk-indus-page-accent {
  color: #00b4d8;
}

.jk-indus-page-hero-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* 2. Industry Card Grid */
.jk-indus-page-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.jk-indus-page-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(3, 44, 217, 0.04);
  transition: all 0.3s ease;
}

.jk-indus-page-box:hover {
  transform: translateY(-8px);
  border-color: #00b4d8;
  box-shadow: 0 12px 30px rgba(3, 44, 217, 0.12);
}

.jk-indus-page-box-icon {
  width: 60px;
  height: 60px;
  background: #e0f7fa;
  color: #032cd9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.jk-indus-page-box:hover .jk-indus-page-box-icon {
  background: #032cd9;
  color: #ffffff;
}

.jk-indus-page-box h3 {
  color: #021a80;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.jk-indus-page-box p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}
.jk-indus-page-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.jk-indus-page-box-icon {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.jk-indus-page-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shine Layer */
.jk-indus-page-box-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

/* Hover State */
.jk-indus-page-box:hover {
  transform: translateY(-5px);
}

.jk-indus-page-box:hover .jk-indus-page-box-icon::before {
  left: 125%;
}
/* 3. Technical Tabs Section */
.jk-indus-tab-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(3, 44, 217, 0.05);
}

.jk-indus-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.jk-indus-tab-btn {
  flex: 1;
  min-width: 150px;
  padding: 15px 20px;
  border: none;
  background: transparent;
  color: #021a80;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jk-indus-tab-btn.active, .jk-indus-tab-btn:hover {
  background: #032cd9;
  color: #ffffff;
}

.jk-indus-tab-content {
  display: none;
  padding: 35px;
}

.jk-indus-tab-content.active {
  display: block;
}

.jk-indus-tab-content h3 {
  color: #021a80;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.jk-indus-tab-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.jk-indus-check-list {
  list-style: none;
}

.jk-indus-check-list li {
  color: #021a80;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jk-indus-check-list i {
  color: #00b4d8;
}

/* 4. Stats Counter Strip */
.jk-indus-page-counter-strip {
  background: linear-gradient(90deg, #032cd9, #00b4d8);
  padding: 50px 0;
  color: #ffffff;
}

.jk-indus-page-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.jk-indus-page-counter-item h2 {
  font-size: 2.1rem;
  font-weight: 800;
}

.jk-indus-page-counter-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 5. Process Cards */
.jk-indus-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.jk-indus-process-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(3, 44, 217, 0.04);
  position: relative;
  transition: transform 0.3s ease;
}

.jk-indus-process-card:hover {
  transform: translateY(-5px);
  border-color: #00b4d8;
}

.jk-indus-step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #e0f7fa;
  background: #032cd9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.jk-indus-process-card h4 {
  color: #021a80;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.jk-indus-process-card p {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* 6. Testimonials */
.jk-indus-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.jk-indus-testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.jk-indus-stars {
  color: #ffb703;
  margin-bottom: 15px;
}

.jk-indus-testimonial-card p {
  color: #475569;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.jk-indus-client-info h5 {
  color: #021a80;
  font-size: 1rem;
}

.jk-indus-client-info span {
  color: #00b4d8;
  font-size: 0.85rem;
  font-weight: 600;
}

/* 7. FAQ Accordion */
.jk-indus-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.jk-indus-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.jk-indus-faq-question {
  padding: 18px 20px;
  font-weight: 700;
  color: #021a80;
  cursor: pointer;
  background: #f8fafc;
  list-style: none;
}

.jk-indus-faq-item[open] .jk-indus-faq-question {
  background: #032cd9;
  color: #ffffff;
}

.jk-indus-faq-answer {
  padding: 20px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 8. Call To Action (CTA) */
.jk-indus-page-action-banner {
  background: #021a80;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.jk-indus-page-action-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.jk-indus-page-action-banner p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.jk-indus-page-action-btn {
  background: #00b4d8;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background 0.3s ease;
}

.jk-indus-page-action-btn:hover {
  background: #032cd9;
}

/* Responsive */
@media (max-width: 768px) {
  .jk-indus-page-hero-title {
    font-size: 2.1rem;
  }
}

.jk-contact-page-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.jk-contact-page-block {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Headers */
.jk-contact-page-top-head {
  text-align: center;
  margin-bottom: 30px;
}

.jk-contact-page-badge {
  color: #032cd9;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.jk-contact-page-top-head h2 {
  color: #021a80;
  font-size: 2.2rem;
  font-weight: 800;
}

.jk-contact-page-divider {
  width: 60px;
  height: 4px;
  background: #00b4d8;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* 1. Hero Section */
.jk-contact-page-hero {
  background: linear-gradient(135deg, #021a80 0%, #032cd9 100%);
  padding: 120px 0 60px 0;
  color: #ffffff;
  text-align: center;
}

.jk-contact-page-tag {
  background: rgba(224, 247, 250, 0.15);
  border: 1px solid #00b4d8;
  color: #e0f7fa;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.jk-contact-page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.jk-contact-page-accent {
  color: #00b4d8;
}

.jk-contact-page-hero-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* 2. Main Layout Grid */
.jk-contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info Cards */
.jk-contact-page-head {
  margin-bottom: 30px;
}

.jk-contact-page-head h2 {
  color: #021a80;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.jk-contact-page-head p {
  color: #64748b;
  font-size: 0.95rem;
}

.jk-contact-page-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 20px 22px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.jk-contact-page-card:hover {
  transform: translateY(-3px);
  border-color: #00b4d8;
}

.jk-contact-page-icon {
  width: 50px;
  height: 50px;
  background: #e0f7fa;
  color: #032cd9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.jk-contact-page-card-text h4 {
  color: #021a80;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.jk-contact-page-card-text p,
.jk-contact-page-card-text a {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
}

.jk-contact-page-card-text a:hover {
  color: #032cd9;
}

/* Contact Form Styling */
.jk-contact-page-form-wrap {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(3, 44, 217, 0.06);
}

.jk-contact-page-form-wrap h3 {
  color: #021a80;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.jk-contact-page-form-wrap p {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 25px;
}

.jk-contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.jk-contact-page-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.jk-contact-page-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jk-contact-page-input-group label {
  color: #021a80;
  font-weight: 600;
  font-size: 0.88rem;
}

.jk-contact-page-input-group input,
.jk-contact-page-input-group select,
.jk-contact-page-input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  background: #f8fafc;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.jk-contact-page-input-group input:focus,
.jk-contact-page-input-group select:focus,
.jk-contact-page-input-group textarea:focus {
  border-color: #032cd9;
  background: #ffffff;
}

.jk-contact-page-submit-btn {
  background: #032cd9;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.jk-contact-page-submit-btn:hover {
  background: #021a80;
  transform: translateY(-2px);
}

/* 3. Map Section */
/* 3. Google Maps Location Section (Updated & Fixed) */
.jk-contact-page-map-sec {
  background-color: #ffffff; /* ব্যাকগ্রাউন্ড সাদা করা হলো যেন টেক্সট পরিষ্কার বোঝা যায় */
  padding: 60px 0 80px 0;    /* ম্যাপের উপরে ও নিচে পর্যাপ্ত স্পেস দেওয়া হলো */
}

.jk-contact-page-top-head {
  text-align: center;
  margin-bottom: 35px;
}

/* "LOCATION MAP" ব্যাজের কালার ঠিক করা হলো */
.jk-contact-page-badge {
  color: #032cd9; 
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* "Find Our Manufacturing Unit" মেইন টাইটেলের কালার স্পষ্ট করা হলো */
.jk-contact-page-top-head h2 {
  color: #021a80; /* ডার্ক ব্লু যেন সাদা ব্যাকগ্রাউন্ডে পরিষ্কার দেখা যায় */
  font-size: 2.2rem;
  font-weight: 800;
}

.jk-contact-page-divider {
  width: 60px;
  height: 4px;
  background: #00b4d8;
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* ম্যাপের চারপাশের ফ্রেম ও মার্জিন সলভ */
.jk-contact-page-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(2, 26, 128, 0.08);
  margin-bottom: 40px; /* ফুটার এবং ম্যাপের মাঝে অতিরিক্ত গ্যাপ তৈরি করবে */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .jk-contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .jk-contact-page-hero-title {
    font-size: 2.1rem;
  }
  
  .jk-contact-page-input-row {
    grid-template-columns: 1fr;
  }

  .jk-contact-page-form-wrap {
    padding: 25px 20px;
  }
}
/* ================= FIXED FLOATING BUTTONS CSS ================= */
/* Floating Container Position Update */
.jk-float-container {
  position: fixed;
  bottom: 80px; /* আগে ৪০ বা ২০ পিক্সেল থাকলে তা বাড়িয়ে ৮০ পিক্সেল করুন */
  right: 20px;
  z-index: 9999; /* যেন অন্যান্য সাধারণ উপাদানের উপরে থাকে */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jk-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.jk-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* Contact Button Styling */
.jk-float-contact-btn {
  background: linear-gradient(135deg, #021a80, #032cd9);
}

/* WhatsApp Button Styling */
.jk-float-wa-btn {
  background-color: #25d366;
}

/* Tooltip Styling */
.jk-float-tooltip {
  position: absolute;
  right: 62px;
  background-color: #021a80;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.jk-float-btn:hover .jk-float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ================= MODAL OVERLAY & POPUP ================= */
.jk-float-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 26, 128, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 15px;
}

.jk-float-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.jk-float-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.jk-float-modal-overlay.active .jk-float-modal-content {
  transform: translateY(0) scale(1);
}

.jk-float-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.jk-float-modal-close:hover {
  color: #021a80;
}

/* Modal Header */
.jk-float-modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.jk-float-modal-icon {
  width: 45px;
  height: 45px;
  background: #e0f7fa;
  color: #032cd9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  font-size: 18px;
}

.jk-float-modal-header h3 {
  color: #021a80;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.jk-float-modal-header p {
  color: #64748b;
  font-size: 0.85rem;
}

/* Form Styles */
.jk-float-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jk-float-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jk-float-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jk-float-input-group label {
  color: #021a80;
  font-size: 0.8rem;
  font-weight: 700;
}

.jk-float-input-group input,
.jk-float-input-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  background: #f8fafc;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.jk-float-input-group input:focus,
.jk-float-input-group textarea:focus {
  border-color: #032cd9;
  background: #ffffff;
}

.jk-float-submit-btn {
  background: #032cd9;
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 6px;
}

.jk-float-submit-btn:hover {
  background: #021a80;
}

/* Responsive Handling */
@media (max-width: 576px) {
  .jk-float-input-row {
    grid-template-columns: 1fr;
  }
  .jk-float-container {
    bottom: 15px;
    right: 15px;
  }
}
/* Modern Success Modal Styles */
/* Custom Modern Success Modal Styles */
.jk-custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 26, 128, 0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.jk-custom-modal.active {
  opacity: 1;
  visibility: visible;
}

.jk-modal-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jk-custom-modal.active .jk-modal-card {
  transform: scale(1);
}

.jk-modal-icon {
  font-size: 60px;
  color: #10B981;
  margin-bottom: 15px;
}

.jk-modal-card h2 {
  color: #021a80;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.jk-modal-card p {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.jk-modal-btn {
  background: #021a80;
  color: #ffffff;
  border: none;
  padding: 12px 35px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
/* Container & Background styling */
/* Section Base with light background */
.accreditations-section {
  padding: 50px 20px;
  background-color: #ffffff; /* আপনার সাইটের মতো নিখুঁত সাদা ব্যাকগ্রাউন্ড */
  color: #333333;
}

.accreditations-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title Styling with Header Blue color */
.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #0b4cb8; /* হেডার নেভিগেশনের মূল নীল রঙ */
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #555555;
  font-size: 1.05rem;
}

/* Slider Track Setup */
.cert-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

.cert-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.cert-slider:hover .cert-track {
  animation-play-state: paused; /* মাউস হভার করলে স্ক্রোলিং থামবে */
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Certificate Cards matching original UI */
.company-cert-card {
  background: #ffffff;
  border: 1.5px solid #dcdcdc; /* হালকা বর্ডার */
  border-radius: 12px;
  width: 320px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
}

.company-cert-card:hover {
  transform: translateY(-5px);
  border-color: #0b4cb8; /* হভার করলে ব্র্যান্ডের নীল কালার হবে */
  box-shadow: 0 8px 20px rgba(11, 76, 184, 0.15);
}

.cert-img-box {
  width: 100%;
  height: 420px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ইমেজ রেশিও ঠিক রাখতে সাহায্য করবে */
  border-radius: 4px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
  .company-cert-card {
    width: 260px;
  }
  .cert-img-box {
    height: 340px;
  }
}
/* ==========================================
   Success Modal Modern Styling
   ========================================== */

/* Full Screen Backdrop Overlay */
#jkSuccessModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55); /* ডার্ক মডার্ন শ্যাডো overlay */
  backdrop-filter: blur(6px); /* ব্যাকগ্রাউন্ড ব্লা‌র ইফেক্ট */
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#jkSuccessModal.active {
  display: flex !important;
  opacity: 1;
}

/* Modal Content Card Box */
#jkSuccessModal .jk-modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

#jkSuccessModal.active .jk-modal-box {
  transform: scale(1);
}

/* Green Checkmark Icon Styling & Animation */
#jkSuccessModal .fa-circle-check,
#jkSuccessModal .jk-success-icon {
  font-size: 60px;
  color: #10b981; /* Vibrant Success Green */
  margin-bottom: 16px;
  display: inline-block;
  animation: popIcon 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Modal Title */
#jkSuccessModal h2 {
  font-size: 1.5rem;
  color: #0b4cb8; /* আপনার ব্র্যান্ডের প্রাইমারি ব্লু */
  font-weight: 700;
  margin: 0 0 10px 0;
}

/* Modal Paragraph */
#jkSuccessModal p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 25px 0;
}

/* Done Button Styling */
#jkModalCloseBtn {
  background-color: #0b4cb8; /* হেডার কালার কোড */
  color: #ffffff;
  border: none;
  padding: 11px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(11, 76, 184, 0.25);
  outline: none;
}

#jkModalCloseBtn:hover {
  background-color: #083b91;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 76, 184, 0.35);
}

#jkModalCloseBtn:active {
  transform: translateY(0);
}

/* Animation Keyframes */
@keyframes popIcon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile Screen Adjustment */
@media (max-width: 480px) {
  #jkSuccessModal .jk-modal-box {
    padding: 30px 20px;
    max-width: 90%;
  }
}