/*
Theme Name: Blank Slate Child
Theme URI: https://example.com/blankslate-child
Description: First-level child theme of Blank Slate providing a foundation for further customization.
Author: Satyam Bhardwaj
Author URI: https://example.com/
Template: blankslate
Version: 1.0.0
Text Domain: blankslate-child
*/

/* Add child theme overrides below */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* Source Sans Pro Font Face Declarations */
@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-Italic.ttf")
    format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-LightItalic.ttf")
    format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-ExtraLightItalic.ttf")
    format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-Semibold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-SemiboldItalic.ttf")
    format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-BoldItalic.ttf")
    format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-Black.ttf")
    format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/font/source-sans-pro/SourceSansPro-BlackItalic.ttf")
    format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Root palette and typography choices */
:root {
  --color-bg: #050b18;
  --color-surface: #000000;
  --color-primary: #073fd0;
  --color-primary-light: #073fd0;
  --color-accent: #f5b400;
  --color-text: #050b18;
  --color-muted: #a5b4d4;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-base: "Source Sans Pro", sans-serif !important;
  --font-source-sans-pro: "Source Sans Pro", sans-serif !important;
}

/* Global type + layout baseline */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", var(--font-base), sans-serif;
  color: var(--color-text);
  /* background-color: var(--color-bg); */
  line-height: 1.6;
  min-height: 100vh;
}

/* Headings - Source Sans Pro */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
}

/* Content elements - Source Sans 3 */
p,
a,
span,
div,
li,
td,
th,
label,
input,
textarea,
select,
button {
  font-family: "Source Sans 3", sans-serif;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
ol,
ul {
  list-style: disc;
}

a:hover,
a:focus-visible {
  color: var(--color-primary-light);
}
.padding-100 {
  padding: 100px 0;
}
.padding-80 {
  padding: 80px 0;
}
.padding-60 {
  padding: 60px 0;
}
.padding-50 {
  padding: 50px 0;
}
.padding-40 {
  padding: 40px 0;
}
.padding-20 {
  padding: 20px 0;
}
.text-blue {
  color: #073fd0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font-family: var(--font-base);
}
.heading-section h1 {
  font-weight: 700;
  font-size: 50px;
}
.heading-section p {
  font-size: 30px;
}

/* Header styling */
.site-header {
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.brand-mark {
  color: #111827;
}

.brand-logo img,
.brand-logo svg,
.custom-logo-link img {
  max-height: 70px;
  width: auto;
  display: block;
}

.main-nav .nav-link,
.main-nav .menu-item a {
  color: #111827;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .menu-item:hover a,
.main-nav .nav-link:focus-visible,
.main-nav .current-menu-item .nav-link,
.main-nav .current-menu-item .menu-item a,
.main-nav .current_page_item .nav-link,
.main-nav .current_page_item .menu-item a {
  color: var(--color-primary);
}

.header-cta {
  min-width: 260px;
}

.header-btn {
  border-width: 1px;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 24px;
}

.header-btn--solid {
  background: linear-gradient(90deg, #1c5dff 0%, #003dd6 100%);
  border-color: transparent;
}

.header-btn--solid:hover,
.header-btn--solid:focus-visible {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .header-cta {
    width: 100%;
  }

  .header-btn {
    flex: 1 1 45%;
  }
}

/* home */

.banner-text h1 {
  font-weight: 700;
  font-size: 4.375rem;
  color: #fff;
}
.banner-text p {
  font-size: 28px;
  color: #fff;
  font-weight: 400;
}
.hero-copy {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
.hero-copy p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.hero-copy ul,
.hero-copy ol {
  margin: 0.25rem 0 0.75rem 0;
  padding-left: 0;
  list-style: none;
}
.hero-copy ul li,
.hero-copy ol li {
  position: relative;
  padding-left: 1.5rem;
  color: #fff;
  font-size: 18px;
  margin-bottom: 0.4rem;
}
.hero-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.hero-copy ol {
  counter-reset: hero-ol;
}
.hero-copy ol li::before {
  counter-increment: hero-ol;
  content: counter(hero-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #073fd0;
  font-weight: 700;
  font-size: 18px;
}
.hero-copy a {
  color: #7fb3ff;
  text-decoration: underline;
}
.hero-copy strong,
.hero-copy b {
  color: #fff;
  font-weight: 700;
}

.glass-effect {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  border-radius: 20px;
  border: none;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: fit-content;
}

.glass-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cal-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
}

.cal-content h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.cal-content p {
  font-size: 18px;
  margin: 5px 0;
  color: #fff;
  font-weight: 500;
}

.cal-content a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}

/* Connection section */
.connection-section {
  background-image: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Group-2085662878-1.png");
  background-size: 100% 100%;
}

@media (max-width: 991px) {
  .connection-section .heading-section h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .connection-section .heading-section > div,
  .connection-section .heading-section > div p {
    font-size: 18px;
    line-height: 1.45;
  }

  .connection-section .tech-wysiwyg-content,
  .connection-section .tech-wysiwyg-content p {
    font-size: 17px;
    line-height: 1.55;
  }
}

@media (max-width: 576px) {
  .connection-section .heading-section h1 {
    font-size: 26px;
  }

  .connection-section .heading-section > div,
  .connection-section .heading-section > div p {
    font-size: 16px;
  }

  .connection-section .tech-wysiwyg-content,
  .connection-section .tech-wysiwyg-content p {
    font-size: 15px;
  }
}

/* --- Technology Slider --- */

.tech-card-slider {
  position: relative;
  background: transparent;
  border-radius: 39px;
  border-top-right-radius: 66px;

  border: 6px solid transparent;
  transition: border-color 0.2s;
  overflow: hidden;
  margin: 0 16px;
  height: 500px;
  display: flex;
  align-items: stretch;
}
.tech-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  border-top-right-radius: 60px;
  display: block;
  filter: brightness(0.85);
  min-height: 390px;
}
.tech-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border-radius: 32px;
  border-top-right-radius: 60px;
}
.tech-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.tech-card-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.tech-card-link {
  color: #fff;
  text-decoration: underline;
  font-size: 1.3rem;
  font-weight: 500;
  transition: color 0.2s;
}
.tech-card-link:hover {
  color: var(--color-primary);
}
.slick-track {
  display: flex !important;
  align-items: stretch;
}
.slick-slide > div {
  height: 100%;
}
/* Technology Slider Dots */
.slider-tech .slick-dots {
  bottom: -50px;
  text-align: center;
  position: absolute;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider-tech .slick-dots li {
  margin: 0 8px;
  width: auto;
  height: auto;
  display: inline-block;
}

.slider-tech .slick-dots li button {
  width: 20.63px;
  height: 20.63px;
  padding: 0;
  border-radius: 50%;
  background: #eaeaea;
  border: none;
  transition: all 0.3s ease;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
}

.slider-tech .slick-dots li button:before {
  display: none;
}

.slider-tech .slick-dots li.slick-active button {
  background: #073fd0;
  width: 20.63px;
  height: 20.63px;
}
.tech-card-slider {
  border-color: transparent;
}
.slick-center .tech-card-slider,
.slick-current .tech-card-slider {
  border-color: #073fd0;
  box-shadow: 0px 3px 32px 0px rgba(7, 63, 208, 0.1);
}
@media (max-width: 991px) {
  .tech-card-slider,
  .tech-card-img {
    min-height: 378px;
    height: 378px;
    border-radius: 22px;
    border-top-right-radius: 60px;
  }
  .tech-card-content h3 {
    font-size: 1.45rem;
  }
}

/* Products Slider */
.slider-products {
  margin: 0 -15px;
}

.slider-products .slick-slide {
  padding: 0 15px;
}

.slider-products .slick-dots {
  bottom: -50px;
  text-align: center;
  position: absolute;
  width: 100%;
}

.slider-products .slick-dots li {
  margin: 0 8px;
  width: auto;
  height: auto;
}

.slider-products .slick-dots li button {
  width: 20.63px;
  height: 20.63px;
  padding: 0;
  border-radius: 50%;
  background: #eaeaea;
  border: none;
  text-indent: -9999px;
  position: relative;
}

.slider-products .slick-dots li.slick-active button {
  background: #073fd0;
}

.slider-products .slick-dots li button:before {
  display: none;
}

/* Hide dots when there are few products */
.slider-products.single-or-few-slides .slick-dots {
  display: none !important;
}

/* Fix width and centering for few products */
.slider-products.single-or-few-slides .slick-list {
  text-align: center;
  overflow: visible;
}

.slider-products.single-or-few-slides .slick-track {
  width: 100% !important;
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  margin: 0 auto;
}

/* Force override inline styles for transform */
.slider-products.single-or-few-slides .slick-track[style*="transform"] {
  transform: translate3d(0, 0, 0) !important;
}

.slider-products.single-or-few-slides .slick-slide {
  width: auto !important;
  float: none !important;
  display: inline-block !important;
  flex-shrink: 0;
}

/* --- Connect With Us Section --- */
.connect-section {
  background: #021330;
  box-shadow: 0 2px 22px 8px rgba(5, 63, 208, 0.06);
  overflow: hidden;
  position: relative;
}
.connect-section .connect-bg {
  background: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Group-39896.png")
    center/cover no-repeat;
  z-index: 0;
  opacity: 1;
  filter: none;
  border-radius: 10px;
}

/* Bottom right corner accent */
.connect-section::after {
  width: 14px;
  height: 14px;
  right: -7px;
  bottom: -7px;
  border-bottom: 5px solid #0892ff;
  border-right: 5px solid #0892ff;
  border-radius: 0 0 10px 0;
}
.connect-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.connect-text-blue {
  color: #2072ff;
}
.connect-desc {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
.connect-btn {
  min-width: 152px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 32px;
  margin: 2px 0 0 0;
  border-width: 2px;
  background: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
}
.connect-btn--solid {
  background: #073fd0;
  color: #fff !important;
  border-color: transparent !important;
}
.connect-btn--solid:hover,
.connect-btn--solid:focus-visible {
  background: #0a41ac !important;
  color: #fff !important;
}
.connect-btn:not(.connect-btn--solid) {
  color: #097cf7 !important;
  border-color: #097cf7 !important;
  background: #fff !important;
}
.connect-btn:not(.connect-btn--solid):hover,
.connect-btn:not(.connect-btn--solid):focus-visible {
  background: #eaf2ff !important;
  color: #0242c1 !important;
  border-color: #097cf7 !important;
}
@media (max-width: 991px) {
  .connect-title {
    font-size: 2.1rem;
  }
  .connect-section {
    padding: 40px 6px !important;
  }
  .connect-desc {
    font-size: 1rem;
  }
  .connect-btn {
    min-width: unset;
    width: 46%;
    font-size: 0.98rem;
  }
  .connect-section .row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .connect-section .col-lg-4.col-12 {
    justify-content: flex-start !important;
    margin-top: 22px;
  }
}

/* --- News & Events Section --- */
.news-section {
  margin-top: 36px;
}
.news-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
}
.news-event-head {
  font-size: 2rem;
  font-weight: 700;
  color: #2072ff;
}
.news-event-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
}
.news-btn-blue {
  border-radius: 10px;
  min-width: 140px;
  font-weight: 600;
  background: #073fd0;
  border: none;
  color: #fff;
  box-shadow: 0 1.5px 8px rgba(7, 63, 208, 0.06);
  transition: background 0.16s;
}
.news-btn-blue:hover,
.news-btn-blue:focus-visible {
  background: #0b328b;
  color: #fff;
}
.news-btn-outline {
  border-radius: 10px;
  min-width: 120px;
  font-weight: 600;
  color: #073fd0;
  border: 2px solid #073fd0;
  background: none;
  transition:
    background 0.17s,
    color 0.16s;
}
.news-btn-outline:hover,
.news-btn-outline:focus-visible {
  background: #ecf2fe;
  color: #032266;
  border-color: #073fd0;
}
@media (max-width: 991px) {
  .news-title {
    font-size: 2rem;
  }
  .news-event-head,
  .news-event-title {
    font-size: 1.25rem;
  }
}

/* --- Meet Paricon Section --- */
.meet-section {
  min-height: 430px;
  background: #f8fafd;
  padding: 110px 0 85px 0 !important;
  position: relative;
  margin: 62px 0 0 0;
}
.meet-bg {
  background: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Group-39910.png")
    center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}
.meet-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #181818;
  letter-spacing: -1px;
}
.meet-title .text-blue {
  color: #073fd0;
}
.meet-desc {
  color: #181818;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 36px;
}
.meet-btn {
  border-radius: 10px;
  border-width: 2.2px;
  font-weight: 700;
  font-size: 1.14rem;
  min-width: 148px;
  color: #073fd0;
  border-color: #073fd0;
  background: #fff;
  transition:
    background 0.16s,
    color 0.16s;
}
.meet-btn:hover,
.meet-btn:focus-visible {
  background: #e8f0fe;
  color: #022155;
}
@media (max-width: 991px) {
  .meet-title {
    font-size: 2.15rem;
  }
  .meet-section {
    padding: 60px 0 40px 0 !important;
  }
  .meet-desc {
    font-size: 1.065rem;
  }
}

/* --- Clients Section --- */
.client-section {
  background: #fff;
  position: relative;
  padding: 85px 0 68px 0 !important;
}
.client-bg {
  background: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Group-2085662878-1.png")
    center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}
.client-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 3.25rem;
}
.client-logo-row {
  max-width: 1150px;
  margin: 0 auto;
}
.client-logo {
  max-width: 148px;
  width: 100%;
  object-fit: contain;
  aspect-ratio: 3.5/1;
  margin: 0 auto;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #bfc2c5;
  opacity: 1;
  filter: grayscale(1) contrast(1.2);
  transition:
    filter 0.2s,
    color 0.2s,
    opacity 0.2s;
}
.logo-faded {
  filter: grayscale(1) contrast(1.25);
  color: #d6d6d6;
  opacity: 0.42;
}
.logo-highlight {
  font-weight: 800;
  color: #084ad8;
  filter: none;
  opacity: 1;
  /* This class is for the center logo (blue and non-faded) */
}
.client-logo-divider span {
  border-left: 3px solid #d5d5d5;
  height: 65px;
  display: inline-block;
  margin: 0 8px;
  opacity: 0.49;
}
@media (max-width: 991px) {
  .client-title {
    font-size: 1.5rem;
  }
  .client-logo-row {
    max-width: 95vw;
  }
  .client-logo {
    max-width: 84px;
    font-size: 1.3rem;
  }
  .client-logo-divider span {
    height: 36px;
    margin: 0 3px;
  }
}

/* --- Connect Big Section --- */
.connect-big-section {
  background: #084add;
  box-shadow: 0 8px 35px rgba(10, 52, 145, 0.07);
}
.connect-big-bg {
  opacity: 1;
  z-index: 0;
}
.connect-big-title {
  color: #fff;
  font-weight: 800;
  font-size: 3.1rem;
  margin-bottom: 1rem;
  line-height: 1.12;
}
.connect-big-desc {
  color: #f1f5ff !important;
  font-size: 1.11rem;
  font-weight: 400;
}
.connect-big-btn {
  background: #fff !important;
  color: #073fd0 !important;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  font-size: 1.3rem;
  min-width: 210px;
  box-shadow: 0 3px 16px 0 rgba(28, 62, 225, 0.08);
  transition:
    background 0.14s,
    color 0.14s;
}
.connect-big-btn:hover,
.connect-big-btn:focus-visible {
  background: #eaf1ff !important;
  color: #032266 !important;
}
.connect-label {
  left: 0;
  top: 2.2rem;
  background: #0792ff;
  color: #fff;
  padding: 0.42em 2.5em;
  font-size: 1.19rem;
  font-weight: 700;
  border-radius: 7px;
  box-shadow: 0 1px 8px #038bfc29;
  transform: rotate(-8deg) translate(-36%, 0);
  z-index: 9;
  pointer-events: none;
  letter-spacing: 0.01em;
}
@media (max-width: 991px) {
  .connect-big-title {
    font-size: 2.1rem;
  }
  .connect-big-section {
    min-height: 240px;
    padding: 38px 0 42px 0 !important;
  }
  .connect-label {
    font-size: 0.97rem;
    padding: 0.41em 1.3em;
  }
  .connect-big-btn {
    font-size: 1.01rem;
    min-width: 150px;
  }
}
@media (max-width: 600px) {
  .connect-label {
    left: 0;
    top: 0.8rem;
    font-size: 0.69rem;
  }
  .connect-big-btn {
    min-width: 116px;
  }
}

/* --- Clients Slick Dots --- */
.client-section .slick-dots {
  bottom: -33px;
  text-align: center;
}
.client-section .slick-dots li button:before {
  font-size: 24px;
  color: #c9d1ef;
  opacity: 0.46;
  transition:
    color 0.18s,
    opacity 0.18s;
}
.client-section .slick-dots li.slick-active button:before {
  color: #073fd0;
  opacity: 1;
}
.client-section .slick-arrow {
  display: none !important;
}

/* Clients Slider Styles */
.client-slider {
  margin: 0 auto;
}

.client-logo-slide {
  padding: 0 15px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* Highlight center slide */
.client-logo-slide.slick-center-highlight .client-logo {
  filter: none !important;
  opacity: 1 !important;
  color: #084ad8 !important;
}

/* Fade non-center slides */
.client-logo-slide:not(.slick-center-highlight) .client-logo {
  filter: grayscale(1) contrast(1.25);
  opacity: 0.42;
  color: #d6d6d6;
}

.client-logo-row-static {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 991px) {
  .client-section .slick-prev {
    left: -30px;
  }

  .client-section .slick-next {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .client-section .slick-prev {
    left: -20px;
  }

  .client-section .slick-next {
    right: -20px;
  }

  .client-logo-slide {
    padding: 0 10px;
  }
}

/* --- Products Section --- */
.product-section {
  background: #fff;
  position: relative;
}

/* Subtle circular patterns in corners */
.product-section::before,
.product-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.product-section::before {
  top: 20px;
  left: 20px;
}

.product-section::after {
  bottom: 20px;
  right: 20px;
}

.product-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0;
}

.news-title {
  text-align: left;
}

/* Products Section - Grid Layout */
.product-section .row.align-items-center {
  gap: 30px;
}

.product-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform 0.3s ease;
}

.product-card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

.product-card {
  background: #073fd0;
  border-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 4px;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.product-card-image {
  background: #073fd0;
  padding: 50px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.product-card-image img {
  max-width: 100%;
  height: 240px !important;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
  border-radius: 30px;
}

.product-card-content {
  background: #fff;
  padding: 25px 20px;
  text-align: center;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.4;
}

/* Active/center card styling - only for mobile when centerMode is active */
@media (max-width: 991px) {
  .slick-center .product-card {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(7, 63, 208, 0.15);
    border-color: rgba(7, 63, 208, 0.2);
  }
}

.slick-track {
  display: flex;
  align-items: stretch;
}

.slick-slide {
  height: auto;
}

.slick-slide > div {
  height: 100%;
}

@media (max-width: 991px) {
  .section-title,
  .news-title {
    font-size: 2rem;
  }

  .product-section .row.align-items-center .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .product-card-image {
    min-height: 240px;
    padding: 35px 25px;
  }

  .product-card-image img {
    max-height: 180px;
  }

  .product-card-content {
    padding: 25px 15px;
    min-height: 90px;
  }

  .product-card-title {
    font-size: 1.1rem;
  }
}

/* --- Footer Section --- */
.site-footer {
  background: #050b18
    url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px 0;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo-img {
  max-height: 100px;
  width: 70%;
}

.footer-logo-text {
  color: #fff;
}

.footer-logo-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.footer-logo-title sup {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 400;
}

.footer-logo-subtitle {
  font-size: 0.95rem;
  color: #fff;
  margin: 5px 0 0 0;
  font-weight: 400;
  opacity: 0.9;
}

/* Footer Heading */
.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #073fd0;
}

/* Footer CTA Buttons */
.footer-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-footer-contact {
  background: #fff;
  color: #073fd0;
  border: 2px solid #073fd0;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-footer-contact:hover {
  background: #073fd0;
  color: #fff;
  border-color: #073fd0;
}

.btn-footer-kit {
  background: #073fd0;
  color: #fff;
  border: 2px solid #073fd0;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-footer-kit:hover {
  background: #0a41ac;
  border-color: #0a41ac;
  color: #fff;
}

/* Footer Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-icon-wrapper {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.footer-icon {
  width: 16px;
  height: 16px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-address div {
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .site-footer {
    padding: 60px 0 40px 0;
  }

  .footer-logo-title {
    font-size: 1.75rem;
  }

  .footer-logo-subtitle {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-footer-contact,
  .btn-footer-kit {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .footer-contact-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .footer-menu {
    margin-bottom: 20px;
  }

  .footer-menu li {
    margin-bottom: 10px;
  }
}

/* Footer Copyright */
.footer-copyright {
  background: #020710;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0px 0;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-copyright a {
  color: #073fd0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #2072ff;
  text-decoration: underline;
}

/* --- Products Listing Page --- */

/* Hero Section */
.products-hero-section {
  background: #021330;
  background-image: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Group-39887-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.products-hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.products-hero-title .text-blue {
  color: #2072ff;
}

/* Intro Section */
.products-intro-section {
  background: #fff;
}

.products-intro-text {
  font-size: 1.5rem;
  color: #111;
  margin: 0;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.product-content {
  border: 2px solid #073fd0;
  padding: 40px 40px;
  border-radius: 30px;
  background: #fff;
}

/* Single Product Page - Clean Simple Design */
.product-simple-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.4;
}

.product-simple-content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.product-simple-content p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.product-simple-content p:last-child {
  margin-bottom: 0;
}

.product-simple-content h2,
.product-simple-content h3,
.product-simple-content h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.product-simple-content h2 {
  font-size: 24px;
}

.product-simple-content h3 {
  font-size: 22px;
}

.product-simple-content h4 {
  font-size: 20px;
}

.product-simple-content ul,
.product-simple-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.product-simple-content li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.product-simple-content a {
  color: #073fd0;
  text-decoration: none;
}

.product-simple-content a:hover {
  text-decoration: underline;
}

.product-simple-image {
  margin: 0 auto;
  max-width: 60%;
  text-align: center;
}

.product-simple-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.product-specs-section .product-listing-title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.product-specs-content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.product-specs-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.product-specs-content ul,
.product-specs-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.product-specs-content li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.product-additional-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
}

.product-price-display {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

/* Responsive for Single Product */
@media (max-width: 991px) {
  .product-simple-title {
    font-size: 24px;
  }

  .product-simple-content {
    font-size: 16px;
  }

  .product-simple-content p {
    font-size: 16px;
  }

  .product-simple-image {
    max-width: 70%;
  }
}

@media (max-width: 576px) {
  .product-simple-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .product-simple-content {
    font-size: 16px;
  }

  .product-simple-content p {
    font-size: 16px;
  }

  .product-simple-content h2 {
    font-size: 20px;
  }

  .product-simple-content h3 {
    font-size: 18px;
  }

  .product-simple-content h4 {
    font-size: 16px;
  }

  .product-simple-image {
    max-width: 90%;
  }
}
.product-listing-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 73px;
}
.products-intro-text strong {
  font-weight: 700;
  color: #111;
}

/* Products Listing Section */
.products-listing-section {
  background: #fff;
}

.product-listing-card {
  background: #fff;
  box-shadow: 0px 4px 19.1px 0px #00000017;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.product-listing-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.product-listing-image {
  width: 100%;
  background: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 280px;
}

.product-listing-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-listing-image img {
  max-width: 100%;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 19px;
}

.product-listing-content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-listing-title-box {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.product-listing-title {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
  /* padding: 0 20px; */
}

.product-listing-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-listing-title a:hover {
  color: #073fd0;
  text-decoration: none;
}

.product-listing-description {
  margin-bottom: 20px;
  flex-grow: 1;
  /* padding: 0 20px; */
}

.product-listing-description p,
.product-specs-content,
.product-description-content {
  font-size: 20px;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

.product-specs-content p,
.product-description-content p {
  font-size: 20px;
  color: #000;
  line-height: 1.6;
  margin: 0 0 10px 0;
  margin-top: 10px;
  margin-bottom: 0px;
}

.product-specs-content p:last-child,
.product-description-content p:last-child {
  margin-bottom: 0;
}

.product-listing-price-section {
  background: #073fd0;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.product-listing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.product-listing-price .woocommerce-Price-amount,
.product-listing-price .woocommerce-Price-currencySymbol {
  color: #fff;
}

.product-listing-actions {
  margin-bottom: 15px;
  text-align: center;
}

.btn-product-learn-more {
  background: #fff;
  color: #073fd0;
  border: 2px solid #073fd0;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  width: 50%;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-product-learn-more:hover {
  background: #073fd0;
  color: #fff;
  border-color: #073fd0;
}

.product-listing-shipping {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}
.product-subtotal,
.product-shipping-price,
.product-total-price {
  font-size: 16px;
  font-weight: 600;
}
#order_review_heading,
.woocommerce-checkout-review-order-table {
  display: none;
}
.product-price {
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px 0;
  line-height: 1;
}
.product-shipping {
  font-size: 0.9rem;
  color: #073fd0;
  margin: 0 0 10px 0;
  line-height: 1.4;
  font-weight: 600;
}

.shipping-text {
  font-size: 0.85rem;
  color: #666;
  margin: 5px 0;
  line-height: 1.4;
}

.shipping-link {
  color: #073fd0;
  text-decoration: none;
  font-weight: 500;
}

.shipping-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.products-faq-section {
  background: #fff;
  position: relative;
}

/* Subtle technical pattern in corners */
.products-faq-section::before,
.products-faq-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.products-faq-section::before {
  top: 20px;
  right: 20px;
}

.products-faq-section::after {
  bottom: 20px;
  right: 20px;
}

.products-faq-section .container {
  position: relative;
  z-index: 1;
}

.products-faq-title {
  font-size: 20px;
  font-weight: 600;
  color: #021330;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
}

/* FAQ Content Blocks */
.faq-content-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-block {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-block:hover {
  background: #eeeeee;
}

.faq-block-active {
  position: relative;
  border: 2px solid #073fd0;
  padding: 23px 28px;
  background: #fff;
}

.faq-block-inactive {
  border: 2px solid transparent;
}

.faq-block-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
  line-height: 1.4;
  font-family: "Source Sans 3", sans-serif;
  position: relative;
  padding-right: 30px;
}

.faq-block-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-block-active .faq-block-title {
  color: #073fd0;
}

.faq-block-active .faq-block-title::after {
  content: "−";
  transform: rotate(0deg);
}

.faq-block-inactive .faq-block-title {
  color: #000;
}

.faq-block-content {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-block-content p {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}
.price-area {
  background: #f5f5f5;
  border-top: 2px solid #073fd0;
  border-radius: 27px;
  padding: 30px 20px;
  text-align: center;
  margin-top: 20px;
}
.price-area:hover {
  background: #073fd0;
  color: #fff;
  border-color: #073fd0;
}

.price-area:hover .price-amount {
  color: #fff;
}
.price-area:hover .btn-product-learn-more {
  background: #fff;
  color: #073fd0;
  border-color: #073fd0;
}
.price-area:hover .shipping-text {
  color: #fff;
}
.price-area:hover .shipping-link {
  color: #fff;
}
.price-area:hover .shipping-link-wrapper {
  color: #fff;
}
.price-area:hover .shipping-link-wrapper a {
  color: #fff;
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1;
}

.price-button-wrapper {
  margin-bottom: 20px;
}

.btn-product-learn-more {
  background: #fff;
  color: #073fd0;
  border: 2px solid #073fd0;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 50%;
}

.price-shipping-info {
  text-align: center;
}

.price-shipping-info .shipping-text {
  font-size: 0.9rem;
  color: #000;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.price-shipping-info .shipping-link-wrapper {
  margin: 0;
}

.price-shipping-info .shipping-link {
  color: #000;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 400;
}

.price-shipping-info .shipping-link:hover {
  color: #073fd0;
}

/* Responsive */
@media (max-width: 991px) {
  .products-hero-title {
    font-size: 3rem;
  }

  .products-intro-text {
    font-size: 1.25rem;
  }

  .products-faq-title {
    font-size: 2rem;
  }

  .product-listing-price {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .products-hero-title {
    font-size: 2.5rem;
  }

  .products-intro-text {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .product-listing-image {
    min-height: 220px;
    padding: 20px;
  }

  .product-listing-content {
    padding: 20px;
  }

  .product-listing-title {
    font-size: 1.3rem;
  }

  .product-listing-price {
    font-size: 1.75rem;
  }

  .products-faq-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .faq-block {
    padding: 20px 25px;
  }

  .faq-block-active {
    padding: 18px 23px;
  }

  .faq-block-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .faq-block-content,
  .faq-block-content p {
    font-size: 0.95rem;
  }
}

/* --- Checkout Page --- */
.woocommerce-checkout select {
  width: 0% !important;
}
/* Hero Section */
.checkout-hero-section {
  background: #021330;
  background-image: url("https://paricon.wpenginepowered.com/wp-content/uploads/2025/12/Group-39887-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.checkout-hero-title {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.btn-back {
  background: #fff;
  color: #073fd0;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #f0f0f0;
  color: #073fd0;
}

.back-arrow {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Checkout Content Section */
.checkout-content-section {
  background: #fff;
  overflow: hidden;
  max-height: none;
  height: auto;
}

/* Left Column - Info Sections */
.checkout-info-section {
  margin-bottom: 40px;
}

.checkout-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Source Sans Pro", sans-serif;
}

.checkout-section-title .text-blue {
  color: #073fd0;
}

.checkout-section-content {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.checkout-section-content p {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* What's Included List */
.checkout-included-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.included-number {
  background: #073fd0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.included-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

/* FAQ List */
.checkout-faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-icon {
  background: #073fd0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-content {
  flex: 1;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.faq-answer {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Right Column - Order Form */
.checkout-form-wrapper {
  background: #fff;
  border-radius: 35px;
  padding: 30px 40px;
  box-shadow: 0px 4px 61.9px 0px #00000014;
  overflow: visible;
  max-height: none;
  height: auto;
}

.checkout-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  font-family: "Source Sans Pro", sans-serif;
}

/* Product Details Box */
.checkout-product-box {
  background: #073fd0;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.product-box-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;
  font-family: "Source Sans 3", sans-serif;
}

.product-box-desc {
  font-size: 15px;
  color: #fff;
  margin: 0 0 15px 0;
  opacity: 0.9;
}

.product-box-price {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.product-box-shipping {
  font-size: 0.85rem;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

/* Checkout Form Styling */
.checkout-form .form-group label {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}

.checkout-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.checkout-form .form-control:focus,
.checkout-form .form-control:active {
  outline: none;
  border: 1px solid #073fd0;
  box-shadow: 0px 4px 61.9px 0px #00000014;
}

.btn-checkout-continue {
  background: #073fd0;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-checkout-continue:hover {
  background: #0a41ac;
  color: #fff;
}

/* Product Page Form - State and Zipcode Side by Side */
#paricon-product-checkout-form .row {
  margin-left: 0;
  margin-right: 0;
}

#paricon-product-checkout-form .row .col-md-6 {
  padding-left: 0;
  padding-right: 0;
}

#paricon-product-checkout-form .row .col-md-6:first-child {
  padding-right: 10px;
}

#paricon-product-checkout-form .row .col-md-6:last-child {
  padding-left: 10px;
}

#paricon-product-checkout-form .row .form-row {
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  #paricon-product-checkout-form .row .col-md-6:first-child,
  #paricon-product-checkout-form .row .col-md-6:last-child {
    padding-left: 0;
    padding-right: 0;
  }
}

/* WooCommerce Checkout Form Override */
.woocommerce-checkout-wrapper {
  margin-top: 0;
  overflow: visible;
  max-height: none;
}

.woocommerce-checkout {
  overflow: visible;
  max-height: none;
}

.woocommerce-checkout .form-row {
  margin-bottom: 20px;
  width: 100%;
  float: none;
  clear: both;
}

.woocommerce-checkout .form-row label {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea {
  width: 100% !important;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  box-sizing: border-box;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout input:active,
.woocommerce-checkout select:focus,
.woocommerce-checkout select:active,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout textarea:active {
  outline: none;
  border: 1px solid #073fd0;
  box-shadow: 0px 4px 61.9px 0px #00000014;
}

/* Force all form rows to be full width and stack vertically */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.woocommerce-checkout .form-row-wide {
  width: 100% !important;
  float: none !important;
  clear: both !important;
}

/* Billing and Shipping Fields - Stack Vertically */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  margin-bottom: 30px;
  display: block;
}

.woocommerce-checkout .col2-set {
  display: block !important;
  width: 100% !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout #place_order {
  background: #073fd0 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.woocommerce-checkout #place_order:hover {
  background: #0a41ac !important;
  color: #fff !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
}

/* Fix overflow issues */
.woocommerce-checkout .checkout {
  overflow: visible;
  max-height: none;
  clear: both;
}

.woocommerce-checkout-wrapper {
  overflow: visible;
  max-height: none;
  height: auto;
  clear: both;
}

/* Clear floats for proper stacking */
.woocommerce-checkout::after,
.woocommerce-checkout-wrapper::after,
.woocommerce-checkout .col2-set::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure proper spacing between sections */
.woocommerce-checkout .woocommerce-billing-fields::after,
.woocommerce-checkout .woocommerce-shipping-fields::after {
  content: "";
  display: table;
  clear: both;
}

/* International Ordering */
.checkout-international {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 25px;
  text-align: center;
}

.checkout-international h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.checkout-international p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.international-link {
  color: #073fd0;
  text-decoration: none;
  font-weight: 600;
}

.international-link:hover {
  text-decoration: underline;
}

/* --- Order Received / Thank You Page --- */
.order-confirmation-header {
  padding: 20px 0;
}

.success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-confirmation-text {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.order-details-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.order-detail-row:last-child {
  border-bottom: none;
}

.order-detail-label {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.order-detail-value {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
}

.order-detail-value.order-total {
  font-size: 1.25rem;
  color: #073fd0;
  font-weight: 700;
}

.order-status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
}

.order-status-processing {
  background: #073fd0;
  color: #fff;
}

.order-status-completed {
  background: #28a745;
  color: #fff;
}

.order-status-pending {
  background: #ffc107;
  color: #000;
}

.order-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.order-item-meta {
  font-size: 0.9rem;
  color: #666;
}

.order-item-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #073fd0;
}

.address-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.address-box-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.address-box-content {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.address-email,
.address-phone {
  font-size: 0.9rem;
  color: #666;
}

.payment-method-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.payment-method-content {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.order-actions {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.order-actions .btn {
  min-width: 180px;
}

/* Responsive */
@media (max-width: 991px) {
  .checkout-hero-title {
    font-size: 2.5rem;
  }

  .checkout-section-title {
    font-size: 1.75rem;
  }

  .checkout-form-wrapper {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .order-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .order-item-row {
    flex-direction: column;
    gap: 10px;
  }

  .order-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .order-actions .btn {
    width: 100%;
    margin: 0 !important;
  }

  .checkout-hero-title {
    font-size: 2rem;
  }

  .btn-back {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .checkout-section-title {
    font-size: 1.5rem;
  }

  .checkout-form-title {
    font-size: 1.75rem;
  }

  .product-box-price {
    font-size: 2rem;
  }
}

/* Hide Cart Completely */
.woocommerce-cart,
.woocommerce-cart-form,
.cart,
.widget_shopping_cart,
.woocommerce-mini-cart,
.cart-contents,
.added_to_cart {
  display: none !important;
}

/* Hide cart icon/widgets */
.site-header-cart,
.woocommerce-cart-link,
.cart-icon {
  display: none !important;
}
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  border: 0px !important;
  box-shadow: 0px 4px 61.9px 0px #00000014;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.select2-container .select2-dropdown,
.select2-container .select2-selection {
  border: 0px !important;
  box-shadow: 0px 4px 61.9px 0px #00000014;
  padding: 7px;
  border-radius: 15px;
}

/* Technology Content Section */
.technology-content-section {
  background: #fff;
}

.tech-card-image {
  border-bottom: 15px solid #d9d9d9;
  border-radius: 50px;
  overflow: hidden;
}

.tech-card-image a {
  display: block;
  text-decoration: none;
}

.tech-card-image img {
  width: 100%;
  height: 350px;
  display: block;
  border-radius: 50px 50px 0 0;
  transition: opacity 0.3s ease;
}

.tech-card-image a:hover img {
  opacity: 0.9;
}
/* .tech-card-image{
  box-shadow: 0px 4px 13.8px 0px #0000008C;
  border-radius: 20px;
} */

.tech-card {
  background-color: #ffffff;
  box-shadow: 0px 4px 45.5px 0px #073fd01f;
  border-radius: 50px;
  overflow: hidden;
}
.tech-con {
  margin-top: -40px;
  padding: 40px 30px;
  padding-top: 80px;
}
.tech-con h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
  font-family: "Source Sans Pro", sans-serif;
}
.tech-con p {
  font-size: 18px;
  color: #000;
  margin: 0 0 10px 0;
}
.tech-card:hover .tech-card-image {
  border-color: #073fd0;
}
.tech-card:hover .tech-con {
  border: 1px solid #073fd0;
  border-radius: 50px;
  border-top: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

/* --- Single Technology Page --- */
.technology-single-section {
  background: #fff;
}

.technology-single-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.technology-single-image img {
  width: 100%;
  height: auto;
  display: block;
}

.technology-single-content {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.technology-single-content h2,
.technology-single-content h3,
.technology-single-content h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.technology-single-content h2 {
  font-size: 2rem;
}

.technology-single-content h3 {
  font-size: 1.5rem;
}

.technology-single-content h4 {
  font-size: 1.25rem;
}

.technology-single-content p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.technology-single-content ul,
.technology-single-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.technology-single-content li {
  margin-bottom: 10px;
  color: #333;
}

/* Technology Sidebar */
.technology-single-sidebar {
  position: sticky;
  top: 20px;
}

.tech-sidebar-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tech-sidebar-card h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.tech-excerpt {
  margin-bottom: 20px;
}

.tech-excerpt p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.tech-meta {
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  margin-bottom: 20px;
}

.tech-meta p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.tech-meta strong {
  color: #000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .technology-single-sidebar {
    position: static;
    margin-top: 40px;
  }

  .technology-single-content h2 {
    font-size: 1.75rem;
  }

  .technology-single-content h3 {
    font-size: 1.35rem;
  }
}

/* --- Why Paricon & About Us Templates --- */
.why-paricon-section,
.about-us-section {
  background: #fff;
}

.why-paricon-section h2,
.about-us-section h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
}

.why-paricon-section h3,
.about-us-section h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000;
}

.why-paricon-section p,
.about-us-section p {
  font-family: "Source Sans 3", sans-serif;
  color: #333;
  line-height: 1.8;
}

/* Icon circles for Why Paricon */
.why-paricon-icon-circle {
  width: 80px;
  height: 80px;
  background: #073fd0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-paricon-icon-circle span {
  font-size: 40px;
  color: #fff;
}

/* Responsive adjustments for Why Paricon & About Us */
@media (max-width: 768px) {
  .products-hero-title {
    font-size: 2.5rem;
  }

  .product-listing-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .products-intro-text {
    font-size: 1.2rem;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Extra Large Devices (Large Desktops, 1400px and up) */

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
  .main-nav {
    display: flex !important;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
  .padding-100 {
    padding: 100px 0;
  }
}

/* Small to Medium Devices (Tablets and below, 991px and below) */
@media (max-width: 991px) {
  /* Header Responsive */

  .header-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }

  .header-cta .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .main-nav {
    flex-direction: column;
    width: 100%;
    gap: 10px !important;
    margin-top: 15px;
  }

  .main-nav li {
    width: 100%;
    text-align: center;
  }

  /* Hero Section */
  .banner-text h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .banner-text p {
    font-size: 1rem;
  }

  /* Products Hero */
  .products-hero-title {
    font-size: 2.5rem !important;
  }

  /* Technology Cards */
  .tech-card {
    margin-bottom: 30px;
  }

  /* Product Cards */
  .product-card {
    margin-bottom: 30px;
  }

  /* Connect Section */
  .connect-section {
    padding: 60px 0;
  }

  .connect-title {
    font-size: 2rem;
  }

  .connect-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  /* News Section */
  .news-title {
    font-size: 2rem;
  }

  /* Meet Section */
  .meet-title {
    font-size: 2.5rem;
  }

  .meet-desc {
    font-size: 1rem;
  }

  /* Footer */
  .footer-heading {
    font-size: 1.25rem;
  }

  .footer-cta {
    flex-direction: column;
  }

  .btn-footer-contact,
  .btn-footer-kit {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Small Devices (Landscape Phones, 576px and below) */
@media (max-width: 576px) {
  /* Padding adjustments */
  .padding-100 {
    padding: 60px 0;
  }

  .padding-60 {
    padding: 40px 0;
  }

  /* Typography */
  .banner-text h1 {
    font-size: 3rem !important;
  }

  .products-hero-title {
    font-size: 2rem !important;
  }

  .product-listing-title {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }

  .news-title {
    font-size: 1.75rem;
  }

  .meet-title {
    font-size: 2rem;
  }

  .connect-title {
    font-size: 1.75rem;
  }

  .connect-big-title {
    font-size: 2rem;
  }

  /* Header */

  .brand-logo img,
  .brand-logo svg,
  .custom-logo-link img {
    max-height: 50px !important;
  }

  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .news-btn-blue {
    width: 100%;
    margin-top: 15px;
  }

  /* Cards */
  .tech-card {
    padding: 20px;
  }

  .tech-con {
    padding: 20px 15px;
    padding-top: 60px;
  }

  .tech-con h2 {
    font-size: 24px;
  }

  .tech-con p {
    font-size: 16px;
  }

  /* Product Cards */
  .product-card-image {
    padding: 20px;
  }

  .product-listing-card {
    margin-bottom: 30px;
  }

  .product-listing-content {
    padding: 20px;
  }

  .product-listing-title {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  .product-listing-description {
    padding: 0 15px;
  }

  .product-listing-description p,
  .product-specs-content,
  .product-description-content {
    font-size: 16px;
  }

  .product-listing-price {
    font-size: 2rem;
  }

  /* Glass Effect */
  .glass-effect {
    margin-top: 20px;
  }

  /* News Section */
  .news-section .row {
    margin-bottom: 30px;
  }

  .news-event-head {
    font-size: 1.1rem;
  }

  .news-event-title {
    font-size: 1.5rem;
  }

  /* Client Section */
  .client-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .client-logo {
    max-width: 100px;
    margin: 10px;
  }

  /* Footer */
  .footer-logo-img {
    max-width: 150px;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-menu {
    font-size: 0.9rem;
  }

  .footer-contact-item {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  /* Technology Content Section */
  .technology-content-section {
    padding: 60px 0;
  }

  /* Why Paricon & About Us */
  .product-content {
    padding: 30px 20px !important;
  }

  /* Checkout Page */
  .checkout-hero-title {
    font-size: 2rem;
  }

  .checkout-section-title {
    font-size: 1.5rem;
  }

  .checkout-form-wrapper {
    padding: 20px;
  }

  /* Slick Slider Responsive */
  .slider-tech {
    margin: 0 -10px;
  }

  .tech-card-slider {
    margin: 0 10px;
  }
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: 2px solid #073fd0;
  border-radius: 4px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%283, 63, 208, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(7, 63, 208, 0.25);
}

.navbar-collapse {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    margin-top: 0;
  }

  .header-cta-mobile {
    display: none !important;
  }
}

/* Extra Small Devices (Portrait Phones, 480px and below) */
@media (max-width: 480px) {
  /* Typography */
  .banner-text h1 {
    font-size: 2.1rem !important;
  }

  .products-hero-title {
    font-size: 1.75rem !important;
  }

  .product-listing-title {
    font-size: 1.5rem !important;
  }

  .news-title {
    font-size: 1.5rem;
  }

  .meet-title {
    font-size: 1.75rem;
  }

  /* Padding */
  .padding-100 {
    padding: 40px 0;
  }
  .heading-section h1 {
    font-size: 30px;
  }
  .heading-section p {
    font-size: 20px;
  }

  /* Cards */
  .tech-con {
    padding: 15px 10px;
    padding-top: 50px;
  }

  .tech-con h2 {
    font-size: 20px;
  }
  .tech-card-overlay {
    border-radius: 15px;
    border-top-right-radius: 54px;
  }
  .product-listing-content {
    padding: 15px;
  }
  .product-listing-description {
    margin-bottom: -15px;
  }

  .product-listing-title {
    font-size: 1.25rem;
    padding: 0 10px;
  }

  .product-listing-description {
    padding: 0 10px;
  }

  .product-listing-price {
    font-size: 1.75rem;
  }

  /* Buttons */
  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-menu li {
    margin-bottom: 8px;
  }
  .site-footer {
    padding: 30px 0 30px 0;
  }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .products-hero-section {
    padding: 60px 0;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .header-cta,
  .footer-cta {
    display: none;
  }

  .padding-100,
  .padding-60 {
    padding: 20px 0;
  }
}

/* Contact Form 7 Styling */
.wpcf7-form {
  font-family: "Source Sans 3", sans-serif;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
}

.wpcf7-form label {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border: 1px solid #073fd0;
  box-shadow: 0px 4px 61.9px 0px #00000014;
}

.wpcf7-form input[type="text"]:active,
.wpcf7-form input[type="email"]:active,
.wpcf7-form input[type="tel"]:active,
.wpcf7-form input[type="url"]:active,
.wpcf7-form input[type="number"]:active,
.wpcf7-form textarea:active,
.wpcf7-form select:active {
  border: 1px solid #073fd0;
  box-shadow: 0px 4px 61.9px 0px #00000014;
}

.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  background: #073fd0;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
  background: #0529a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7, 63, 208, 0.3);
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 2px solid #28a745;
  padding: 25px;
  margin: 20px 0;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.wpcf7-spam {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.wpcf7-validation-errors,
.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.wpcf7-not-valid {
  border-color: #dc3545 !important;
}

.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
  margin-top: 10px;
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"],
.wpcf7-form .wpcf7-radio input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

/* Responsive adjustments for Contact Form 7 */
@media (max-width: 991px) {
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form input[type="url"],
  .wpcf7-form input[type="number"],
  .wpcf7-form textarea,
  .wpcf7-form select {
    font-size: 16px;
  }

  .wpcf7-form label {
    font-size: 16px;
  }

  .wpcf7-form input[type="submit"],
  .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 14px 20px;
  }
}
.news-events-section .tech-card-image {
  border-bottom: none !important;
}
.news-events-section .tech-con {
  margin-top: -20px;
}

/* News Card Styles */
.news-card {
  background-color: #ffffff;
  box-shadow: 0px 4px 45.5px 0px #073fd01f;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.news-card:hover {
  box-shadow: 0px 8px 60px 0px #073fd030;
  transform: translateY(-5px);
}

.news-card-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.news-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.news-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.3;
}

.news-card-excerpt {
  font-size: 16px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.6;
  flex-grow: 1;
}

.news-card .news-btn-blue {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 768px) {
  .news-card-title {
    font-size: 20px;
  }

  .news-card-content {
    padding: 25px;
  }

  .news-card-image img {
    height: 200px;
  }
}

/* Load More Button Styles */
#load-more-news {
  min-width: 150px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

#load-more-news:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#load-more-news:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7, 63, 208, 0.3);
}

/* Single News Post Page Styles */
.news-single-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.news-single-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.news-single-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.news-single-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-single-label:hover {
  color: #073fd0;
  text-decoration: underline;
}

.news-single-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.2;
}

.news-single-title .text-blue {
  color: #073fd0;
}

.news-single-title .text-white {
  color: #ffffff;
}

.news-single-content-section {
  background: #ffffff;
  padding: 80px 0;
}

.news-single-article {
  margin: 0 auto;
}

.news-single-headline {
  font-size: 36px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.4;
  text-align: left;
}

.news-single-body {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 50px;
  font-family: "Source Sans Pro", sans-serif;
}

.news-single-body p {
  margin-bottom: 25px;
}

.news-single-body h2,
.news-single-body h3,
.news-single-body h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.news-single-body h2 {
  font-size: 28px;
}

.news-single-body h3 {
  font-size: 24px;
}

.news-single-body h4 {
  font-size: 20px;
}

.news-single-body ul,
.news-single-body ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.news-single-body li {
  margin-bottom: 10px;
}

.news-single-date {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
}
.date-text {
  font-size: 16px;
  font-weight: 400;
  color: #073fd0;
}

/* Legal Page Styles */
.legal-content-section {
  background: #ffffff;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-last-updated {
  font-size: 16px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
  text-align: right;
}

.legal-introduction {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
}

.legal-introduction p {
  margin-bottom: 20px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 20px 0;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.3;
}

.legal-section-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
}

.legal-section-content p {
  margin-bottom: 20px;
}

.legal-section-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.legal-section-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 12px;
  font-family: "Source Sans Pro", sans-serif;
}

.legal-section-content ul,
.legal-section-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.legal-section-content li {
  margin-bottom: 10px;
}

.legal-section-content strong {
  font-weight: 700;
  color: #000000;
}

.legal-contact-section {
  margin-top: 50px;
  padding-top: 30px;
}

.legal-contact-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.legal-contact-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
}

.legal-contact-email {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 768px) {
  .legal-section-title {
    font-size: 24px;
  }

  .legal-introduction {
    font-size: 16px;
  }

  .legal-section-content {
    font-size: 15px;
  }

  .legal-last-updated {
    text-align: left;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .news-single-hero {
    min-height: 300px;
    padding: 60px 0;
  }

  .news-single-label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .news-single-title {
    font-size: 32px;
  }

  .news-single-headline {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .news-single-body {
    font-size: 16px;
  }

  .news-single-content-section {
    padding: 50px 0;
  }
}

/* Product Detail Page Styles */
.product-detail-top-section {
  background: #fff;
}

.product-detail-heading {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.3;
}

.product-detail-content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-detail-content p {
  margin-bottom: 20px;
}

.product-detail-content p:last-child {
  margin-bottom: 0;
}

.product-detail-content ul,
.product-detail-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
  list-style-type: disc;
}

.product-detail-content ol {
  list-style-type: decimal;
}

.product-detail-content li {
  margin-bottom: 10px;
  list-style-type: inherit;
}

.product-detail-button-wrapper {
  margin-top: 30px;
}

.product-detail-button {
  background: #073fd0;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.product-detail-button:hover {
  background: #0529a0;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7, 63, 208, 0.3);
}

.product-detail-top-image {
  text-align: center;
}

.product-detail-top-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-features-section {
  background: #fff;
}

.product-feature-item {
  padding-bottom: 40px;
  border-bottom: 1px solid #e9ecef;
}

.product-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-feature-heading {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-feature-content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.product-feature-content p {
  margin-bottom: 20px;
}

.product-feature-content p:last-child {
  margin-bottom: 0;
}

.product-feature-content ul,
.product-feature-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
  list-style-type: disc;
}

.product-feature-content ol {
  list-style-type: decimal;
}

.product-feature-content li {
  margin-bottom: 10px;
  list-style-type: inherit;
}

.product-feature-image-wrapper {
  text-align: center;
}

.product-feature-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-specs-section,
.product-detail-datasheets-section,
.product-detail-faqs-section {
  background: #fff;
}

.product-detail-specs-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.product-detail-section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Datasheets Grid */
.product-datasheets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.product-datasheet-item {
  text-align: center;
}

.product-datasheet-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.product-datasheet-link:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.product-datasheet-image-wrapper {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-datasheet-link:hover .product-datasheet-image-wrapper {
  border-color: #073fd0;
  box-shadow: 0 4px 12px rgba(7, 63, 208, 0.2);
}

.product-datasheet-image {
  max-width: 100%;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

.product-datasheet-file-wrapper {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 15px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-datasheet-link:hover .product-datasheet-file-wrapper {
  border-color: #073fd0;
  box-shadow: 0 4px 12px rgba(7, 63, 208, 0.2);
}

.product-datasheet-custom-icon {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-datasheet-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

.product-datasheet-link:hover .product-datasheet-name {
  color: #073fd0;
}

/* --- Industry Events Page --- */
.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.event-card:hover {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.event-card-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.event-card-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-link-btn {
  border: 1px solid #073fd0;
  background: #073fd0;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.event-link-btn:hover {
  background: #073fd0;
  color: #fff;
  border-color: #073fd0;
}

.events-pagination {
  margin-top: 40px;
}

.events-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.events-pagination li {
  margin: 0;
}

.events-pagination a,
.events-pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.events-pagination a:hover {
  background: #073fd0;
  color: #fff;
  border-color: #073fd0;
}

.events-pagination .current {
  background: #073fd0;
  color: #fff;
  border-color: #073fd0;
}

.events-pagination .prev,
.events-pagination .next {
  background: #f8f9fa;
}

.events-pagination .prev:hover,
.events-pagination .next:hover {
  background: #073fd0;
  color: #fff;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column !important;
    padding: 20px;
  }

  .event-card-image {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .event-card-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
  }

  .event-card-action {
    width: 100%;
    margin-top: 15px;
  }

  .event-link-btn {
    width: 100%;
    text-align: center;
  }

  .event-card-title {
    font-size: 1.25rem;
  }
}

/* Responsive Styles for Product Detail */
@media (max-width: 991px) {
  .product-detail-heading {
    font-size: 28px;
  }

  .product-detail-content {
    font-size: 16px;
  }

  .product-detail-section-heading {
    font-size: 26px;
  }

  .product-feature-heading {
    font-size: 24px;
  }

  .product-feature-content {
    font-size: 16px;
  }

  .product-datasheets-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .product-detail-top-section .row {
    flex-direction: column-reverse;
  }

  .product-detail-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .product-detail-content {
    font-size: 15px;
  }

  .product-detail-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .product-detail-section-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .product-feature-item {
    padding-bottom: 30px;
  }

  .product-feature-heading {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .product-feature-content {
    font-size: 15px;
  }

  .product-datasheets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-datasheet-image-wrapper,
  .product-datasheet-file-wrapper {
    min-height: 150px;
    padding: 15px;
  }
}

/* Technology Detail Page Styles */
.technology-detail-top-section,
.technology-detail-lower-section {
  background: #fff;
}

.technology-resources-section {
  background: #fff;
}

.technology-resource-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.technology-resource-item:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  flex-shrink: 0;
  margin-top: 5px;
  width: 65px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.resource-icon a:hover {
  transform: scale(1.1);
}

.resource-icon-img {
  max-width: 65px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.resource-icon a:hover .resource-icon-img {
  opacity: 0.8;
}

.resource-icon-placeholder {
  width: 55px;
  height: 55px;
  border: 2px solid #073fd0;
  border-radius: 4px;
  background: transparent;
}

.resource-content {
  flex: 1;
}

.resource-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.resource-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.resource-description p {
  margin: 0 0 10px 0;
}

.resource-description p:last-child {
  margin-bottom: 0;
}

.resource-link {
  color: #073fd0;
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.resource-link:hover {
  color: #0529a0;
  text-decoration: underline;
}

/* Responsive Styles for Technology Detail */
@media (max-width: 991px) {
  .technology-resource-item {
    flex-direction: column;
    gap: 15px;
  }

  .resource-checkbox {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .technology-resource-item {
    padding: 15px;
  }

  .resource-title {
    font-size: 18px;
  }

  .resource-description {
    font-size: 15px;
  }
}

/* === Technology Highlight Cards === */
.highlight-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0px 4px 45.5px 0px #073fd01f;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  height: 100%;
  border: 1px solid rgba(7, 63, 208, 0.08);
}

.highlight-card:hover {
  box-shadow: 0px 8px 60px 0px #073fd030;
  transform: translateY(-4px);
}

.highlight-card-title {
  font-size: 1.5rem;
  color: #073fd0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.highlight-card-content {
  font-size: 1rem;
  color: #181818;
  line-height: 1.6;
}

.highlight-card-content p {
  margin-bottom: 0.5rem;
}

.highlight-card-content p:last-child {
  margin-bottom: 0;
}

/* === Market Cards === */
.market-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  height: 100%;
  border: 1px solid rgba(7, 63, 208, 0.05);
}

.market-card:hover {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.market-card-title {
  font-size: 1.25rem;
  color: #073fd0;
  margin-bottom: 0.75rem;
}

.market-card-content {
  font-size: 0.95rem;
  color: #181818;
  line-height: 1.6;
}

/* === Related Technology Cards === */
.related-tech-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  height: 100%;
}

.related-tech-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-tech-image {
  overflow: hidden;
}

.related-tech-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-tech-card:hover .related-tech-image img {
  transform: scale(1.05);
}

.related-tech-title {
  font-size: 1.1rem;
  color: #073fd0;
  font-weight: 600;
  padding: 15px;
  margin: 0;
}

.related-tech-card a {
  text-decoration: none;
  color: inherit;
}

.related-tech-card a:hover .related-tech-title {
  color: #0242c1;
}

/* === Updated Related Tech Card Styles === */
.related-tech-card {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}

.related-tech-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #ccc;
}

.related-tech-card a {
  text-decoration: none;
  color: inherit;
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.related-tech-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px !important;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-tech-image {
  margin-bottom: 15px !important;
  height: 180px; /* Fixed height for image container */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-tech-image img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px !important;
}

.related-tech-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-top: auto; /* Push to bottom */
}

/* Center single datasheet item */
.product-datasheets-grid.single-item {
  display: flex;
  justify-content: center;
}

.product-datasheets-grid.single-item .product-datasheet-item {
  max-width: 300px;
  width: 100%;
}
.tech-wysiwyg-content {
  font-size: 22px;
}
.tech-wysiwyg-content p {
  font-size: 20px;
}
