/* =========================================
   🌐 Global Styles
   ========================================= */
:root {
  --primary-color: #004aad; /* Company main color */
  --secondary-color: #ff6b35; /* Accent color */
  --dark-color: #1a1a1a;
  --light-color: #f5f5f5;
  --text-color: #333;
  --text-secondary: #666;
  --text-light: #999;
  --max-width: 1200px;
  --font-main: 'Poppins', sans-serif;
  --transition: all 0.3s ease-in-out;
  
  /* Font Sizes */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.8rem;
  --font-size-large: 1.5rem;
  --font-size-base: 1rem;
  --font-size-small: 0.95rem;
  --font-size-xsmall: 0.8rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile menu overlay */
body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* =========================================
   🧭 Reusable Utilities
   ========================================= */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

h1, h2, h3 {
  color: var(--dark-color);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1rem;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* =========================================
   🔝 Header + Navbar
   ========================================= */
header {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar .logo {
  display: flex;
  /* flex-grow: 1; */
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.navbar .logo .icon {
  height: 50px;
  box-sizing: border-box;
  border: solid 2px #ff6b35;
  padding: 2px;
  border-radius: 50%;
}
.navbar .logo .icon img {
  background-color: white;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  border-radius: 50%; 
}

.navbar .logo .logo-text-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar .logo .logo-text-container .first-name {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar .logo .logo-text-container .second-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ff6b35;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links .active {
  color: var(--secondary-color);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  z-index: 1001;
}

.hamburger:hover {
  border-color: var(--secondary-color);
  background: rgba(255, 107, 53, 0.1);
}

.hamburger .bar {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover .bar {
  background-color: var(--secondary-color);
}

/* Hamburger Active State (X icon) */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 30px 30px;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
  }

  /* Header Responsive - Full Width */
  .navbar {
    width: 95%;
  }

  /* Header Logo Responsive */
  .navbar .logo .logo-text-container .first-name {
    font-size: 32px;
  }

  .navbar .logo .logo-text-container .second-name {
    font-size: 14px;
  }

  /* Hero Section Responsive */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    width: 90%;
  }

  /* Badges Container Responsive */
  .badges-container {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .badge-card {
    width: 200px;
    height: 160px;
    padding: 18px;
  }

  .badge-card > p:first-of-type {
    font-size: 1.8rem;
  }

  .badge-card > p:last-of-type {
    font-size: 0.9rem;
  }

  /* About Section Responsive */
  .about-section {
    margin-top: 60px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content img {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .about-content h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .about-content .about-text {
    text-align: center;
  }

  .about-content p {
    text-align: center;
    max-width: 100%;
  }

  .about-text .badge {
    margin-left: auto;
    margin-right: auto;
  }

  /* Services Section Responsive */
  .services h2 {
    font-size: 2.5rem;
  }

  .services .service-cards {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    gap: 20px;
  }
}

/* Tablet and Small Screens */
@media (max-width: 768px) {
  /* Header - Full Width */
  header {
    padding: 10px 0;
  }

  .navbar {
    width: 100%;
    padding: 0 15px;
  }

  .navbar .logo .icon {
    height: 40px;
  }

  .navbar .logo .logo-text-container .first-name {
    font-size: 26px;
  }

  .navbar .logo .logo-text-container .second-name {
    font-size: 12px;
  }

  /* Hero Section - Full Width */
  .hero {
    width: 100%;
  }

  .hero,
  .video-container {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
  }

  .hero-content {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* Hide extra elements on mobile - Show only tagline and description */
  .hero-content > .badge {
    display: none;
  }

  .hero-content .btn-primary,
  .hero-content .btn-secondary {
    display: none;
  }

  .hero-content .badges-container {
    display: none;
  }

  /* Improve main tagline on mobile */
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .hero p {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0;
    padding: 0 15px;
    line-height: 1.6;
  }

  .hero-content {
    padding: 0 15px;
    width: 100%;
  }

  .badge-card {
    width: 90%;
    max-width: 280px;
    height: 140px;
    padding: 15px;
  }

  .badge-card > p:first-of-type {
    font-size: 1.6rem;
  }

  .badge-card > p:last-of-type {
    font-size: 0.85rem;
  }

  /* About Section */
  .about-section {
    margin-top: 40px;
  }

  .about-content img {
    height: 300px;
  }

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

  .about-content p {
    font-size: 1rem;
  }

  /* Services Section */
  .services h2 {
    font-size: 2rem;
  }

  .services-description {
    font-size: 1rem;
    margin: 15px auto 30px;
  }

  .services .service-cards {
    grid-template-columns: 1fr;
    width: 95%;
  }

  .card {
    padding: 20px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  /* Portfolio Section */
  .portfolio h2 {
    font-size: 2rem;
  }

  .portfolio-description {
    font-size: 1rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  /* Header - Full Width Mobile */
  header {
    padding: 8px 0;
  }

  .navbar {
    width: 100%;
    padding: 0 10px;
  }

  .navbar .logo .icon {
    height: 35px;
  }

  .navbar .logo .logo-text-container .first-name {
    font-size: 22px;
  }

  .navbar .logo .logo-text-container .second-name {
    font-size: 10px;
  }

  .hamburger {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .hamburger .bar {
    width: 22px;
    height: 2.5px;
  }

  /* Hero Section - Clean & Focused */
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 0 5px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 10px;
  }

  /* About Section */
  .about-content img {
    height: 250px;
  }

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

  .about-content p {
    font-size: 0.9rem;
  }

  /* Services Section */
  .services h2 {
    font-size: 1.6rem;
  }

  .services-description {
    font-size: 0.9rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-description {
    font-size: 0.85rem;
  }

  .card-features li {
    font-size: 0.85rem;
  }

  /* Portfolio Section */
  .portfolio h2 {
    font-size: 1.6rem;
  }

  .portfolio-description {
    font-size: 0.9rem;
    margin: 15px auto 25px;
  }

  /* Contact Section */
  .contact-header h2 {
    font-size: 1.8rem;
  }

  .contact-description {
    font-size: 0.95rem;
  }

  /* Certifications Section */
  .certifications h2 {
    font-size: 1.6rem;
  }

  .cert-description {
    font-size: 0.9rem;
  }
}

/* =========================================
   � Hero Section
   ========================================= */
   
.hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('../assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

 .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  filter: brightness(0.7);
  object-fit: fill;
} 

.hero-content {
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ff6b35;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  text-align: center;
  color: rgb(190, 176, 176);
}

/* Buttons */
.btn-primary {
  background: #ff6b35;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid gray;
  padding: 10px 26px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  margin-left: 15px;
}

.btn-secondary:hover {
  background: rgba(255, 107, 53, 0.3);
  color: #fff;
  border: 2px solid #ff6b35;
}

.btn-primary:hover {
  background: white;
  color: #ff6b35;
} 
/*badge*/
.badge {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: rgba(255, 107, 53, 0.3) 1px solid ;
  font-size: 1rem;
  font-weight: 250;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.7rem;
}

/* Badge styling for About Us section */
.about-text .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
}

/* Badge styling for Services section */
.services .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
}

/* Badge styling for Portfolio section */
.portfolio .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.certifications .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.badge img {
  height: 20px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  align-self: center;
}
/* Badges Container */

.badges-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 6% auto 0;
  gap: 45px;
} 

.badge-card{
  height: 180px;
  width: 250px;
  border-radius: 15px ;
  border: rgb(255, 255, 255,0.3) 1px solid;
  background-color: rgba(56, 53, 53, 0.5);
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 24px;
  gap: 0;
}

.badge-card img {
  height: 40px;
  width: auto;
  margin-right: 0;
  align-self: center;
}

.badge-card > p {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 0.9rem;
  font-weight: 400;
}

.badge-card > p:first-of-type {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  padding-top: 0.5em;
}

.badge-card > p:last-of-type {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(190, 176, 176);
}
/* =========================================
 🏢 About Section
========================================= */

.about-section {
  margin-top: 100px;
}
.about-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.about-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-content img{
  flex: 3;
  height: 600px;
  width: auto;
  box-sizing: border-box;
  border-radius: 15px;
  align-content: center;
  justify-self: center;
  align-self: center;
}

.about-content .about-text {
  /* flex: 7;
  margin-left: 100px; */
  flex-direction: column;
  display: flex;
  justify-content: center;
  text-align: justify;
}

.about-content h2 {
  font-size: 3.675rem;
  text-align: left;
  line-height: 1.3;
}

.about-content h2 .highlight-text {
  color: #ff6b35;
  word-spacing: normal;
}

.about-content p  {
  max-width: 580px;
  /* margin: 0 auto; */
  display: flex;
  font-size: 1.1rem;
  text-align: justify;
}

.about-content p:last-of-type {
  margin-top: 10px;
  cursor: pointer;
  transition: color 1s ease;
}

.about-content p:last-of-type:hover {
  color: transparent;
  background: linear-gradient(90deg, #ff6b35 70%, #1a1a1a 30%);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientMove 10s linear infinite;
  transition: color 1s ease;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* =========================================
   ⚙️ Services Section
   ========================================= */
/* Import in <head> of your HTML file */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.services-description {
  font-size: var(--font-size-large);
  color: var(--text-secondary);
  text-align: center;
  max-width: 980px;
  margin: 25px auto 50px;
  line-height: 1.7;
}

.services .container {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.services h2 {
  font-size: 3.675rem;
  line-height: 1.3;
}

.services h2 .highlight-text {
  color: #ff6b35;
}

.portfolio h2 {
  font-size: 3.675rem;
  line-height: 1.3;
}

.portfolio h2 .highlight-text {
  color: #ff6b35;
}

.services .service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  width: 72%;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 27px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border: 2px solid #deb6a7;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.card-icon {
  width: 61px;
  height: 61px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 13px;
  transition: all 0.3s ease;
  align-self: flex-start;
  background-color: rgba(252, 125, 79, 0.15);
  padding: 7px;
  box-sizing: border-box;
}

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

.card-title {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 9px 0 9px 0;
  text-align: left;
}

.card-description {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 9px 0 13px 0;
  text-align: left;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-features li {
  font-size: var(--font-size-small);
  color: var(--text-secondary);
  padding: 7px 0 7px 22px;
  position: relative;
  margin: 4px 0;
}

.card-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2rem;
}

/* =========================================
   � Equipment Section
   ========================================= */
.equipment {
  background-color: #f5f5f5;
  padding: 80px 20px;
}

.equipment .container {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.equipment-description {
  font-size: var(--font-size-large);
  color: var(--text-secondary);
  text-align: center;
  max-width: 980px;
  margin: 25px auto 50px;
  line-height: 1.7;
}

.equipment h2 {
  font-size: 3.675rem;
  color: #1a1a1a;
  margin: 15px 0;
  font-weight: 700;
  line-height: 1.3;
}

.equipment h2 .highlight-text {
  color: #ff6b35;
}

.equipment .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.equipment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* Professional Equipment Card Design */
.equipment-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.15);
  transform: translateY(-4px);
}

/* Image Section */
.equipment-image-section {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

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

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

.category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #ff6b35;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

/* Content Section */
.equipment-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.equipment-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
}

.equipment-card-description {
  font-size: var(--font-size-small);
  color: var(--text-secondary);
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.equipment-tagline {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex-grow: 1;
}

.spec-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.spec-value {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 600;
}

.equipment-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.equipment-specs li {
  font-size: 0.9rem;
  color: #555;
  padding: 8px 0 8px 20px;
  position: relative;
  margin: 5px 0;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.equipment-specs li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .equipment-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .equipment {
    padding: 60px 20px;
  }

  .equipment h2 {
    font-size: 2rem;
  }

  .equipment-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .equipment-image-section {
    height: 240px;
  }
  
  .equipment-title {
    font-size: 1.15rem;
  }

  .specs-grid {
    gap: 16px;
  }

  .spec-value {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .equipment {
    padding: 40px 15px;
  }

  .equipment h2 {
    font-size: 1.5rem;
  }

  .equipment-description {
    font-size: 1rem;
  }

  .equipment-cards {
    gap: 15px;
  }
  
  .equipment-image-section {
    height: 200px;
  }

  .equipment-content {
    padding: 16px;
  }

  .equipment-title {
    font-size: 1.05rem;
  }

  .equipment-tagline {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .specs-grid {
    gap: 12px;
  }

  .spec-label {
    font-size: 0.7rem;
  }

  .spec-value {
    font-size: 0.85rem;
  }

  .category-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}

/* =========================================
   📞 Contact Section
   ========================================= */
.contact {
  background-color: #f9f9f9;
}

.contact .container {
  max-width: 1200px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.contact-header h2 {
  font-size: 3.675rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-header h2 .highlight-text {
  color: #ff6b35;
}

.contact-description {
  font-size: var(--font-size-large);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Content - 30-70 Split */
.contact-content {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  align-items: start;
}

/* Left Side: Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
  color: #ff6b35;
}

.contact-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-card-subtext {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* Right Side: Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-color);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.submit-btn {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.form-status {
  margin-top: 10px;
  font-size: 0.95rem;
  display: none;
}

/* Contact Section Responsive */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
  }

  .contact-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-info-cards {
    flex-direction: column;
  }

  .contact-card {
    max-width: 100%;
  }

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

/* =========================================
   ⚙️ Footer
   ========================================= */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #ccc;
}

.footer-main {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Company Info Column */
.footer-column.company-info {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-first {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.footer-brand-second {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ff6b35;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.company-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 25px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: #ccc;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff6b35;
  transform: translateY(-3px);
}

.social-link:hover svg {
  color: white;
}

/* Footer Column Headings */
.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff6b35;
}

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

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

.footer-nav a {
  color: #aaa;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact li svg {
  width: 20px;
  height: 20px;
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact li span {
  flex: 1;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b35;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .footer-column.company-info {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .company-description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column:not(.company-info) {
    text-align: center;
  }

  .footer-nav a:hover {
    transform: none;
  }

  .footer-contact li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    gap: 20px;
  }
}

/* =========================================
   ✨ Animations
   ========================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   🎯 Portfolio Section
   ========================================= */
.portfolio {
  background-color: #f9f9f9;
}

.portfolio-description {
  text-align: center;
  font-size: 1.5rem;
  color: #666;
  max-width: 980px;
  margin: 25px auto 40px;
  line-height: 1.7;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid #ddd;
  background-color: #fff;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.filter-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.filter-btn.active {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-card.hidden {
  display: none;
}

/* Card Image Section (50%) */
.card-image-section {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Card Content Section */
.card-content-section {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.portfolio-card-description {
  font-size: var(--font-size-small);
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.5;
}

.material-spec {
  font-size: var(--font-size-xsmall);
  color: var(--text-secondary);
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: auto;
  line-height: 1.6;
}

.material-spec strong {
  color: var(--secondary-color);
  font-weight: 700;
}

/* =========================================
   📱 Responsive Design
   ========================================= */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Portfolio Responsive */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .filter-buttons {
    gap: 8px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .card-image-section {
    height: 200px;
  }

  .card-content-section {
    padding: 20px;
  }

  .portfolio-card-title {
    font-size: 1.2rem;
  }

  .portfolio-card-description {
    font-size: 0.9rem;
  }

  .material-spec {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .card-image-section {
    height: 180px;
  }

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

/* =========================================
   ✅ Certifications & Quality Standards - CLEAN
   ========================================= */
.quality-section {
  font-family: var(--font-main);
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.quality-container {
  width: 100%;
}

/* Section Header - Consistent with other sections */
.quality-header {
  text-align: center;
  margin-bottom: 50px;
}

.quality-badge {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.15);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  border: rgba(255, 107, 53, 0.3) 1px solid;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.quality-header h2 {
  font-size: 3.675rem;
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight-orange {
  color: var(--secondary-color);
}

.quality-subtitle {
  font-size: var(--font-size-large);
  color: var(--text-secondary);
  max-width: 980px;
  margin: 25px auto 50px;
  line-height: 1.7;
}

/* Certifications Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.cert-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cert-card:hover {
  transform: translateY(-5px);
  border: 2px solid #deb6a7;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.cert-card:hover .icon-wrapper {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.1);
}

.icon-wrapper.icon-blue {
  background: rgba(0, 74, 173, 0.1);
  color: var(--primary-color);
}

.cert-card:hover .icon-wrapper.icon-blue {
  background: var(--primary-color);
  color: #fff;
}

.icon-wrapper.icon-green {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.cert-card:hover .icon-wrapper.icon-green {
  background: #27ae60;
  color: #fff;
}

.icon-wrapper.icon-purple {
  background: rgba(142, 68, 173, 0.1);
  color: #8e44ad;
}

.cert-card:hover .icon-wrapper.icon-purple {
  background: #8e44ad;
  color: #fff;
}

.cert-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: var(--dark-color);
  font-weight: 700;
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Commitment Box */
.commitment-box {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.commitment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.shield-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.commitment-header h2 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin: 0;
  font-weight: 700;
}

.commitment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-color);
  padding: 10px 0;
  transition: all 0.2s ease;
}

.list-item:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.list-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.list-item:hover::before {
  background: var(--secondary-color);
  color: #fff;
}

/* OLD STYLES - Keep for backward compatibility */
.certifications {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.certifications .container {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.certifications .badge {
  color: #ff6b35;
  width: fit-content;
  font-weight: 600;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.certifications h2 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.certifications h2 .highlight-text {
  color: #ff6b35;
}

.cert-description {
  font-size: var(--font-size-large);
  color: var(--text-secondary);
  text-align: center;
  max-width: 980px;
  margin: 25px auto 50px;
  line-height: 1.7;
}

/* Certification Cards Grid - Badge Card Style */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cert-card {
  height: auto;
  min-height: 180px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: white;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 30px 20px;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.08);
}

.cert-card:hover {
  background-color: #fff;
  border: 2px solid var(--secondary-color);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.cert-icon {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  align-self: center;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 50%;
}

.cert-icon-1 {
  color: #004aad;
}

.cert-icon-2 {
  color: #ff6b35;
}

.cert-icon-3 {
  color: #27ae60;
}

.cert-icon-4 {
  color: #c0392b;
}

.cert-icon-5 {
  color: #8e44ad;
}

.cert-icon-6 {
  color: #d35400;
}

.cert-title {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.cert-label {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: var(--font-size-xsmall);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Quality Commitments Section */
.quality-commitments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  background: rgba(0, 74, 173, 0.04);
  border-radius: 10px;
}

.commitment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 10px;
  transition: all 0.3s ease;
}

.commitment-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ff6b35;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.commitment-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.commitment-item:hover {
  transform: scale(1.05);
}

/* Quality Commitment Section (New) */
.quality-commitment-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(255, 107, 53, 0.03) 100%);
  padding: 50px 20px;
  margin-top: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
}

.quality-commitment-box {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.08);
  transition: all 0.3s ease;
}

.quality-commitment-box:hover {
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.12);
  transform: translateY(-2px);
}

.quality-commitment-box h3 {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 12px;
  display: inline-block;
}

.quality-commitment-badge {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}

.quality-commitment-box p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.quality-commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-commitment-list li {
  font-size: var(--font-size-small);
  color: var(--text-color);
  padding: 15px 0 15px 45px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
  border-left: 3px solid transparent;
  padding-left: 40px;
  transition: all 0.3s ease;
}

.quality-commitment-list li:hover {
  border-left-color: var(--secondary-color);
  background-color: rgba(255, 107, 53, 0.02);
  padding-left: 45px;
}

.quality-commitment-list li:before {
  content: "✓";
  position: absolute;
  left: 5px;
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 1.3rem;
}

.quality-commitment-list li strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quality-section {
    padding: 60px 15px;
  }
  
  .quality-header h2 {
    font-size: 2.5rem;
  }
  
  .quality-subtitle {
    font-size: 1rem;
    margin: 15px auto 40px;
  }
  
  .cert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .cert-card {
    padding: 25px 15px;
  }
  
  .icon-wrapper {
    width: 48px;
    height: 48px;
  }
  
  .icon-wrapper svg {
    width: 22px;
    height: 22px;
  }
  
  .commitment-box {
    padding: 30px 20px;
  }
  
  .commitment-header h2 {
    font-size: 1.3rem;
  }
  
  .commitment-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .list-item {
    font-size: 0.9rem;
  }

  .certifications {
    padding: 60px 20px;
  }

  .certifications h2 {
    font-size: 2rem;
  }

  .cert-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    width: 95%;
  }

  .cert-card {
    padding: 30px 20px;
  }

  .cert-card {
    height: 160px;
    padding: 18px;
  }

  .cert-icon {
    font-size: 2rem;
  }

  .cert-title {
    font-size: 1rem;
  }

  .cert-label {
    font-size: 0.75rem;
  }

  .quality-commitments {
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
  }

  .quality-commitment-section {
    padding: 35px 15px;
  }

  .quality-commitment-box {
    padding: 30px;
  }

  .quality-commitment-box h3 {
    font-size: 1.5rem;
  }

  .quality-commitment-box p {
    font-size: var(--font-size-base);
  }

  .quality-commitment-list li {
    font-size: var(--font-size-small);
    padding: 12px 0 12px 40px;
  }
}

@media (max-width: 600px) {
  .quality-section {
    padding: 40px 10px;
  }
  
  .quality-header h2 {
    font-size: 2rem;
  }
  
  .quality-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .quality-subtitle {
    font-size: 0.95rem;
    margin: 15px auto 30px;
  }
  
  .cert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .cert-card {
    padding: 20px 12px;
  }
  
  .icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  
  .icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  
  .cert-card h3 {
    font-size: 0.95rem;
  }
  
  .cert-card p {
    font-size: 0.8rem;
  }
  
  .commitment-box {
    padding: 25px 15px;
  }
  
  .commitment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .shield-icon {
    width: 28px;
    height: 28px;
  }
  
  .commitment-header h2 {
    font-size: 1.2rem;
  }
  
  .list-item {
    font-size: 0.85rem;
    padding: 8px 0;
  }
  
  .list-item::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 10px;
  }
  
  .check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.75rem;
  }
  
  .point-content strong {
    font-size: 0.9rem;
  }
  
  .point-content span {
    font-size: 0.8rem;
  }

  .certifications {
    padding: 40px 15px;
  }

  .certifications h2 {
    font-size: 1.5rem;
  }

  .cert-description {
    font-size: 0.95rem;
  }

  .certifications-grid {
    width: 100%;
    gap: 15px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
    gap: 15px;
  }

  .cert-card {
    height: 140px;
    padding: 15px;
  }

  .cert-icon {
    font-size: 1.8rem;
  }

  .cert-title {
    font-size: 0.95rem;
  }

  .cert-label {
    font-size: 0.7rem;
  }

  .quality-commitments {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 25px 15px;
  }

  .commitment-item {
    gap: 10px;
  }

  .commitment-text {
    font-size: 0.9rem;
  }

  .quality-commitment-section {
    padding: 25px 10px;
    border-left: 3px solid var(--primary-color);
  }

  .quality-commitment-box {
    padding: 20px;
  }

  .quality-commitment-box h3 {
    font-size: 1.3rem;
  }

  .quality-commitment-box p {
    font-size: 0.93rem;
    text-align: left;
  }

  .quality-commitment-list li {
    font-size: 0.9rem;
    padding: 10px 0 10px 35px;
  }

  .quality-commitment-list li:before {
    font-size: 1.1rem;
  }
}
