/* ==========================================================================
   JIYARAM WIRES & CABLES - MAIN STYLESHEET
   Root Color Variables & Component Styling
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-color: #0072CE;
  --primary-hover: #0056B3;
  --primary-light: #F0F7FF;
  --secondary-color: #0F172A;
  --navy-dark: #0B132B;
  --navy-card: #152238;
  --navy-light: #1E293B;
  
  /* Text Colors */
  --text-dark: #1E293B;
  --text-body: #475467;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Background Colors */
  --bg-light: #F8FAFC;
  --bg-gray: #F1F5F9;
  --bg-card: #FFFFFF;
  
  /* Borders & Shadows */
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 8px 20px rgba(0, 114, 206, 0.25);
  
  /* Utility Specs */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Global Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

/* Custom Buttons */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-video {
  display: inline-flex;
  align-items: center;

/* Theme Color Utilities */
.text-blue,
.text-orange,
.text-highlight {
  color: var(--primary-color) !important;
}

.bg-blue,
.bg-orange {
  background-color: var(--primary-color) !important;
}
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-video .play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.btn-video:hover .play-icon {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.08);
}

/* Badges & Tags */
.section-tag {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

/* ==========================================================================
   EXACT TOPBAR & HEADER STYLES (MATCHING SCREENSHOT 1:1)
   ========================================================================== */

/* Top Bar */
.top-bar {
  background-color: #F8F6F4;
  border-bottom: 1px solid #EAE7E2;
  padding: 8px 0;
  font-size: 13px;
  color: #555555;
}

.top-bar-left {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.top-bar-orange-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #0072CE;
  margin-left: 12px;
  vertical-align: middle;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.top-nav-link {
  color: #4A5568;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.top-nav-link:hover {
  color: #0072CE;
}

.top-nav-divider {
  color: #CBD5E1;
  font-size: 13px;
}

.top-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.top-social-list a {
  color: #2D3748;
  font-size: 14px;
  transition: var(--transition);
}

.top-social-list a:hover {
  color: #0072CE;
}

/* Main Header */
.main-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.main-navbar {
  padding: 12px 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #1A202C;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  display: inline-block;
}

.main-nav-link:hover, .main-nav-link.active {
  color: #0072CE !important;
}

/* Search & CTA Button */
.header-search-btn {
  background: none;
  border: none;
  color: #2D3748;
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.header-search-btn:hover {
  color: #0072CE;
}

.btn-header-quote {
  background-color: #0072CE;
  color: #FFFFFF;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.25);
  transition: var(--transition);
}

.btn-header-quote:hover {
  background-color: #0056B3;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 114, 206, 0.35);
}

@media (max-width: 991px) {
  .header-action-wrap {
    width: 100%;
    justify-content: center !important;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .btn-header-quote {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
}


/* Header Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 240px;
}

.dropdown-item {
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

/* ==========================================================================
   EXACT HERO BANNER SECTION STYLES (1:1 MATCH WITH SCREENSHOT)
   ========================================================================== */

/* Hero Carousel Slider Setup */
.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-indicators {
  bottom: 20px;
  z-index: 5;
  margin-bottom: 0;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0A1128;
  opacity: 0.3;
  margin: 0 5px;
  border: none;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
  opacity: 1;
  background-color: #0072CE;
  width: 32px;
  border-radius: 10px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  z-index: 6;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev {
  left: 20px;
}

.hero-carousel .carousel-control-next {
  right: 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background-color: #0072CE;
  border-color: #0072CE;
  opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100%) brightness(0);
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.hero-banner-wrapper {
  position: relative;
  background-color: #F6F5F2;
  padding: 60px 0 50px 0;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}


.hero-content-left {
  position: relative;
  z-index: 3;
  padding-right: 20px;
}

.hero-tagline {
  color: #0072CE;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.hero-heading {
  font-size: 64px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.04;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-heading .text-highlight {
  color: #0072CE;
  display: block;
}

.hero-paragraph {
  font-size: 16px;
  color: #475467;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 34px;
  font-weight: 450;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 48px;
}

.btn-hero-primary {
  background-color: #0072CE;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 114, 206, 0.28);
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background-color: #0056B3;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 114, 206, 0.38);
}

.btn-hero-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #0F172A;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-video .play-btn-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #0072CE;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.btn-hero-video:hover {
  color: #0072CE;
}

.btn-hero-video:hover .play-btn-circle {
  background-color: #0072CE;
  color: #FFFFFF;
  transform: scale(1.08);
}

/* Stats Counter Row */
.hero-stats-row {
  display: flex;
  align-items: center;
  border-top: 1.5px solid #E2E8F0;
  padding-top: 24px;
  margin-top: 10px;
}

.hero-stat-box {
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1.5px solid #E2E8F0;
}

.hero-stat-box:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.hero-stat-val {
  font-size: 30px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-lbl {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  line-height: 1.2;
}

/* FULL-WIDTH HERO BACKGROUND IMAGE WITH SMOOTH GRADIENT OVERLAY */
.hero-full-right-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-full-right-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-full-right-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #F6F5F2 0%, rgba(246, 245, 242, 0.96) 35%, rgba(246, 245, 242, 0.72) 55%, rgba(246, 245, 242, 0.2) 75%, rgba(246, 245, 242, 0) 100%);
  z-index: 2;
  pointer-events: none;
}


@media (max-width: 991px) {
  .hero-banner-wrapper {
    position: relative;
    padding: 60px 0 50px 0;
    min-height: auto;
  }

  .hero-full-right-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-full-right-bg::after {
    background: linear-gradient(to bottom, #F6F5F2 0%, rgba(246, 245, 242, 0.95) 50%, rgba(246, 245, 242, 0.7) 75%, rgba(246, 245, 242, 0.2) 100%);
  }

  .hero-content-left {
    padding-right: 0;
  }

  .hero-heading {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-box {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    width: 45%;
  }
}





/* About Section */
.about-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.about-center-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 380px;
}

.about-center-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 19, 43, 0.95) 100%);
  padding: 30px 24px 24px 24px;
  color: #FFFFFF;
}

.about-card-badge h5 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-info h6 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   PRODUCT CATEGORIES - DARK NAVY SECTION (1:1 MATCH WITH SCREENSHOT)
   ========================================================================== */

.categories-section {
  background-color: #0A1128;
  color: #FFFFFF;
  padding: 85px 0;
  position: relative;
}

.category-header-tag {
  color: #0072CE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.category-header-title {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.category-header-desc {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 440px;
}

.category-view-all-link {
  color: #0072CE;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.category-view-all-link:hover {
  color: #FFFFFF;
}

/* Horizontal Split Category Cards */
.split-category-card {
  background-color: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.split-card-img-box {
  width: 46%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.split-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-category-card:hover .split-card-img-box img {
  transform: scale(1.06);
}

.split-card-body {
  width: 54%;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card-icon {
  font-size: 32px;
  color: #0072CE;
  margin-bottom: 16px;
}

.split-card-title {
  color: #0A1128;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.split-card-text {
  color: #64748B;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.split-card-link {
  color: #0072CE;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.split-card-link:hover {
  color: #0A1128;
}

@media (max-width: 767px) {
  .split-category-card {
    flex-direction: column;
  }
  .split-card-img-box, .split-card-body {
    width: 100%;
  }
  .split-card-img-box {
    height: 200px;
  }
}


/* Featured Products Carousel / Grid */
.products-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.product-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.product-img-box {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Navigation Arrow Controls */
.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
}

/* Applications Section */
/* Applications Section */
.applications-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.applications-section .section-tag {
  color: #0072CE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.applications-section .section-title {
  color: #0B132B;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}

.applications-section .link-arrow {
  color: #0072CE;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.applications-section .link-arrow:hover {
  color: #0056B3;
  transform: translateX(4px);
}

.app-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 190px;
  background-color: transparent !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.app-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.app-card:hover img {
  transform: scale(1.08) !important;
}

.app-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.02) 100%) !important;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.app-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent !important;
  border: none !important;
}

.app-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #0072CE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.app-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.2px;
}

/* ==========================================================================
   OUR COMMITMENT / QUALITY SECTION (EXACT 1:1 MATCH)
   ========================================================================== */

.quality-section {
  background-color: #FAF9F6;
  padding: 80px 0;
}

.quality-card-img-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 380px;
}

.quality-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quality-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #0072CE;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.quality-badge-overlay .badge-line-white {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}

.quality-badge-overlay .badge-line-orange {
  color: #0072CE;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}

/* Right Content Area */
.quality-right-content {
  padding-left: 20px;
}

.quality-tagline {
  color: #0072CE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.quality-heading {
  color: #0A1128;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.quality-paragraph {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 35px;
}

/* 4 Circular Pillar Icons Row */
.quality-pillars-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pillar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.pillar-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1128;
  font-size: 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.pillar-col:hover .pillar-circle {
  border-color: #0072CE;
  color: #0072CE;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 114, 206, 0.18);
}

.pillar-text {
  color: #0A1128;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .quality-right-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .quality-pillars-row {
    flex-wrap: wrap;
  }
  .pillar-col {
    flex: 0 0 45%;
    margin-bottom: 15px;
  }
}



/* Manufacturing Process */
.process-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.process-step-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  border: 1px solid var(--border-color);
  height: 100%;
}

.process-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.process-img-box {
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.process-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step-card h6 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.process-highlight-banner {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-primary);
}

.process-highlight-banner h4 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

/* ==========================================================================
   CTA BANNER SECTION (1:1 MATCH WITH SCREENSHOT)
   ========================================================================== */

.cta-banner-section {
  position: relative;
  background-color: #0A1128;
  color: #FFFFFF;
  padding: 70px 0;
  overflow: hidden;
}

/* Background image overlay on left side */
.cta-banner-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.cta-banner-bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Gradient overlay fade from left to dark right */
.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 17, 40, 0.75) 0%, rgba(10, 17, 40, 0.95) 45%, #0A1128 75%);
  z-index: 2;
}

.cta-banner-container {
  position: relative;
  z-index: 3;
}

.cta-tagline {
  color: #0072CE;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.cta-heading {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.btn-cta-quote {
  background-color: #0072CE;
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 114, 206, 0.35);
  transition: var(--transition);
}

.btn-cta-quote:hover {
  background-color: #0056B3;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 114, 206, 0.45);
}

/* Contact Info Items */
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0072CE;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.cta-contact-info .contact-val {
  color: #FFFFFF;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
  display: block;
}

.cta-contact-info .contact-lbl {
  color: #94A3B8;
  font-size: 12.5px;
  font-weight: 500;
  display: block;
}

/* Handwritten Cursive Tagline on Right */
.cta-handwritten-text {
  font-family: 'Georgia', 'Caveat', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: 30px;
  line-height: 1.25;
  padding-left: 20px;
}

@media (max-width: 991px) {
  .cta-handwritten-text {
    padding-left: 0;
    margin-top: 25px;
    font-size: 24px;
  }
}


/* ==========================================================================
   EXACT LIGHT FOOTER SECTION (1:1 MATCH WITH SCREENSHOT)
   ========================================================================== */

.main-footer {
  background-color: #F8F7F4;
  color: #4A5568;
  padding: 65px 0 0 0;
  border-top: 1.5px solid #EAE7E2;
}

.footer-brand-col {
  padding-right: 20px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: #525866;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-social-box {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
}

.footer-social-icon.linkedin { background-color: #0077B5; }
.footer-social-icon.facebook { background-color: #1877F2; }
.footer-social-icon.youtube { background-color: #FF0000; }

.footer-col-divider {
  border-right: 1.5px solid #EAE7E2;
  padding-right: 20px;
}

.footer-column-title {
  color: #0F172A;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 9px;
}

.footer-nav-list a {
  color: #525866;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #0072CE;
}

/* Contact List Items in Footer */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  font-size: 18px;
  color: #0F172A;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  color: #1E293B;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-contact-text a {
  color: #1E293B;
  text-decoration: none;
}

.footer-contact-text a:hover {
  color: #0072CE;
}

/* India Map Graphic */
.footer-india-map {
  text-align: center;
}

.footer-india-map img {
  max-width: 170px;
  height: auto;
}

/* Bottom Bar */
.bottom-footer-bar {
  border-top: 1.5px solid #EAE7E2;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 13px;
  color: #64748B;
}

.bottom-footer-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.bottom-footer-links a {
  color: #64748B;
  text-decoration: none;
}

.bottom-footer-links a:hover {
  color: #0F172A;
}

@media (max-width: 991px) {
  .footer-col-divider {
    border-right: none;
    padding-right: 0;
    margin-bottom: 25px;
  }
}


/* Mobile Responsive Tweaks */
@media (max-width: 991px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-circle-bg, .hero-img-container {
    width: 320px;
    height: 320px;
  }
  .top-bar {
    display: none;
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-footer-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* ==========================================================================
   ABOUT US PAGE STYLES (MATCHING SCREENSHOT 1:1)
   ========================================================================== */

/* About Inner Hero Banner */
.about-hero-banner {
  position: relative;
  background-color: #0A1128;
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.about-hero-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
}

.about-hero-bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.about-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0A1128 0%, rgba(10, 17, 40, 0.8) 35%, rgba(10, 17, 40, 0.35) 65%, rgba(10, 17, 40, 0.05) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.breadcrumb-list a {
  color: #94A3B8;
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: #0072CE;
}

.about-hero-heading {
  font-size: 54px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-hero-heading .text-highlight {
  color: #0072CE;
  display: block;
}

.about-hero-desc {
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
}

/* Mission & Vision Section (1:1 Exact Match with Screenshot) */
.mission-vision-section {
  padding: 60px 0;
  background-color: #FAF9F6;
}

.mission-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid #EAEAE6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.mission-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0072CE;
  background-color: transparent;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.mission-card-body h4 {
  color: #0A1128;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.mission-card-body p {
  color: #64748B;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Right Cable Shape & Powering Text */
.vision-right-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  background: transparent;
  box-shadow: none;
}

.mission-cable-shape {
  position: relative;
  width: 210px;
  height: 145px;
  border-radius: 120px 40px 120px 40px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission-cable-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.powering-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.powering-text-box h5 {
  color: #0A1128;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.powering-text-box .orange-accent-line {
  width: 30px;
  height: 3px;
  background-color: #0072CE;
  display: block;
  border-radius: 2px;
}

/* Why Choose Jiyaram Section */
.why-choose-section {
  padding: 85px 0;
  background-color: #FFFFFF;
}

.why-choose-box {
  background-color: #F8F9FA;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  height: 100%;
}

.why-choose-box:hover {
  transform: translateY(-4px);
  background-color: #FFFFFF;
  border-color: #0072CE;
  box-shadow: 0 12px 25px rgba(0, 114, 206, 0.12);
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F0F7FF;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.why-choose-box h5 {
  color: #0A1128;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-choose-box p {
  color: #64748B;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.why-choose-right-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-right-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-badge {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.92) 100%);
  padding: 30px 24px 24px 24px;
  color: #FFFFFF;
}

.why-choose-badge h5 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0;
}

/* Infrastructure Section (1:1 Match with Screenshot) */
.infra-section {
  padding: 75px 0;
  background-color: #FFFFFF;
}

.infra-left-card {
  background-color: #071026;
  border-radius: 14px;
  padding: 42px 32px;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(7, 16, 38, 0.15);
}

.infra-tag {
  color: #0072CE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.infra-heading {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.infra-heading .text-orange {
  color: #0072CE;
  display: block;
}

.infra-desc {
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-infra-orange {
  background-color: #0072CE;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 114, 206, 0.25);
}

.btn-infra-orange:hover {
  background-color: #0056B3;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* 4 Tall Vertical Cards */
.infra-tall-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infra-tall-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.infra-tall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.infra-tall-card:hover img {
  transform: scale(1.08);
}

.infra-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 16, 38, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px 14px;
  gap: 10px;
}

.infra-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 17px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.08);
}

.infra-card-title {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 85px 0;
  background-color: #FAF9F6;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 14px;
  padding: 30px 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: #0072CE;
}

.quote-icon-large {
  font-size: 32px;
  color: #0072CE;
  margin-bottom: 14px;
}

.testimonial-text {
  color: #475467;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #E2E8F0;
}

.author-info h6 {
  color: #0A1128;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}

.author-info span {
  color: #94A3B8;
  font-size: 12.5px;
  display: block;
}

.star-rating {
  color: #F59E0B;
  font-size: 13px;
}

.testimonial-nav-btns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.testimonial-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  color: #0A1128;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-nav-btn:hover {
  background-color: #0072CE;
  color: #FFFFFF;
  border-color: #0072CE;
}

/* Slick Slider Track & Equal Height Cards */
.testimonial-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.testimonial-slider .slick-slide {
  height: auto;
  display: flex !important;
  flex-direction: column;
}

.testimonial-slider .testimonial-card {
  height: 100%;
  width: 100%;
}


/* ==========================================================================
   OUR QUALITY COMMITMENT SECTION (1:1 EXACT BACKGROUND FADE MATCH)
   ========================================================================== */

.quality-commitment-section {
  position: relative;
  padding: 85px 0;
  background-color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid #F1F5F9;
}

.quality-bg-artwork {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 48%;
  z-index: 1;
  pointer-events: none;
}

.quality-bg-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.75) 30%, #000000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.75) 30%, #000000 100%);
}

.quality-text-col {
  position: relative;
  z-index: 2;
}

.quality-tag {
  color: #0072CE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.quality-heading {
  color: #0A1128;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.quality-desc {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}

.quality-features-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.quality-feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 26px 10px;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quality-feature-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #0072CE;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 114, 206, 0.12);
}

.quality-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #0A1128;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #F1F5F9;
}

.quality-feature-title {
  color: #0A1128;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 991px) {
  .quality-bg-artwork {
    width: 100%;
    opacity: 0.25;
  }
  .quality-features-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* About Hero Right Visual Artwork */
.about-hero-right-art {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 3;
  width: 380px;
  text-align: right;
}

.about-hero-cursive-tagline {
  font-family: 'Georgia', 'Caveat', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  line-height: 1.2;
  margin-top: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* Mobile Responsive Tweaks */
@media (max-width: 991px) {
  .about-hero-heading {
    font-size: 36px;
  }
  .quality-commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title {
    font-size: 28px;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES (1:1 MATCH WITH SCREENSHOT)
   ========================================================================== */

/* 1. Key Contact Information 4-Cards Row */
.contact-info-cards-section {
  padding: 50px 0;
  background-color: #FAF9F6;
}

.contact-top-card {
  background-color: #FFFFFF;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-top-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 114, 206, 0.12);
  border-color: #0072CE;
}

.contact-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #FFF0EB;
  border: 1px solid #FFE4DB;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-card-body h6 {
  color: #0A1128;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-card-val {
  color: #0A1128;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
  display: block;
  text-decoration: none;
  line-height: 1.35;
}

.contact-card-val:hover {
  color: #0072CE;
}

.contact-card-sub {
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}


/* 2. Contact Form & Our Office Card */
.contact-form-section {
  padding: 70px 0;
  background-color: #FFFFFF;
}

.contact-form-box {
  background-color: #FAF9F6;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid #EAEAE6;
}

.form-field-custom {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0A1128;
  transition: all 0.2s ease;
}

.form-field-custom:focus {
  border-color: #0072CE;
  box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.15);
  outline: none;
}

/* Our Office Dark Card */
.our-office-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  background-color: #071026;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(7, 16, 38, 0.2);
}

.our-office-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.our-office-overlay {
  position: relative;
  z-index: 2;
  padding: 45px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office-title {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.office-orange-line {
  width: 35px;
  height: 3px;
  background-color: #0072CE;
  display: block;
  margin-bottom: 30px;
  border-radius: 2px;
}

.office-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.office-info-icon {
  font-size: 18px;
  color: #0072CE;
  margin-top: 3px;
  flex-shrink: 0;
}

.office-info-text {
  color: #E2E8F0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.office-info-text a {
  color: #E2E8F0;
  text-decoration: none;
}

.office-info-text a:hover {
  color: #0072CE;
}

.office-cursive-text {
  font-family: 'Georgia', 'Caveat', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: 26px;
  line-height: 1.2;
  text-align: right;
  margin-top: 20px;
}


/* 3. Interactive Map Section */
.contact-map-section {
  padding: 0 0 60px 0;
  background-color: #FFFFFF;
}

#contactPageMap {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #EAEAE6;
}


/* 4. Other Ways to Connect */
.other-ways-section {
  padding: 75px 0;
  background-color: #FAF9F6;
  border-top: 1px solid #EAEAE6;
}

.support-card {
  background-color: #FFFFFF;
  border-radius: 14px;
  padding: 30px 24px;
  border: 1px solid #EAEAE6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 114, 206, 0.1);
  border-color: #0072CE;
}

.support-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F0F7FF;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.support-card h5 {
  color: #0A1128;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.support-card p {
  color: #64748B;
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.support-link {
  color: #0072CE;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.support-link:hover {
  color: #0A1128;
}


/* Mobile Responsive Tweaks */
@media (max-width: 991px) {
  .our-office-card {
    min-height: auto;
  }
  .contact-top-card {
    margin-bottom: 15px;
  }
}


/* ==========================================================================
   SINGLE PRODUCT PAGE HERO & DETAILS (1:1 MATCH WITH SCREENSHOT)
   ========================================================================== */

.single-product-hero-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.product-hero-img-card {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.product-hero-img-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.product-hero-img-card:hover img {
  transform: scale(1.02);
}

.product-hero-details {
  padding-left: 15px;
}

.product-category-tag {
  color: #0072CE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.product-title-heading {
  color: #0A1128;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-subtitle {
  color: #1E293B;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-description-text {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Feature Badges Grid */
.product-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.product-badge-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.product-badge-card:hover {
  background-color: #FFFFFF;
  border-color: #0072CE;
  box-shadow: 0 6px 16px rgba(0, 114, 206, 0.08);
  transform: translateY(-3px);
}

.product-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #FFF5F2;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

.product-badge-card:hover .product-badge-icon {
  background-color: #0072CE;
  color: #FFFFFF;
}

.product-badge-title {
  color: #1E293B;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Action Buttons */
.product-actions-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-quote-custom {
  background-color: #0072CE;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid #0072CE;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 114, 206, 0.25);
  cursor: pointer;
}

.btn-quote-custom:hover {
  background-color: #d24214;
  border-color: #d24214;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 114, 206, 0.35);
}

.btn-whatsapp-custom {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-custom:hover {
  background-color: #1eb956;
  border-color: #1eb956;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* Product Specifications Table Section */
.product-specs-section {
  padding: 60px 0;
  background-color: #F8FAFC;
}

.specs-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.specs-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0A1128;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0072CE;
  display: inline-block;
}

.table-custom-specs {
  margin-bottom: 0;
}

.table-custom-specs th {
  background-color: #0A1128;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
}

.table-custom-specs td {
  padding: 12px 16px;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #E2E8F0;
}

.table-custom-specs tr:nth-child(even) td {
  background-color: #F8FAFC;
}

/* Product Applications Section (Where to Use Cards) */
.product-applications-section {
  padding: 70px 0;
  background-color: #FFFFFF;
}

.product-applications-section .app-card {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 24px !important;
  height: 100% !important;
  min-height: 200px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-applications-section .app-card:hover {
  background-color: #FFFFFF;
  border-color: #0072CE;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 114, 206, 0.12);
}

.product-applications-section .app-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: #F0F7FF;
  color: #0072CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.product-applications-section .app-card:hover .app-icon-wrap {
  background-color: #0072CE;
  color: #FFFFFF;
  transform: scale(1.05);
}

.product-applications-section .app-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.product-applications-section .app-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .product-hero-details {
    padding-left: 0;
    margin-top: 30px;
  }
  .product-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-title-heading {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .product-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .product-actions-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-quote-custom, .btn-whatsapp-custom {
    justify-content: center;
    width: 100%;
  }
}
/* Submenu Nested Dropdown CSS */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: 0;
  border-radius: 10px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 230px;
  padding: 8px 0;
  background-color: #FFFFFF;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  border: none;
  margin-top: 2px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    left: 0;
    top: 0;
    display: block;
    box-shadow: none;
    padding-left: 15px;
    border: none;
    background-color: transparent;
  }
}

/* Desktop Navbar Dropdown Hover */
@media (min-width: 992px) {
  .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    animation: fadeInDropdown 0.2s ease forwards;
  }

  .main-navbar .nav-item.dropdown:hover > .dropdown-toggle {
    color: #0072CE !important;
  }
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PRODUCTS ARCHIVE PAGE STYLES
   ========================================================================== */
.products-archive-section {
  background-color: #F8FAFC;
  padding: 80px 0;
}

.product-filter-header {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}

.product-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-filter-btn {
  background-color: #F1F5F9;
  color: var(--text-dark);
  border: 1px solid transparent;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-filter-btn:hover {
  background-color: #E2E8F0;
  color: var(--primary-color);
}

.product-filter-btn.active {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(0, 114, 206, 0.3);
}

.product-filter-btn .badge-count {
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
}

.product-filter-btn.active .badge-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.product-search-wrap {
  position: relative;
  min-width: 260px;
}

.product-search-input {
  width: 100%;
  padding: 10px 18px 10px 42px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background-color: #F8FAFC;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.product-search-input:focus {
  border-color: var(--primary-color);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.12);
}

.product-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
}

/* Product Archive Card */
.product-archive-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-archive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.product-archive-img-wrap {
  position: relative;
  height: 200px;
  background-color: #FFFFFF;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #F1F5F9;
}

.product-archive-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-archive-card:hover .product-archive-img-wrap img {
  transform: scale(1.08);
}

.product-badge-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge-category.domestic {
  background: rgba(0, 114, 206, 0.9);
}

.product-badge-category.industrial {
  background: rgba(15, 23, 42, 0.9);
}

.product-badge-category.switchgear {
  background: rgba(13, 148, 136, 0.92);
}

.product-badge-spec {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(224, 242, 254, 0.92);
  backdrop-filter: blur(4px);
  color: #0369A1;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.product-archive-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-archive-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-archive-card:hover .product-archive-title {
  color: var(--primary-color);
}

.product-archive-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-archive-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.product-archive-features li {
  font-size: 11px;
  background: #F1F5F9;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-archive-features li i {
  color: var(--primary-color);
  font-size: 9px;
}

.product-archive-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-card-details {
  flex-grow: 1;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
}

.btn-card-details:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.btn-card-quote {
  background-color: #25D366;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-card-quote:hover {
  background-color: #128C7E;
  color: #FFFFFF;
  transform: scale(1.08);
}



