/* ==============================================
   Bhairaveshwara Technology | Main Stylesheet
   Colors: #D46020 (primary orange) , #201840 (deep navy)
   Fully responsive with images, icons & spacings
   ============================================== */

/* ----------------------------------------------
   GLOBAL RESET & BASE
   ---------------------------------------------- */
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 0 0 0;
}

/* ----------------------------------------------
   COLOR VARIABLES
   ---------------------------------------------- */
:root {
  --primary-orange: #B8860B;
  --primary-deep: #222121;
  --orange-dark: #b8551c;
  --orange-light: #e97a3a;
  --deep-soft: #2a235a;
  --deep-lighter: #3a2f7a;
  --gray-bg: #f8fafc;
  --gray-border: #eef2f6;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* ----------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-deep);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 3px;
}

section {
  padding: 0 0 0 0;
}

/* ----------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------- */
/* ----------------------------------------------
   HEADER & NAVIGATION - WITH HAMBURGER MENU
   ---------------------------------------------- */
/* ----------------------------------------------
   HEADER & NAVIGATION - FULLY RESPONSIVE WITH HAMBURGER
   ---------------------------------------------- */
header {
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-border);
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80px;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-deep);
  text-transform: uppercase;
  transition: var(--transition);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: inline-block;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-orange);
  border-bottom: 2px solid var(--primary-orange);
}

/* Hide close button on desktop */
.close-menu {
  display: none;
}

/* Hamburger Menu Button - Hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-deep);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hamburger Animation (when open) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--primary-orange);
  display: none;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
 display: none;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background: var(--primary-orange);
   display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   MOBILE NAVIGATION (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Show hamburger button */
  .hamburger {
    display: block;
  }
  
  /* Mobile Navigation Panel */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding: 70px 20px 30px;
    overflow-y: auto;
    display: block;
  }
  
  /* Active state - menu slides in */
  nav.active {
    right: 0;
  }
  
  /* Show close button only on mobile */
  .close-menu {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary-deep);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
    z-index: 1002;
  }
  
  .close-menu:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
  }
  
  /* Mobile Navigation Links */
  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--gray-border);
  }
  
  nav ul li:last-child {
    border-bottom: none;
  }
  
  nav ul li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
    text-align: left;
    width: 100%;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    background: var(--gray-bg);
    border-bottom: none;
    color: var(--primary-orange);
  }
  
  /* Adjust container for mobile */
  .nav-container {
    min-height: 65px;
    padding: 0 0;
  }
  
  .logo {
    height: 50px;
  }
}

/* ============================================
   SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .hamburger span {
    width: 22px;
    height: 2.5px;
    margin: 4px 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }
  
  .logo {
    height: 60px;
    padding: 5px;
  }
  
  .nav-container {
    min-height: 55px;
    padding: 0 0;
  }
  
  nav {
    width: 100%;
    right: -100%;
  }
  
  nav ul li a {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  
  .close-menu {
    top: 12px;
    right: 16px;
    font-size: 1.2rem;
  }
}

/* ============================================
   LANDSCAPE MODE ON MOBILE
   ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
  nav {
    padding: 55px 20px 20px;
  }
  
  nav ul li a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .close-menu {
    top: 8px;
    right: 15px;
  }
}

/* ============================================
   TABLET VIEW (769px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 0 0;
    min-height: 70px;
  }
  
  .logo {
    height: 55px;
  }
  
  nav ul {
    gap: 1.2rem;
  }
  
  nav ul li a {
    font-size: 0.85rem;
  }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .nav-container {
    padding: 0 0;
  }
  
  .logo {
    height: 75px;
  }
  
  nav ul {
    gap: 2rem;
  }
  
  nav ul li a {
    font-size: 1rem;
  }
}

/* ============================================
   EXTRA LARGE DESKTOP (1600px+)
   ============================================ */
@media (min-width: 1600px) {
  .nav-container {
    max-width: 1600px;
    padding: 0 0;
  }
  
  .logo {
    height: 85px;
  }
  
  nav ul {
    gap: 2.5rem;
  }
  
  nav ul li a {
    font-size: 1.05rem;
  }
}
/* ----------------------------------------------
   VIDEO BANNER (with dark overlay)
   ---------------------------------------------- */
.video-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.video-banner .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
  animation: fadeUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: white;
}

.hero-tagline span {
  color: var(--primary-orange);
  font-weight: 700;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hero-badges span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badges span i {
  margin-right: 6px;
  color: var(--primary-orange);
}

.btn-primary {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(212, 96, 32, 0.3);
}

.btn-primary i {
  margin-left: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 96, 32, 0.4);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* ----------------------------------------------
   ABOUT SECTION (Left text + Right image)
   ---------------------------------------------- */
.about-preview {
  background: white;
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-deep);
  margin: 1rem 0;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.highlight-text {
  border-left: 4px solid var(--primary-orange);
  padding-left: 1.2rem;
  font-weight: 500;
  background: #fef5ee;
  padding: 1rem;
  border-radius: 12px;
}

.about-image {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.image-caption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--primary-orange);
  font-weight: 500;
}

.btn-outline {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline i {
  margin-left: 6px;
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: white;
}

/* ----------------------------------------------
   STATISTICS SECTION (separate)
   ---------------------------------------------- */
/* ----------------------------------------------
   STATISTICS SECTION - SIMPLE RUNNING ANIMATION
   ---------------------------------------------- */
.stats-section {
  background: linear-gradient(
    135deg,
    #747272 0%,
    #4e4d4d 25%,
    #D4AF37 60%,
    #F7D774 80%,
    #B8860B 100%
  );
  background-size: 200% 200%;
  padding: 4rem 0;
  color: white;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card-big {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 2rem 1.5rem;
  border-radius: 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card-big:nth-child(1) { animation-delay: 0.1s; }
.stat-card-big:nth-child(2) { animation-delay: 0.2s; }
.stat-card-big:nth-child(3) { animation-delay: 0.3s; }
.stat-card-big:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card-big:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,0.2);
  border-color: #D4AF37;
}

/* Count up number animation */
.stat-card-big .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  color: rgb(0, 0, 0);
  animation: countGlow 2s ease-in-out infinite;
}

@keyframes countGlow {
  0%, 100% {
    text-shadow: 0 0 0px #D4AF37;
  }
  50% {
    text-shadow: 0 0 5px #D4AF37;
  }
}

.stat-card-big .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin: 0.5rem 0;
  color: rgb(0, 0, 0);
}

.stat-card-big p {
  font-size: 0.85rem;
  opacity: 0.9;
  color: rgb(0, 0, 0);
}

/* Icon bounce animation on hover */
.stat-card-big i {
  font-size: 2.5rem;
  color: #222121;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat-card-big:hover i {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ----------------------------------------------
   SERVICES / INDUSTRIES GRID
   ---------------------------------------------- */
.services {
  background: var(--gray-bg);
}

.grid {
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  gap: 1.8rem;
  margin-top: 1rem;
}

.card {
  background: white;
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-deep);
}

.card i {
  font-size: 1.8rem;
  color: var(--primary-orange);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

/* ----------------------------------------------
   EXPERTISE & TEAM SECTION (with images)
   ---------------------------------------------- */
.expertise-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.expertise-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.team-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.team-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 240px;
    box-shadow: var(--shadow-sm);
    border: 2px solid #cec9c7;
    transition: var(--transition);
}

.team-card:hover {
  transform: scale(1.02);
   border: 2px solid var(--primary-orange);
}

.team-img img {
 width: 300px;
    height: 286px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-orange);
    padding: 3px;
    background: white;
}

.team-card h3 {
  color: var(--primary-deep);
  margin-bottom: 0.3rem;
}

.team-card small i {
  color: var(--primary-orange);
  margin-right: 4px;
}

.collaborative-note {
  background: #fef7f0;
  padding: 1.8rem;
  border-radius: 28px;
  text-align: center;
  font-size: 1rem;
  border-left: 5px solid var(--primary-orange);
}

/* ----------------------------------------------
   PROGRAM SECTION
   ---------------------------------------------- */
/* ----------------------------------------------
   PROGRAM SECTION WITH ANIMATIONS
   ---------------------------------------------- */
.program-section {
  background: linear-gradient(110deg, #f8f5ff 0%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle animated background pattern */
.program-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 40%, rgba(212, 96, 32, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
  animation: patternFloat 20s linear infinite;
}

@keyframes patternFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Left Content Animation */
.program-content {
  animation: slideInLeft 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  opacity: 0;
  transform: translateX(-40px);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right Content Animation */
.program-quote {
  animation: slideInRight 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  opacity: 0;
  transform: translateX(40px);
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Heading animation inside program content */
.program-content h2 {
  animation: fadeUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.program-content p {
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.program-list {
  list-style: none;
  margin-top: 1.5rem;
}

/* Staggered animation for list items */
.program-list li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--text-dark);
  animation: fadeUp 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(15px);
}

.program-list li:nth-child(1) { animation-delay: 0.1s; }
.program-list li:nth-child(2) { animation-delay: 0.2s; }
.program-list li:nth-child(3) { animation-delay: 0.3s; }

.program-list li i {
  color: var(--primary-orange);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.program-list li:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Quote Bubble Animation */
.quote-bubble {
  background: var(--primary-deep);
  padding: 2rem;
  border-radius: 32px;
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  box-shadow: 0 20px 30px -10px rgba(32,24,64,0.3);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.2s forwards;
  opacity: 0;
  transform: scale(0.95);
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Shimmer effect on quote bubble */
.quote-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmerSlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSlow {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 100%;
  }
}

.quote-bubble:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Sub-tags animation */
.sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}

.sub-tags span {
  background: white;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-deep);
  border: 1px solid var(--gray-border);
  animation: tagFadeUp 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.sub-tags span:nth-child(1) { animation-delay: 0.1s; }
.sub-tags span:nth-child(2) { animation-delay: 0.2s; }
.sub-tags span:nth-child(3) { animation-delay: 0.3s; }

@keyframes tagFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-tags span:hover {
  background: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
  transform: translateY(-3px);
}

/* Image animation */
.program-img-side img {
  width: 100%;
  border-radius: 24px;
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
  animation: imageReveal 0.8s ease-out 0.4s forwards;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.4s ease;
}

@keyframes imageReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.program-img-side img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .program-content {
    animation: fadeUp 0.6s ease-out forwards;
    transform: translateY(20px);
  }
  
  .program-quote {
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    transform: translateY(20px);
  }
  
  .quote-bubble {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .quote-bubble {
    font-size: 1rem;
    padding: 1.2rem;
  }
  
  .sub-tags span {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}

/* ----------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------- */
.highlight {
  background: white;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon-badge i {
  font-size: 2.2rem;
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
}

.highlight-card h3 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-weight: 400;
}

/* ----------------------------------------------
   MACHINES PREVIEW (with images)
   ---------------------------------------------- */
.machines-preview {
  background: var(--gray-bg);
  border-radius: 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.machine-list, .instrument-list {
  background: white;
  padding: 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.machine-list h3 i, .instrument-list h3 i {
  color: var(--primary-orange);
  margin-right: 8px;
}

.machine-list ul, .instrument-list ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
  margin: 1rem 0;
}

.machine-list li, .instrument-list li {
  margin-bottom: 0.6rem;
}

.machine-img-thumb img, .instrument-img-thumb img {
  width: 100%;
  border-radius: 20px;
  margin-top: 1rem;
  max-height: 265px;
  object-fit: cover;
}

.cta-machines {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary i {
  margin-left: 6px;
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: white;
}

/* ----------------------------------------------
   CLIENTS & REGISTRATION
   ---------------------------------------------- */
.clients-reg {
  padding: 2rem 0;
}

.client-badge {
  background: linear-gradient(145deg, #fff, #faf7ff);
  padding: 2rem;
  border-radius: 32px;
  text-align: center;
  border: 1px solid rgba(212,96,32,0.2);
}

.certificate-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cert {
  background: var(--primary-deep);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
}

.cert i {
  margin-right: 6px;
  color: var(--primary-orange);
}

.client-image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.5rem;
  margin-top: 3.5rem;
}

.client-image-row img {
  height: 50px;
  width: auto;
  filter: grayscale(0.2);
  transition: var(--transition);
}



/* ----------------------------------------------
   FOOTER
   ---------------------------------------------- */
footer {
  background: var(--primary-deep);
  color: #ccc;
  padding: 2rem 0;
  margin-top: 1rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

/* ----------------------------------------------
   ANIMATIONS
   ---------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------
   RESPONSIVE DESIGN
   ---------------------------------------------- */

   @media (max-width: 1600px) {
      .container {
        padding: 30px;
      }

      .instruments-table-section {
        padding: 20px;
      }

    

            .team-img img {
          max-width: 250px;
        }

        .program-features-grid {
          padding: 20px;
        }

      .images-wrapper {
        padding: 20px;
      }

      .table-wrapper {
        padding: 10px;
      }

 .success-stories {
    padding: 3rem 2rem;
}

.stories-grid {
  padding: 30px;
}

 .measurement-tools {
        padding: 2rem;
      }  
   }



@media (max-width: 992px) {
  .about-grid, .program-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

    .measurement-tools {
        padding: 1rem;
      } 

  .machine-details {
    padding: 1rem;
  }

  .team-img img {
    width: 100%;
  }

  p , a, li {
    font-size: 14px !important;
  }
  
  .two-columns {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 30px;
  }

  .grid {
  grid-template-columns:1fr;
}
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
  }
  
  .nav-container {
    gap: 0.8rem;
  }
  
  nav ul {
    justify-content: center;
    gap: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 20px 18px;
  }

  .video-banner  {
    min-height: 55vh;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .team-card {
    min-width: 100%;
  }
  
  .quote-bubble {
    font-size: 1rem;
    padding: 1.2rem;
  }
  
  .certificate-row {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-primary, .btn-outline {
    padding: 0.6rem 1.5rem;
  }
  
  .hero-badges span {
    font-size: 0.75rem;
  }
}

/* ==============================================
   ABOUT US PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   PAGE HEADER (Hero for About Us)
   ---------------------------------------------- */
/* ----------------------------------------------
   PAGE HEADER - ZOOM IN EFFECT
   ---------------------------------------------- */
.page-header {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1A1A1A 25%,
    #D4AF37 60%,
    #F7D774 80%,
    #B8860B 100%
  );
  background-size: 200% 200%;
  padding: 4rem 0;
  text-align: center;
  color: white;
  margin-bottom: 2rem;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  animation: zoomInFade 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes zoomInFade {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.page-header h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 3px;
  animation: expandLine 0.5s ease-out 0.4s forwards;
}

@keyframes expandLine {
  to {
    width: 80px;
  }
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------
   MISSION & VISION CARDS
   ---------------------------------------------- */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mv-card {
  text-align: center;
  padding: 2rem;
  background: var(--gray-bg);
  border-radius: 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

.mv-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.mv-card h3 {
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----------------------------------------------
   CORE VALUES SECTION
   ---------------------------------------------- */
.core-values {
  background: var(--gray-bg);
  padding: 3rem;
  border-radius: 32px;
  margin: 2rem 0;
  text-align: center;
}

.core-values h2 {
  display: block;
  text-align: center;
}

.core-values h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 20px;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.value-item h4 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ----------------------------------------------
   CERTIFICATIONS SHOWCASE
   ---------------------------------------------- */
.certifications-show {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem;
}

.cert-badge {
  background: white;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--primary-deep);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.cert-badge:hover {
  transform: translateY(-3px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.cert-badge i {
  color: var(--primary-orange);
  margin-right: 8px;
}

/* ----------------------------------------------
   ABOUT STORY SECTION (extends existing about-preview)
   ---------------------------------------------- */
.about-story {
  background: white;
}

.about-story .highlight-text i {
  color: var(--primary-orange);
  margin-right: 8px;
}

/* ----------------------------------------------
   RESPONSIVE ADJUSTMENTS FOR ABOUT PAGE
   ---------------------------------------------- */
@media (max-width: 992px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .core-values {
    padding: 2rem 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 640px) {
  .page-header {
    padding: 2.5rem 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .core-values {
    padding: 1.5rem;
  }
  
  .cert-badge {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .mv-card {
    padding: 1.5rem;
  }
}

/* ==============================================
   MACHINES PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   CLIENTS SHOWCASE SECTION
   ---------------------------------------------- */
.clients-showcase {
  background: linear-gradient(145deg, #fff, #faf7ff);
  padding: 2.5rem;
  border-radius: 32px;
  text-align: center;
  margin: 2rem 0;
  border: 1px solid rgba(212,96,32,0.2);
}

.clients-showcase h2 {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.clients-showcase h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.client-logo {
  background: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-deep);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.client-logo:hover {
  transform: translateY(-3px);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

/* ----------------------------------------------
   MACHINE CARDS WITH IMAGES
   ---------------------------------------------- */
.machine-card {
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    transition: var(--transition);
    border: 1px solid rgb(201 187 176 / 30%);
}

.machine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.machine-image {
  flex: 1;
  min-width: 280px;
  overflow: hidden;
}

.machine-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.machine-card:hover .machine-image img {
  transform: scale(1.03);
}

.machine-details {
  flex: 1.5;
  padding: 2rem;
}

.machine-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.machine-header h3 {
  font-size: 1.6rem;
  color: var(--primary-deep);
  margin: 0;
}

.machine-badge {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.machine-badge i {
  margin-right: 5px;
}

.machine-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.spec-item {
  background: var(--gray-bg);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.spec-label i {
  margin-right: 4px;
}

.spec-value {
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 0.95rem;
}

/* ----------------------------------------------
   INSTRUMENTS SECTION
   ---------------------------------------------- */
.instruments-section {
  margin-top: 2rem;
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.instrument-card {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.instrument-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-sm);
}

.instrument-card i {
  font-size: 2.2rem;
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
}

.instrument-card h4 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.instrument-card p {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ----------------------------------------------
   CAPABILITIES CTA SECTION
   ---------------------------------------------- */
.capabilities-cta {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--deep-soft) 100%);
  padding: 4rem 0;
  margin: 3rem 0 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content i {
  font-size: 3.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.cta-content h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* ----------------------------------------------
   RESPONSIVE FOR MACHINES PAGE
   ---------------------------------------------- */
@media (max-width: 768px) {
  .machine-card {
    flex-direction: column;
  }
  
  .machine-image {
    min-width: 100%;
    max-height: 280px;
  }
  
  .machine-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .machine-header h3 {
    font-size: 1.3rem;
  }
  
  .machine-specs {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    gap: 1rem;
  }
  
  .client-logo {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .instruments-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .cta-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .clients-showcase {
    padding: 1.5rem;
  }
  
  .instrument-card {
    padding: 1rem;
  }
  
  .instrument-card i {
    font-size: 1.8rem;
  }
}

/* ==============================================
   PROJECTS PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   PROGRAM SHOWCASE SECTION
   ---------------------------------------------- */
.program-showcase {
  padding: 2rem 0;
}

.program-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.program-header h2 {
  display: block;
  text-align: center;
}

.program-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.program-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.program-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.program-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

.feature-icon i {
  font-size: 2.8rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.program-feature-card h3 {
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.program-feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----------------------------------------------
   TWO IMAGES SECTION
   ---------------------------------------------- */
.project-images-section {
  padding: 2rem 0;
}

.images-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: white;
}

.project-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.project-image-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-image-card:hover img {
  transform: scale(1.03);
}

.project-image-card .image-caption {
  padding: 1rem;
  text-align: center;
  background: white;
  font-weight: 500;
  color: var(--primary-deep);
}

.project-image-card .image-caption i {
  color: var(--primary-orange);
  margin-right: 8px;
}

/* ----------------------------------------------
   PARTNERSHIP SECTION
   ---------------------------------------------- */
.partnership-section {
  background: linear-gradient(110deg, #f8f5ff 0%, #ffffff 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.partnership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.partnership-text h2 {
  margin-bottom: 1.5rem;
}

.partnership-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.partnership-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-item i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.highlight-item span {
  font-weight: 500;
  color: var(--primary-deep);
}

.partnership-quote .quote-box {
  background: var(--primary-deep);
  padding: 2rem;
  border-radius: 32px;
  color: white;
  position: relative;
}

.quote-box i {
  font-size: 2rem;
  color: var(--primary-orange);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.quote-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-box span {
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
}

/* ----------------------------------------------
   SUCCESS STORIES SECTION
   ---------------------------------------------- */
.success-stories {
  padding: 3rem 0;
}

.success-stories h2 {
  text-align: center;
  display: block;
  margin-bottom: 2.5rem;
}

.success-stories h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background: var(--gray-bg);
  padding: 2rem;
  border-radius: 24px;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  position: relative;
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.story-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-orange);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(212, 96, 32, 0.3);
}

.story-card h3 {
  margin: 1rem 0 0.8rem;
  color: var(--primary-deep);
}

.story-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.story-tags span {
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-orange);
  border: 1px solid var(--gray-border);
}

/* ----------------------------------------------
   PROJECTS CTA SECTION
   ---------------------------------------------- */
.projects-cta {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--deep-soft) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-wrapper h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-wrapper p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ----------------------------------------------
   RESPONSIVE FOR PROJECTS PAGE
   ---------------------------------------------- */
@media (max-width: 992px) {
  .partnership-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .images-wrapper {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  
  .project-image-card img {
    height: 280px;
  }

  .success-stories {
    padding: 20px ;
  }
}

@media (max-width: 768px) {
  .program-features-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .partnership-text h2 {
    font-size: 1.6rem;
  }
  
  .quote-box p {
    font-size: 1rem;
  }
  
  .cta-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .story-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .program-feature-card {
    padding: 1.5rem;
  }
  
  .project-image-card img {
    height: 220px;
  }
}

/* ==============================================
   INSTRUMENTS PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   INSTRUMENTS TABLE SECTION
   ---------------------------------------------- */
.instruments-table-section {
  padding: 2rem 0;
}

.instruments-table-section h2 {
  margin-bottom: 1.5rem;
}

.table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}

.instruments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.instruments-table thead tr {
  background: linear-gradient(135deg, var(--primary-deep), var(--deep-soft));
  color: white;
}

.instruments-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.instruments-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-border);
  color: var(--text-muted);
}

.instruments-table tbody tr:hover {
  background: var(--gray-bg);
}

.instruments-table td i {
  color: var(--primary-orange);
  margin-right: 8px;
  width: 24px;
}

/* ----------------------------------------------
   MEASUREMENT TOOLS GRID
   ---------------------------------------------- */
.measurement-tools {
  padding: 3rem 0;
}

.measurement-tools h2 {
  margin-bottom: 2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.tool-card i {
  font-size: 2.2rem;
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
}

.tool-card h3 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.tool-card p {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ----------------------------------------------
   PVM1165 SECTION
   ---------------------------------------------- */
.pvm-section {
  background: linear-gradient(110deg, #f8f5ff 0%, #ffffff 100%);
}

.pvm-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pvm-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.pvm-image img:hover {
  transform: scale(1.02);
}

.pvm-badge {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pvm-badge i {
  margin-right: 5px;
}

.pvm-details h2 {
  font-size: 2.5rem;
  color: var(--primary-deep);
  margin-bottom: 0.2rem;
}

.pvm-details h3 {
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.pvm-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pvm-spec {
  background: white;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}

.pvm-spec i {
  color: var(--primary-orange);
  font-size: 1rem;
}

.pvm-spec span {
  font-weight: 500;
  color: var(--primary-deep);
  font-size: 0.9rem;
}

.pvm-details p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 1.5rem 0;
}

/* ----------------------------------------------
   QUALITY ASSURANCE SECTION
   ---------------------------------------------- */
.quality-section {
  background: var(--gray-bg);
  padding: 0 0;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.quality-text h2 {
  margin-bottom: 1rem;
}

.quality-text h2 i {
  color: var(--primary-orange);
  margin-right: 8px;
}

.quality-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quality-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.quality-features span {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-deep);
  border: 1px solid var(--gray-border);
}

.quality-features span i {
  color: var(--primary-orange);
  margin-right: 6px;
}

.quality-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-circle {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.stat-circle:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: var(--primary-deep);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ----------------------------------------------
   RESPONSIVE FOR INSTRUMENTS PAGE
   ---------------------------------------------- */
@media (max-width: 992px) {
  .pvm-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .quality-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pvm-details h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .instruments-table th,
  .instruments-table td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  
  .pvm-specs {
    gap: 0.8rem;
  }
  
  .pvm-spec {
    padding: 0.4rem 1rem;
  }
  
  .pvm-spec span {
    font-size: 0.8rem;
  }
  
  .quality-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quality-stats {
    flex-direction: row;
    gap: 1rem;
  }
  
  .stat-circle {
    flex: 1;
    padding: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .instruments-table td br {
    display: none;
  }
  
  .instruments-table td {
    font-size: 0.75rem;
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 15px;
  }

  .pvm-details h3 {
    padding-top: 20px;
  }

  .measurement-tools h2 {
    padding: 15px;
  }
  
  .tool-card {
    padding: 1rem;
  }
  
  .tool-card i {
    font-size: 1.6rem;
  }
  
  .tool-card h3 {
    font-size: 0.9rem;
  }
  
  .quality-stats {
    flex-direction: column;
  }
  
  .pvm-details h2 {
    font-size: 1.6rem;
  }
}

/* ==============================================
   CONTACT US PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   CONTACT PAGE LAYOUT
   ---------------------------------------------- */
.contact-page-section {
  padding: 3rem 0;
}

.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

/* ----------------------------------------------
   CONTACT INFO COLUMN
   ---------------------------------------------- */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-orange);
}

.contact-info-card h3 {
  color: var(--primary-deep);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-info-card h3 i {
  color: var(--primary-orange);
  margin-right: 10px;
}

.contact-info-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.contact-info-card a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--primary-orange);
}

/* ----------------------------------------------
   SOCIAL LINKS
   ---------------------------------------------- */
.contact-social {
  background: #b8860b;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
}

.contact-social h3 {
  color: white;
  margin-bottom: 1rem;
}

.contact-social h3 i {
  color: var(--primary-orange);
  margin-right: 8px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

/* ----------------------------------------------
   CONTACT FORM COLUMN
   ---------------------------------------------- */
.contact-form-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
}

.contact-form-card h3 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.contact-form-card h3 i {
  color: var(--primary-orange);
  margin-right: 10px;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-deep);
  font-size: 0.9rem;
}

.form-group label i {
  color: var(--primary-orange);
  margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(212, 96, 32, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.form-note i {
  color: var(--primary-orange);
  margin-right: 4px;
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: #e8f5e9;
  border-radius: 16px;
  margin-top: 1rem;
}

.form-success i {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.form-success h4 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
}

/* ----------------------------------------------
   MAP SECTION
   ---------------------------------------------- */
.map-section {
  margin: 2rem 0;
  position: relative;
}

.map-section h2 {
  text-align: center;
  display: block;
  margin-bottom: 2rem;
}

.map-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.map-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
}

.map-address-overlay {
  position: relative;
  margin-top: -40px;
  z-index: 2;
}

.address-badge {
  background: white;
  border-radius: 60px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  width: 100%;
  justify-content: space-between;
}

.address-badge i {
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.address-badge strong {
  color: var(--primary-deep);
  display: block;
  font-size: 0.9rem;
}

.address-badge span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.btn-outline-small {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-small:hover {
  background: var(--primary-orange);
  color: white;
}

/* ----------------------------------------------
   FAQ SECTION
   ---------------------------------------------- */
.faq-section {
  padding: 3rem 0;
}

.faq-section h2 {
  text-align: center;
  display: block;
  margin-bottom: 2.5rem;
}

.faq-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-orange);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-orange);
}

.faq-question span {
  font-weight: 700;
  color: var(--primary-deep);
  font-size: 1rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.8rem;
}

/* ----------------------------------------------
   RESPONSIVE FOR CONTACT PAGE
   ---------------------------------------------- */
@media (max-width: 992px) {
  .contact-page-wrapper {
 display: block;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info-card {
    padding: 10px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .address-badge {
    flex-direction: column;
    text-align: center;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .contact-info-column {
    gap: 1rem;
  }
  
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .address-badge {
    padding: 1rem;
  }
  
  .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-form-card h3 {
    font-size: 1.2rem;
  }
  
  .faq-question span {
    font-size: 0.9rem;
  }
  
  .faq-answer p {
    font-size: 0.8rem;
  }
}

/* ==============================================
   FOOTER STYLES
   ============================================== */
footer {
  background: #222121;
  color: #ccc;
  padding: 3rem 0 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3, .footer-col h4 {
  color: white;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #bbb;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

/* Footer Links Lists */
.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 0.7rem;
}

.footer-links li a, .footer-contact li a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--primary-orange);
}

.footer-links li a:hover {
  color: var(--primary-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #bbb;
}

.footer-contact li i {
  color: var(--primary-orange);
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact li a {
  color: #bbb;
  text-decoration: none;
}

.footer-contact li a:hover {
  color: var(--primary-orange);
}

.footer-contact li span {
  color: #bbb;
  line-height: 1.4;
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.75rem;
}

.footer-bottom p {
  color: #888;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-orange);
}

/* ----------------------------------------------
   RESPONSIVE FOOTER
   ---------------------------------------------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  footer {
    padding: 2rem 0 0;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* ==============================================
   PRIVACY POLICY PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   PRIVACY POLICY CONTENT
   ---------------------------------------------- */
.privacy-content {
  padding: 2rem 0 4rem;
}

.privacy-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-section {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.privacy-section:hover {
  box-shadow: var(--shadow-md);
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--primary-deep);
}

.privacy-section h2 i {
  color: var(--primary-orange);
  margin-right: 10px;
}

.privacy-section h2:after {
  display: none;
}

.privacy-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.privacy-section ul li {
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.privacy-section ul li i {
  color: var(--primary-orange);
  width: 20px;
  font-size: 0.9rem;
}

.note-text {
  background: var(--gray-bg);
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  border-left: 3px solid var(--primary-orange);
  margin-top: 1rem;
}

.last-updated {
  background: var(--gray-bg);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: inline-block;
  margin-top: 1rem;
}

.last-updated i {
  color: var(--primary-orange);
  margin-right: 8px;
}

/* Contact Details Box */
.contact-details-box {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.contact-details-box p {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-details-box p i {
  color: var(--primary-orange);
  width: 24px;
}

.contact-details-box a {
  color: var(--primary-deep);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details-box a:hover {
  color: var(--primary-orange);
}

/* Responsive for Privacy Page */
@media (max-width: 768px) {
  .privacy-section {
    padding: 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .privacy-section ul li {
    flex-wrap: wrap;
  }
  
  .contact-details-box p {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .privacy-section {
    padding: 1.2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.2rem;
  }
  
  .privacy-section ul li {
    font-size: 0.85rem;
  }
}

/* ==============================================
   TERMS AND CONDITIONS PAGE SPECIFIC STYLES
   Add these to your existing CSS file
   ============================================== */

/* ----------------------------------------------
   TERMS CONTENT
   ---------------------------------------------- */
.terms-content {
  padding: 2rem 0 4rem;
}

.terms-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.terms-section {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.terms-section:hover {
  box-shadow: var(--shadow-md);
}

.terms-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--primary-deep);
}

.terms-section h2 i {
  color: var(--primary-orange);
  margin-right: 10px;
}

.terms-section h2:after {
  display: none;
}

.terms-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.terms-section ul li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.terms-section ul li i {
  color: var(--primary-orange);
  width: 20px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.note-text {
  background: var(--gray-bg);
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  border-left: 3px solid var(--primary-orange);
  margin-top: 1rem;
}

.last-updated {
  background: var(--gray-bg);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: inline-block;
  margin-top: 1rem;
}

.last-updated i {
  color: var(--primary-orange);
  margin-right: 8px;
}

/* Contact Details Box */
.contact-details-box {
  background: var(--gray-bg);
  padding: 1.5rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.contact-details-box p {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-details-box p i {
  color: var(--primary-orange);
  width: 24px;
}

.contact-details-box a {
  color: var(--primary-deep);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details-box a:hover {
  color: var(--primary-orange);
}

/* Highlight Box for Important Terms */
.highlight-box {
  background: linear-gradient(135deg, #fef5ee 0%, #fff 100%);
  border-left: 4px solid var(--primary-orange);
  padding: 1.2rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Responsive for Terms Page */
@media (max-width: 768px) {
  .terms-section {
    padding: 1.5rem;
  }
  
  .terms-section h2 {
    font-size: 1.3rem;
  }
  
  .terms-section ul li {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .contact-details-box p {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 1.2rem;
  }
  
  .terms-section h2 {
    font-size: 1.2rem;
  }
  
  .terms-section ul li {
    font-size: 0.85rem;
  }
}

/* ----------------------------------------------
   KNOW MORE BUTTON & DETAILED SPECS
   ---------------------------------------------- */

.know-more-btn {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.know-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 96, 32, 0.3);
}

.know-more-btn i {
  transition: transform 0.3s ease;
}

/* Detailed Specifications Container */
.detailed-specs {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-border);
  animation: fadeIn 0.4s ease-out;

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detailed-specs h4 {
  color: var(--primary-deep);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.detailed-specs h5 {
  color: var(--primary-orange);
  margin: 1rem 0 0.5rem;
  font-size: 0.9rem;
}

/* ----------------------------------------------
   SPECIFICATION TABLES - FULLY RESPONSIVE WITH HORIZONTAL SCROLL
   ---------------------------------------------- */

/* Specification Tables Container - Enables horizontal scroll */
.spec-table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  position: relative;
}

/* Custom scrollbar styling */
.spec-table-wrapper::-webkit-scrollbar {
  height: 8px;
  background: var(--gray-border);
  border-radius: 10px;
}

.spec-table-wrapper::-webkit-scrollbar-track {
  background: var(--gray-border);
  border-radius: 10px;
}

.spec-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 10px;
}

.spec-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}

/* Table Styling - Prevents wrapping and ensures scroll */
.specs-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: var(--gray-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  table-layout: auto;
}

/* Ensure table cells don't wrap content */
.specs-table th,
.specs-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-border);
  white-space: nowrap;
}

/* Allow first column to wrap on larger screens */
.specs-table td:first-child,
.specs-table th:first-child {
  white-space: normal;
  min-width: 140px;
  max-width: 200px;
}

/* All other columns - prevent wrapping to enable horizontal scroll */
.specs-table td:not(:first-child),
.specs-table th:not(:first-child) {
  white-space: nowrap;
}

/* Table header styling */
.specs-table th {
  background: var(--primary-deep);
  color: white;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Zebra striping for better readability */
.specs-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.specs-table tr:hover td {
  background: rgba(212, 96, 32, 0.05);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
  .specs-table {
    min-width: 100%;
  }
  
  .specs-table td:not(:first-child),
  .specs-table th:not(:first-child) {
    white-space: normal;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .specs-table {
    min-width: 650px;
    font-size: 0.8rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 0.7rem 0.8rem;
  }
  
  .specs-table td:first-child,
  .specs-table th:first-child {
    min-width: 130px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .spec-table-wrapper {
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid var(--gray-border);
    background: var(--gray-bg);
  }

  .detailed-specs {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-border);
  animation: fadeIn 0.4s ease-out;
  width: 250px;
  overflow-x: scroll;
}
  
  .specs-table {
    min-width: 550px;
    font-size: 0.75rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 0.6rem 0.8rem;
  }
  
  .specs-table td:first-child,
  .specs-table th:first-child {
    min-width: 120px;
    position: sticky;
    left: 0;
    background: var(--gray-bg);
    z-index: 5;
    box-shadow: 2px 0 5px -2px rgba(0,0,0,0.1);
  }
  
  .specs-table th:first-child {
    background: var(--primary-deep);
    z-index: 11;
  }
  
  .specs-table tr:hover td:first-child {
    background: rgba(212, 96, 32, 0.08);
  }
  
  .know-more-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  
  .detailed-specs h4 {
    font-size: 1rem;
  }
  
  .detailed-specs h5 {
    font-size: 0.85rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .specs-table {
    min-width: 480px;
    font-size: 0.7rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 0.5rem 0.6rem;
  }
  
  .specs-table td:first-child,
  .specs-table th:first-child {
    min-width: 100px;
  }
  
  .know-more-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
  .specs-table {
    min-width: 420px;
    font-size: 0.65rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 0.4rem 0.5rem;
  }
  
  .specs-table td:first-child,
  .specs-table th:first-child {
    min-width: 90px;
  }
}

/* Landscape Mode on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .specs-table {
    min-width: 550px;
  }
  
  .spec-table-wrapper {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
  }
}

/* For touch devices - smoother scrolling */
@media (hover: none) and (pointer: coarse) {
  .spec-table-wrapper {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  .specs-table th,
  .specs-table td {
    white-space: nowrap;
  }
}

/* Scroll indicator for mobile */
@media (max-width: 768px) {
  .spec-table-wrapper {
    position: relative;
  }
  
  .spec-table-wrapper::after {
    content: '← swipe →';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--primary-orange);
    background: white;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0.7;
    pointer-events: none;
  }
  
  /* Hide swipe indicator after user scrolls */
  .spec-table-wrapper.scrolled::after {
    display: none;
  }
}
.instrument-img-cell img {
  width: 100px;
}

.tool-img-wrapper img {
  width: 80px;
  height: 70px;
  padding-bottom: 20px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ----------------------------------------------
   LEADERSHIP SECTION STYLES
   ---------------------------------------------- */

.leadership-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.leadership-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.leadership-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leadership-image:hover img {
  transform: scale(1.02);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(32, 24, 64, 0.9));
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  color: white;
  font-weight: 500;
}

.image-caption i {
  color: var(--primary-orange);
  margin-right: 8px;
}

.leadership-content h2 {
  margin-bottom: 1rem;
}

.leadership-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-style: italic;
}

.leadership-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-orange);
  display: inline-block;
}

.leadership-bio p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.leadership-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.leadership-stats .stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.leadership-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.leadership-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.leadership-quote {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  border-left: 4px solid var(--primary-orange);
  margin-top: 1rem;
}

.leadership-quote i {
  color: var(--primary-orange);
  font-size: 1.5rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.leadership-quote p {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

.leadership-quote span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--primary-deep);
}



/* Responsive */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 20px;
  }
  
  .leadership-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
 
  
  .leadership-tagline {
    font-size: 1.1rem;
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
  }
}

/* ----------------------------------------------
   SERVICES WE OFFER SECTION
   ---------------------------------------------- */

.services-offer-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-bg) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grid - Center aligned cards */
.services-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  justify-content: center;
  align-items: stretch;
}

/* Card styling */
.service-offer-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-deep));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-offer-card:hover::before {
  transform: scaleX(1);
}

.service-offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 96, 32, 0.1), rgba(32, 24, 64, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}

.service-offer-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-orange);
  transition: var(--transition);
}

.service-offer-card:hover .service-icon i {
  color: white;
  transform: scale(1.1);
}

.service-offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-deep);
}

.service-offer-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Know More Button Wrapper */
.know-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.know-more-btn {
  display: inline;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 96, 32, 0.3);
}

.know-more-btn i {
  transition: transform 0.3s ease;
}

.know-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 96, 32, 0.4);
}

.know-more-btn:hover i:last-child {
  transform: translateX(5px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .services-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-offer-card {
    padding: 1.8rem 1.2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.6rem;
  }
  
  .service-offer-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .services-offer-section {
    padding: 3rem 1.5rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .service-offer-card {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
  
  .service-offer-card h3 {
    font-size: 1.1rem;
  }
  
  .service-offer-card p {
    font-size: 0.85rem;
  }
  
  .know-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .services-offer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .service-offer-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }
  
  .service-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-offer-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .service-offer-card p {
    font-size: 0.85rem;
  }
  
  .know-more-wrapper {
    margin-top: 2rem;
  }
  
  .know-more-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .service-offer-card {
    padding: 1.2rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-offer-card h3 {
    font-size: 1rem;
  }
  
  .service-offer-card p {
    font-size: 0.8rem;
  }
  
  .know-more-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Animation for cards on load */
.service-offer-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.service-offer-card:nth-child(1) { animation-delay: 0.05s; }
.service-offer-card:nth-child(2) { animation-delay: 0.1s; }
.service-offer-card:nth-child(3) { animation-delay: 0.15s; }
.service-offer-card:nth-child(4) { animation-delay: 0.2s; }
.service-offer-card:nth-child(5) { animation-delay: 0.25s; }
.service-offer-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------
   SERVICES DETAIL PAGE - ZIG ZAG LAYOUT
   ---------------------------------------------- */

.services-detail-section {
  padding: 3rem 0 4rem;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-detail-item:hover {
  box-shadow: var(--shadow-md);
}

/* Zig Zag Left - Image Left, Text Right */
.zig-left .service-detail-image {
  order: 1;
}

.zig-left .service-detail-content {
  order: 2;
}

/* Zig Zag Right - Image Right, Text Left */
.zig-right .service-detail-image {
  order: 2;
}

.zig-right .service-detail-content {
  order: 1;
}

.service-detail-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-detail-image img {
  width: 100%;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

.service-detail-content {
  padding: 1rem;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-large i {
  font-size: 2.5rem;
  color: white;
}

.service-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-deep);
  display: block;
}

.service-detail-content h2:after {
  left: 0;
  transform: none;
}

.service-detail-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.service-features span {
  background: var(--gray-bg);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-features span i {
  color: var(--primary-orange);
  font-size: 0.8rem;
}

/* Services CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--deep-soft) 100%);
  padding: 4rem 0;
  text-align: center;
}

.services-cta .cta-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-cta .cta-content p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .service-detail-item {
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .service-detail-image img {
    height: 300px;
  }
  
  .service-detail-content h2 {
    font-size: 1.5rem;
  }
  
  .service-icon-large {
    width: 65px;
    height: 65px;
  }
  
  .service-icon-large i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .zig-left .service-detail-image,
  .zig-right .service-detail-image,
  .zig-left .service-detail-content,
  .zig-right .service-detail-content {
    order: 0;
  }
  
  .service-detail-image img {
    height: 250px;
  }
  
  .service-detail-content {
    padding: 0;
    text-align: center;
  }
  
  .service-icon-large {
    margin: 0 auto 1rem;
  }
  
  .service-detail-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .service-features {
    justify-content: center;
  }
  
  .services-cta .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-detail-item {
    padding: 1rem;
  }
  
  .service-detail-image img {
    height: 200px;
  }
  
  .service-detail-content h2 {
    font-size: 1.3rem;
  }
  
  .service-features span {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .services-cta {
    padding: 2.5rem 0;
  }
  
  .services-cta .cta-content h3 {
    font-size: 1.2rem;
  }
}



/* ----------------------------------------------
   PRODUCTS WE MANUFACTURE SECTION - FIXED
   ---------------------------------------------- */

.products-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gray-bg) 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Products Grid - Centered */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  justify-content: center;
  align-items: stretch;
}

/* Product Card - Centered Content */
.product-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-deep));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 96, 32, 0.1), rgba(32, 24, 64, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}

.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
}

.product-icon i {
  font-size: 2rem;
  color: var(--primary-orange);
  transition: var(--transition);
}

.product-card:hover .product-icon i {
  color: white;
  transform: scale(1.1);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-deep);
  text-align: center;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

/* Know More Button - Fixed Width */
.know-more-wrapper {
  text-align: center;
  margin-top: 3rem;
  width: 100%;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 96, 32, 0.3);
  width: auto;
  min-width: 250px;
}

.know-more-btn i {
  transition: transform 0.3s ease;
}

.know-more-btn i:first-child {
  margin-right: 5px;
}

.know-more-btn i:last-child {
  margin-left: 5px;
}

.know-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 96, 32, 0.4);
}

.know-more-btn:hover i:last-child {
  transform: translateX(5px);
}

/* Animation for cards */
.product-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .product-card {
    padding: 1.5rem 1.2rem;
  }
  
  .product-icon {
    width: 60px;
    height: 60px;
  }
  
  .product-icon i {
    font-size: 1.6rem;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
  }
  
  .know-more-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    min-width: 230px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 768px) {
  .products-section {
    padding: 3rem 1.5rem;
  }
  

  
  .section-header p {
    font-size: 1rem;
  }
  
  .product-card {
    padding: 1.2rem 1rem;
  }
  
  .product-icon {
    width: 55px;
    height: 55px;
  }
  
  .product-icon i {
    font-size: 1.4rem;
  }
  
  .product-card h3 {
    font-size: 1rem;
  }
  
  .product-card p {
    font-size: 0.8rem;
  }
  
  .know-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 210px;
  }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-card {
    padding: 1rem;
  }
  
    .form-group input, .form-group select, .form-group textarea {
      width: 85% ;
  }
  
  .product-icon {
    width: 45px;
    height: 45px;
  }
  
  .product-icon i {
    font-size: 1.2rem;
  }
  
  .product-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .product-card p {
    font-size: 0.7rem;
  }
  
  .know-more-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
    min-width: 200px;
  }
}

/* Mobile Portrait (below 480px) */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }
  
  .product-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
  }
  
  .product-icon i {
    font-size: 1.5rem;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
  }
  
  .product-card p {
    font-size: 0.85rem;
  }
  
  .know-more-wrapper {
    margin-top: 2rem;
  }
  
  .know-more-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
    min-width: 220px;
    width: auto;
    display: inline-flex;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (below 360px) */
@media (max-width: 360px) {
  .know-more-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    min-width: 180px;
  }
  
  .product-card {
    padding: 1rem;
  }
  
  .product-icon {
    width: 50px;
    height: 50px;
  }
  
  .product-card h3 {
    font-size: 1rem;
  }
}

/* ----------------------------------------------
   PRODUCTS PAGE - CARD BASED LAYOUT
   ---------------------------------------------- */

.products-page-section {
  padding: 3rem 0 4rem;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-page-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  text-align: center;
  padding-bottom: 1.5rem;
}

.product-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

.product-page-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-page-card:hover .product-page-image img {
  transform: scale(1.05);
}

.product-page-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-page-icon i {
  font-size: 1.8rem;
  color: white;
}

.product-page-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-deep);
  padding: 0 1rem;
}

.product-page-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0 1.2rem;
  margin-bottom: 1rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
}

.product-features span {
  background: var(--gray-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-features span i {
  color: var(--primary-orange);
  font-size: 0.7rem;
}

/* Capabilities Section */
.capabilities-section {
  background: var(--gray-bg);
  padding: 4rem 0;
}

.capabilities-content {
  text-align: center;
}

.capabilities-content h2 {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.capabilities-content h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.capabilities-content > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.capability-item {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.capability-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
}

.capability-item i {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
}

.capability-item h4 {
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.capability-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Products CTA Section */
.products-cta {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--deep-soft) 100%);
  padding: 4rem 0;
  text-align: center;
}

.products-cta .cta-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.products-cta .cta-content p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .products-page-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-page-image {
    height: 200px;
  }
  
  .product-page-card h3 {
    font-size: 1.2rem;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .products-cta .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-page-image {
    height: 180px;
  }
  
  .product-page-icon {
    width: 50px;
    height: 50px;
  }
  
  .product-page-icon i {
    font-size: 1.4rem;
  }
  
  .product-page-card h3 {
    font-size: 1.1rem;
  }
  
  .product-page-card p {
    font-size: 0.85rem;
  }
  
  .product-features span {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }
}