/* Global Styles & Variables - Carbon + Blue Brand */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  /* Core Colors */
  --primary-color: #0E5398;
  /* User Requested Blue */
  --primary-dark: #09386b;
  --text-black: #000000;
  --text-dark: #1f1f1f;
  --text-gray: #525252;

  --bg-color: #fcfcfc;
  --surface-color: #ffffff;

  --shadow-standard: 0 2px 10px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --spacing-md: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0;
  animation: pageLoad 0.5s ease-out forwards;
  overflow-x: hidden;
}

/* Page Transition Animation */
@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure text wrapping everywhere */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-black);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1300px;
  /* Increased slightly for single line fit */
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar - Standard Sticky Style */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #eee;
  height: 80px;
  /* Gently reduced */
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  font-weight: 700;
  color: #444;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Active/Hover - Lighter Pill (Requested) */
.nav-link:hover,
.nav-link.active {
  background-color: rgba(14, 83, 152, 0.1);
  /* Light tint */
  color: var(--primary-color);
  /* Blue Text */
  transform: translateY(-1px);
  box-shadow: none;
  /* Removed solid shadow */
  border: 1px solid rgba(14, 83, 152, 0.2);
  /* Subtle border */
}

.nav-link::after {
  display: none;
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  color: #333;
  font-size: 1.5rem;
}

/* Page Headers - Reduced Dimensions */
.page-header {
  background: #000000;
  /* Pure Black */
  color: #ffffff;
  /* Pure White */
  padding: 2.5rem 0;
  /* Reduced Height */
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.page-header .page-title {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
  text-transform: uppercase;
}

.page-header .section-subtitle {
  color: #e5e5e5;
  opacity: 0.9;
  font-weight: 600;
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  color: #111;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}


/* Hero - Fixed Height (Upper Block Only) */
/* Hero - Fixed Height (Strictly Upper Block) */
.hero {
  height: 380px !important;
  /* Force override */
  min-height: 300px;
  max-height: 40vh !important;
  /* Cap at 40% of viewport height */
  position: relative;
  background-color: var(--surface-color);
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Stronger overlay for text contrast */
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: 0.5s;
  max-width: 800px;
  padding: 0 1rem;
}

.slide.active .slide-content {
  transform: translateY(0);
}

.slide-title {
  font-size: 2.5rem;
  /* Slightly smaller for shorter banner */
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e5e5e5;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 4px;
  /* Professional squared look */
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 1px solid white;
  color: white;
  margin-left: 1rem;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-heading);
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Product Cards - Enhanced UI */
.products-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card,
.contact-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.product-info,
.contact-card {
  padding: 2rem;
}

.product-title {
  font-size: 1.3rem;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.product-info p,
.contact-detail {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Specific */
.contact-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-detail i {
  color: var(--primary-color);
  margin-top: 5px;
}

/* Footer - Revised for Visibility */
.footer {
  background-color: #111;
  /* Dark footer */
  color: #fff;
  padding-top: 4rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.footer h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Contact Info in Footer */
.contact-info li {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  color: #ccc;
}

.contact-info i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}

/* Page Headers (Specific) */
.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--surface-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

/* =========================================
   Clients Section Redesign
   ========================================= */

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.client-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  width: 220px;
  height: 150px;
  /* Fixed height for uniform look */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 83, 152, 0.1);
}

/* Subtle glow effect on hover */
.client-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(14, 83, 152, 0);
  transition: all 0.4s ease;
  pointer-events: none;
}

.client-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(14, 83, 152, 0.1);
}

.client-img {
  max-width: 85%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  /* Ensure full color */
  transition: transform 0.4s ease;
}

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

/* Text Intro Section */
.clients-intro {
  max-width: 1000px;
  margin: 0 auto 2rem auto;
  /* Reduced bottom margin */
  text-align: center;
  /* Centered text */
  padding: 0 1rem;
}

.clients-intro p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  /* Reduced paragraph spacing */
}

.clients-intro p:last-child {
  margin-bottom: 0;
}

/* Name Tag Styling */
.client-name {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #444;
  /* Darker visible color */
  text-align: center;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  transition: color 0.3s;
}


/* =========================================
   About Us Page Refinement
   ========================================= */

.about-hero {
  background: linear-gradient(135deg, #0e1115 0%, #1a1f26 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.about-container {
  max-width: 1200px;
  margin: 5rem auto 0;
  /* Added top margin for spacing */
  padding: 0 2rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotate(1deg);
  /* Subtle artistic tilt */
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Response adjustments */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .about-image-wrapper {
    transform: none;
    /* Remove tilt on mobile */
  }
}

/* Response adjustments */
@media (max-width: 600px) {
  .clients-grid {
    gap: 1.5rem;
  }

  .client-card {
    width: 45%;
    /* Two per row on mobile roughly */
    min-width: 140px;
    height: 120px;
    padding: 1rem;
  }
}



/* =========================================
   Products Page Revamp (Refined v3 - Toolbar & Containment)
   ========================================= */

/* Product Toolbar (Sticky) */
.product-toolbar {
  position: sticky;
  top: 80px;
  /* Below main header */
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.toolbar-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 5px;
  /* For scrollbar space if needed */
  scrollbar-width: none;
}

.toolbar-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  background: #f5f5f5;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.toolbar-btn:hover,
.toolbar-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(14, 83, 152, 0.2);
}

/* Global Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Feature Row (Zig-Zag Layout) */
.product-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  /* Spacing between products */
  scroll-margin-top: 160px;
  /* Offset for Sticky Header + Toolbar (80px + ~70px + breathing room) */
}

/* Reverse layout for even children (Zig-Zag) */
.product-row:nth-child(even) {
  flex-direction: row-reverse;
}

.product-text-col {
  flex: 1;
  min-width: 300px;
}

.product-media-col {
  flex: 1.2;
  /* Media takes slightly more space */
  min-width: 300px;
  position: relative;
}

/* Overview Section (New Home for Hero Image) */
.overview-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.overview-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}


/* Typography for Product Rows */
.product-row-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.product-row-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: block;
}

.product-row-desc {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-badge {
  background: #f0f4f8;
  color: var(--primary-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #e1e8ed;
}

/* Carousel Container */
.product-carousel-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll iOS */
  scrollbar-width: none;
  /* Firefox */
}

.product-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Simple Navigation Indicators (Visual Only for now) */
.carousel-hint {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  pointer-events: none;
}

/* Single Image Refinement */
.product-single-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-single-img:hover {
  transform: scale(1.02);
}


/* Chemical Bottle Card (Compact) */
.chemical-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.chemical-card {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border-left: 6px solid var(--primary-color);
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  width: 100%;
  text-align: center;
}

/* CTA Banner Refined */
.cta-banner-refined {
  background: linear-gradient(135deg, var(--primary-color), #052c54);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(14, 83, 152, 0.25);
  margin-top: 2rem;
  scroll-margin-top: 160px;
  /* Offset for Sticky Header */
}

.cta-banner-refined h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

/* Ensure container adherence */
.section-padding.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}


/* Home Page Product Cards */
.product-title {
  color: var(--primary-color);
  /* #0E5398 */
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--primary-color);
  /* #0E5398 */
}

/* Responsive */
@media (max-width: 900px) {
  .product-row {
    flex-direction: column !important;
    /* Stack vertically always */
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .product-text-col {
    text-align: center;
  }

  .specs-list {
    justify-content: center;
  }

  .product-toolbar {
    top: 60px;
    /* Adjust for mobile header if needed */
  }

  .toolbar-list {
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

}

/* About Us Carousel */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* Match existing About image style */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Optional: Match shadow if needed */
}

.about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeEffect 1s ease-in-out;
}

.about-slide.active {
  display: block;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure images fill space */
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0.8;
  }

  to {
    opacity: 1;
  }
}


/* Technology Page - Tabbed Interface */
.tech-tabs-container {
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.tech-tab-nav {
  display: inline-flex;
  gap: 1rem;
  background: #f8f9fa;
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.tab-btn {
  padding: 0.8rem 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 40px;
  font-weight: 700;
  color: var(--text-gray);
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.tab-btn:hover {
  color: var(--primary-color);
  background: rgba(14, 83, 152, 0.05);
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(14, 83, 152, 0.25);
  transform: translateY(-1px);
}

.tab-content {
  min-height: 400px;
  position: relative;
}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Split Layout for Injection Tab */
.tech-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Text gets slightly more space */
  gap: 4rem;
  align-items: start;
  /* Align to top as requested */
}

.tech-info-col h3 {
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 800;
}

.tech-info-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.tech-info-col ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.tech-info-col li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
  font-size: 1.05rem;
  color: #4a4a4a;
}

.tech-info-col li::before {
  content: "\f00c";
  /* FontAwesome Check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
}

.tech-img-col {
  position: relative;
}

.tech-img-col img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.tech-img-col img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .tech-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tech-tab-nav {
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
  }

  .tab-btn {
    width: 100%;
  }
}