/* Global Typography - Montserrat Font, Non-Bold, Small Sizes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

:root{
  --gold:#d4a000;
  --bg:#ffffff;
  --paper:#f5f5f5;
  --muted:#666666;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: 'Montserrat' !important;
  font-weight: 400 !important;
}

html, body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

strong, b {
  font-weight: 400 !important;
}

nav, nav a, .navbar, .nav-link, .menu-item, .main-nav a, .mobile-nav-link {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat' !important;
}

p {
  font-size: 13px;
  font-weight: 400 !important;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  background: #ffffff !important;
}

body {
  overflow-x: hidden;
  background: #ffffff !important;
}

body.bg-black{
  background:#ffffff !important;
  color:#000;
  font-family:'Montserrat';
font-weight: 400;
  padding-top:60px;
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 24px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  height:60px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:var(--bg);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.brand a:hover {
  opacity: 0.8;
}

.logo{
  height:100px;
}
.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.main-nav{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:24px;
}

.main-nav a{
  color:#000000;
  text-decoration:none;
  font-weight:400;
  opacity:.95;
  padding:8px 12px;
  border-radius:4px;
  transition:all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a:active{
  background:rgba(212,160,0,0.1);
  color: #000000;
  opacity:1;
}

.main-nav a.active{
  background:rgba(212,160,0,0.15);
  color: #000000;
  text-decoration:underline;
}

/* Mobile touch-friendly hover effects */
@media (hover: none) and (pointer: coarse) {
  .main-nav a:active {
    background:rgba(0,0,0,0.2);
    transform: scale(0.98);
    transition: all 0.1s ease;
  }
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
  position: relative;
}

.nav-icon{
  background:none;
  border:none;
  color:var(--gold);
  cursor:pointer;
  padding:8px;
  border-radius:4px;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-icon:hover,
.nav-icon:focus,
.nav-icon:active{
  background:rgba(212,160,0,0.1);
  color: var(--gold);
  transform:scale(1.05);
}

/* Mobile touch-friendly icon effects */
@media (hover: none) and (pointer: coarse) {
  .nav-icon:active {
    background:rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: all 0.1s ease;
  }
}

.nav-icon svg{
  width:20px;
  height:20px;
}

/* Search functionality */
.search-container {
  display: none !important;
  position: relative;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  min-width: 250px;
  max-width: 400px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
}

.search-container.active {
  display: flex !important;
  opacity: 1;
  transform: scaleX(1);
  visibility: visible;
}

.search-container.active ~ .nav-icon,
.search-container.active ~ button.nav-icon {
  display: none;
}

.search-toggle.active {
  display: none;
}

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

.search-input {
  flex: 1;
  border: 1px solid rgba(212,160,0,0.3);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(255,255,255,0.9);
  color: #000;
}

.search-input:focus {
  border-color: var(--gold);
  background: #fff;
}

.search-close {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-close:hover {
  background: rgba(212,160,0,0.1);
  color: var(--gold);
}

.search-close svg {
  width: 18px;
  height: 18px;
}

/* Mega dropdown */
.mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #f5f5f5;
  border-top: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .3s ease;
  z-index: 1000;
}

.site-header.expand .mega {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.mega-inner {
  width: 100%;
  margin: 0;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.projects-grid {
  grid-template-columns: repeat(4, 1fr);
}

.dropdown-section {
  text-align: left;
}

.dropdown-section h4 {
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  border-bottom: 1px solid rgba(212,160,0,0.3);
  padding-bottom: 8px;
}

.dropdown-section a {
  display: block;
  color: #000000;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.dropdown-section a:hover,
.dropdown-section a:focus,
.dropdown-section a:active {
  color: #000000;
  opacity: 1;
  padding-left: 8px;
}

/* Mobile touch-friendly dropdown effects */
@media (hover: none) and (pointer: coarse) {
  .dropdown-section a:active {
    color: #000000;
    opacity: 1;
    padding-left: 12px;
    background: rgba(0,0,0,0.1);
    transform: scale(1.02);
    transition: all 0.1s ease;
  }
}

.container{
  width:100%;
  margin:0;
  padding:0;
}


/* Hero Video Section */
.hero-video{
  position:relative;
  height:60vh;
  min-height:600px;
  overflow:hidden;
  width:100%;
  margin:0;
}

.video-container{
  position:relative;
  width:100%;
  height:100%;
}

.hero-video-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  min-width:100%;
  min-height:100%;
  object-fit:cover;
  z-index:1;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-content{
  text-align:center;
  max-width:900px;
  padding:0 0px;
  z-index:3;
}

.hero-content h1{
  color:#ffffff;
  font-weight:200;
  margin:0 0 20px 0;
  text-shadow:2px 2px 4px rgba(0,0,0,0.7);
  line-height:1.1;
}

.hero-content .lead{
  color:#fff;
  font-size:1.3rem;
  margin-bottom:30px;
  text-shadow:1px 1px 2px rgba(0,0,0,0.7);
}

.hero-content .cta-row{
  justify-content:center;
  gap:20px;
}

.hero-content .btn{
  padding:15px 30px;
  font-size:1.1rem;
  min-width:180px;
  background: var(--gold);
  color: #000000;
}

.hero-content .btn-outline{
  background:rgba(0,0,0,0.1);
  backdrop-filter:blur(10px);
  border:2px solid var(--gold);
  color: var(--gold);
}

.hero-content .btn-outline:hover{
  background:var(--gold);
  color:#000000;
  transition:all 0.3s ease;
}

.hero-content .btn:hover{
  background: #b89000;
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(212,160,0,0.4);
  transition:all 0.3s ease;
}

/* Mission Design Section */
.mission-design-section {
  width: 100%;
  height: 93vh;
  margin: 0;
  padding: 60px 40px;
  background: white;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.mission-content {
  padding-right: 20px;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #181818;
  margin-bottom: 15px;
  line-height: 1.2;
}

.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--gold);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.mission-underline {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 30px;
}

.mission-description {
  color: #181818;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.mission-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  color: #808080;
  margin-bottom: 15px;
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #181818;
  margin-bottom: 10px;
}

.feature-text {
  color: #181818;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mission-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 70%;
  position: relative;
  top: 99px;
}

.cutout-image {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mission-bottom-bar {
  background: var(--gold);
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Core Mission Section */
.core-mission-section {
  width: 100%;
  margin: 0;
  padding: 80px 24px;
  background: #f5f5f5;
}

.core-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  align-items: center;
}

.core-mission-image {
  display: flex;
  align-items: center;
  left: -24px;
  justify-content: center;
  height: 10%;
}

.core-cutout-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.core-mission-content {
  padding-left: 20px;
}

.core-mission-label {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.core-mission-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.2;
}

.core-mission-description {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.6;
}

.bottom-feature {
  text-align: center;
  color: #000;
}

.bottom-icon {
  color: #000;
  margin-bottom: 15px;
  width: 24px;
  height: 24px;
  margin: 0 auto 15px auto;
}

.bottom-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}

.bottom-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000;
}

.mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
}

.highlight-item svg {
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-item:hover svg {
  transform: scale(1.2) rotate(5deg);
  color: #333;
}

.highlight-item span {
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.highlight-item:hover span {
  color: #000000;
}

/* Mission & Services Section */
.mission-services {
  padding: 0px 40px;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.8) 100%);
  border-radius: 0;
  margin: 0;
  width: 100%;
}

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

.section-header h2 {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0px;
  letter-spacing: 1px;
}

.section-header p {
  color: #333;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Mission Card */
.mission-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #333, var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border-color: rgba(0,0,0,0.4);
}

.card-icon {
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.card-content p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.mission-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.8);
}

.service-icon {
  color: #808080;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  color: #333;
}

.service-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: #000000;
}

.service-card p {
  color: #bbb;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #ddd;
}

/* Legacy hero styles for fallback */
.hero{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  padding:12px 6px;
}

.hero h1{
  color:#000000;
  font-size:28px;
  letter-spacing:1px;
  margin:6px 0;
}

.lead{
  color:#333;
  margin-bottom:12px;
}

.btn{
  background:#000000;
  color:#fff;
  padding:10px 16px;
  border-radius:6px;
  text-decoration:none;
  font-weight:400;
}

.btn-outline{
  background:transparent;
  border:1px solid #000000;
  color:#000000;
  padding:10px 16px;
  border-radius:6px;
  text-decoration:none;
}

.btn-sm{
  background:#000000;
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
  text-decoration:none;
  font-weight:400;
}

.btn-sm-outline{
  background:transparent;
  border:1px solid rgba(0,0,0,0.12);
  color:#000000;
  padding:8px 12px;
  border-radius:6px;
  text-decoration:none;
}

.cta-row{
  display:flex;
  gap:12px;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:12px;
}

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

.services li{
  padding:6px 0;
}

hr{
  border:none;
  border-top:1px dashed rgba(0,0,0,0.03);
  margin:20px 0;
}

/* PDFs Section */
.pdfs-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.02) 100%);
  width: 100%;
  margin: 0;
}

.pdf-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  max-width:1400px;
  margin:0 auto;
}

.pdf-card{
  background:#f5f5f5;
  padding:16px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.04);
}

.pdf-card h3{
  color:#000000;
  margin:0 0 6px 0;
}

.meta{
  color:rgba(0,0,0,0.6);
  font-size:13px;
  margin-bottom:8px;
}

.card-actions{
  display:flex;
  gap:8px;
}

.project-list{
  display:grid;
  gap:14px;
}

.project{
  background:#f5f5f5;
  padding:14px;
  border-radius:6px;
  border-left:4px solid var(--gold);
}

.project h3{
  margin:0;
  color:#000000;
}

.doc-footer{
  display:flex;
  justify-content:space-between;
  padding-top:18px;
  margin-top:24px;
  border-top:1px solid rgba(0,0,0,0.02);
  color:rgba(0,0,0,0.6);
}

.small{
  font-size:12px;
}

.form-card{
  background:#f5f5f5;
  padding:18px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.04);
  max-width:600px;
}

.form-card label{
  display:block;
  margin-bottom:12px;
}

.form-card input,.form-card textarea{
  width:100%;
  padding:10px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  color:#000;
}

.form-actions{
  display:flex;
  justify-content:flex-end;
}

/* Product grid styles for shop page */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.product-card{
  background:#f5f5f5;
  padding: 0px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.04);
}

.product-card h3{
  color:#000000;
  margin:0 0 8px 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  z-index: 1001;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

/* Mobile touch-friendly toggle effects */
@media (hover: none) and (pointer: coarse) {
  .mobile-menu-toggle:active {
    background: rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: all 0.1s ease;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff !important;
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mobile-logo {
  height: 100px;
  width: 100px;
  max-width: 250px;
}

.mobile-nav-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
}

.mobile-nav-link {
  color: #000000 !important;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus,
.mobile-nav-link:active,
.mobile-nav-link.active {
  color: #000000 !important;
  background: rgba(0, 0, 0, 0.05) !important;
  padding-left: 20px;
}

/* Enhanced mobile touch effects */
@media (hover: none) and (pointer: coarse) {
  .mobile-nav-link:active {
    color: #000000 !important;
    padding-left: 25px;
    background: rgba(0,0,0,0.1) !important;
    transform: scale(1.02);
    transition: all 0.1s ease;
  }
  
  /* Ensure all interactive elements have touch feedback */
  .main-nav a,
  .nav-icon,
  .mobile-nav-link,
  .dropdown-section a,
  .mobile-menu-toggle {
    -webkit-tap-highlight-color: rgba(0,0,0,0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Add ripple effect for touch devices */
  .main-nav a:active,
  .nav-icon:active,
  .mobile-nav-link:active,
  .dropdown-section a:active,
  .service-card:active,
  .mission-card:active {
    position: relative;
    overflow: hidden;
  }
  
  .main-nav a:active::after,
  .nav-icon:active::after,
  .mobile-nav-link:active::after,
  .dropdown-section a:active::after,
  .service-card:active::after,
  .mission-card:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    transform: translate(-50%, -50%);
    animation: ripple 0.3s ease-out;
  }
  
  /* Enhanced card touch effects */
  .service-card:active {
    transform: scale(0.98);
    transition: all 0.1s ease;
  }
  
  .mission-card:active {
    transform: scale(0.99);
    transition: all 0.1s ease;
  }
}

@keyframes ripple {
  to {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1024px),(max-width: 480px) {
  .main-nav {
    gap: 12px;
  }
  
  .main-nav a {
    padding: 6px 8px;
    font-size: 0.85rem;
  }
  
  .mega-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 20px;
  }
  
  /* Mission & Services Tablet */
  .cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .mission-card {
    padding: 35px 30px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .pdf-style{
    padding:50px 30px;
  }
  
  .mission-services {
    padding: 70px 30px;
  }
  
  .pdfs-section {
    padding: 70px 30px;
  }
  
   /* Mission Design Tablet */
   .mission-container {
     grid-template-columns: 1fr;
     gap: 40px;
   }
   
   .mission-content {
     padding-right: 0;
   }
   
   .mission-title {
     font-size: 2.2rem;
   }
   
   .mission-features {
     grid-template-columns: 1fr 1fr;
     gap: 25px;
   }
   
   .mission-bottom-bar {
     grid-template-columns: 1fr;
     gap: 30px;
     padding: 30px 20px;
   }
   
   /* Core Mission Tablet */
   .core-mission-section {
     padding: 60px 24px;
   }
   
   .core-mission-container {
     grid-template-columns: 1fr;
     gap: 30px;
     text-align: center;
   }
   
   .core-mission-image {
     order: -1;
     justify-content: center;
     left: 0;
   }
   
   .core-mission-content {
     padding-left: 0;
   }
   
   .core-mission-title {
     font-size: 2.2rem;
   }
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  
  .logo {
    height: 40px;
  }
  
  .site-header {
    padding: 6px 16px;
    height: 50px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-actions {
    gap: 8px;
  }
  
  .nav-icon {
    padding: 6px;
  }
  
  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .search-container {
    min-width: 200px;
    max-width: 300px;
  }
  
  .search-input {
    padding: 5px 10px;
    font-size: 13px;
  }
  
  .mega {
    display: none !important;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile hero video adjustments */
  .hero-video{
    height:70vh;
    min-height:500px;
  }
  
  .hero-video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .hero-content h1{
    font-size:2.5rem;
    font-weight:200;
    letter-spacing:6px;
  }
  
  .hero-content .lead{
    font-size:1.1rem;
  }
  
  .hero-content .cta-row{
    flex-direction:column;
    align-items:center;
    gap:15px;
  }
  
  .hero-content .btn{
    padding:12px 25px;
    font-size:1rem;
    min-width:160px;
  }
}

@media (max-width: 600px) {
  html, body {
    background: #ffffff !important;
  }
  
  body.bg-black {
    background: #ffffff !important;
  }
  
  .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .site-header {
    padding: 4px 12px;
    height: 45px;
  }
  
  .logo {
    height: 35px;
  }
  
  .nav-icon {
    padding: 4px;
  }
  
  .nav-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .mobile-nav-header {
    padding: 15px;
  }
  
  .mobile-logo {
    height: 70px;
    max-width: 220px;
  }
  
  .mobile-nav-content {
    padding: 15px;
    gap: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  html, body {
    background: #ffffff !important;
  }
  
  body.bg-black {
    background: #ffffff !important;
  }
  
  .hero-video {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .logo {
    height: 32px;
  }
  
  .site-header {
    padding: 4px 10px;
    height: 42px;
  }
  
  .mobile-nav-header {
    padding: 12px;
  }
  
  .mobile-logo {
    height: 60px;
    max-width: 200px;
  }
  
  .mobile-nav-content {
    padding: 12px;
    gap: 12px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 10px 0;
  }
  
  /* Mission & Services Mobile */
  .mission-services {
    padding: 60px 20px;
    margin: 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mission-card {
    padding: 30px 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .mission-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .pdf-style{
    padding:40px 20px;
  }
  
  .pdfs-section {
    padding: 60px 20px;
  }
  
   /* Mission Design Mobile */
   .mission-design-section {
     padding: 40px 20px;
   }
   
   .mission-container {
     gap: 30px;
     margin-bottom: 30px;
   }
   
   .mission-title {
     font-size: 1.8rem;
     margin-bottom: 10px;
   }
   
   .mission-underline {
     width: 50px;
     height: 3px;
     margin-bottom: 20px;
   }
   
   .mission-description {
     font-size: 1rem;
     margin-bottom: 30px;
   }
   
   .mission-features {
     grid-template-columns: 1fr;
     gap: 20px;
   }
   
   .feature-block {
     text-align: center;
   }
   
   .feature-icon {
     margin: 0 auto 10px auto;
   }
   
   .mission-bottom-bar {
     padding: 25px 15px;
     gap: 25px;
   }
   
   .bottom-title {
     font-size: 1.1rem;
   }
   
   .bottom-text {
     font-size: 0.9rem;
   }
   
   /* Core Mission Mobile */
   .core-mission-section {
     padding: 40px 20px;
   }
   
   .core-mission-container {
     grid-template-columns: 1fr;
     gap: 20px;
     text-align: center;
   }
   
   .core-mission-image {
     order: -1;
     justify-content: center;
     left: 0;
     margin-bottom: 20px;
   }
   
   .core-mission-content {
     padding-left: 0;
   }
   
   .core-mission-title {
     font-size: 1.8rem;
     margin-bottom: 20px;
     line-height: 1.3;
   }
   
   .core-mission-label {
     font-size: 0.8rem;
     margin-bottom: 15px;
   }
   
   .core-mission-description {
     font-size: 1rem;
     line-height: 1.5;
   }
  
  .highlight-item span {
    font-size: 1rem;
  }
}
  
  .hero-content h1{
    font-size:2rem;
    font-weight:200;
    letter-spacing:4px;
    margin-bottom:15px;
  }
  
  .hero-content .lead{
    font-size:1rem;
    margin-bottom:25px;
  }
  
  .hero-content .btn{
    padding:10px 20px;
    font-size:0.9rem;
    min-width:140px;
  }

/* PRINT / PDF-LIKE tweaks */
/* --- Mission Features Responsive Fix --- */
@media (max-width: 900px) {
  .mission-features {
    display: grid;
    grid-template-columns: 1fr; /* stack vertically */
    gap: 30px; /* equal spacing between features */
    margin-top: 30px;
  }

  .feature-block {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .feature-icon {
    margin: 0 auto 15px auto;
    color: #808080;
  }

  .feature-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 10px;
  }

  .feature-text {
    font-size: 1rem;
    color: #222;
    line-height: 1.6;
  }

  /* Ensure section expands naturally */
  .mission-design-section {
    height: auto !important;
    min-height: unset;
    padding: 50px 20px !important;
  }
}

@media (max-width: 480px) {
  .mission-features {
    gap: 20px;
  }

  .feature-block {
    padding: 18px 16px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }
}


  .core-mission-section {
    padding: 30px 16px;
  }
  
  .core-mission-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .core-mission-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .core-mission-label {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }


/* Client Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: #f5f5f5;
  width: 100%;
  display: block;
}

.testimonials-container {
    width: 100%;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; /* keep content centered vertically */
  }
  
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0 20px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  border: none;
  min-width: 500px;
  max-width: 500px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-content {
  display: flex;
  height: 200px;
}

.user-image {
  width: 200px;
  height: 100%;
  flex-shrink: 0;
  background: #f5f5f5;
}

.user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.quote-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  font-family: 'Montserrat';
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.9rem;
  color: #666666;
}

.scroll-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  background: #333333;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.scroll-btn:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 350px;
    max-width: 350px;
    height: 180px;
  }
  
  .testimonial-content {
    height: 180px;
  }
  
  .user-image {
    width: 150px;
    height: 100%;
  }
  
  .quote-content {
    padding: 1.5rem;
  }
  
  .quote-icon {
    font-size: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
  }
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background: white;
  width: 100%;
  display: block;
}

.products-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.products-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-image {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.product-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.buy-now-btn {
  width: 100%;
  padding: 12px 24px;
  background: #000000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.explore-shop-container {
  text-align: center;
}

.explore-shop-btn {
  padding: 16px 48px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.explore-shop-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  background: #333333;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-header h2 {
    font-size: 2rem;
  }

  .product-image {
    height: 150px;
  }
}

@media print{
  body{
    background:white;
    color:black;
  }
  .site-header,.main-nav{
    display:none;
  }
  .pdf-style{
    box-shadow:none;
    border:none;
  }
}

/* Clients Section */
.clients-section {
  background-image: url('web/pictures/background.webp.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.clients-container {
  max-width: 900px;
  text-align: center;
  background-color: #fff;
  padding: 60px 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.clients-container h2 {
  font-size: 28px;
  font-weight: 400;
  color: #1a2b48;
  margin-bottom: 10px;
}

.clients-container p {
  color: #6b7a90;
  font-size: 15px;
  margin-bottom: 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.client-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.client-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Services Carousel Styles */
.services-carousel-wrapper {
  margin-top: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.services-carousel {
  position: relative;
  min-height: 200px;
}

.service-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #808080;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-slide h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

.service-slide p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 400;
}

.carousel-btn:hover {
  background: #b89000;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Advanced Manufacturing Section */
.advanced-manufacturing-section {
  padding: 80px 24px;
  background: #ffffff;
}

.advanced-manufacturing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.advanced-manufacturing-content {
  padding-right: 20px;
}

.advanced-manufacturing-section .section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: left;
}

.advanced-manufacturing-section .section-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.advanced-manufacturing-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-manufacturing-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

/* Industries Section */
.industries-section {
  padding: 80px 24px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.industries-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.industries-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.industries-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

.industries-section .section-header p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.industries-grid {
  position: relative;
  z-index: 2;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.industry-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  background: #ffffff;
}

.industry-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  color: #808080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

.industry-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  padding: 80px 24px;
  background: #f5f5f5;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.partners-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

.partners-section .section-header p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 150px;
}

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

.partner-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

/* Team Section */
.team-section {
  padding: 80px 24px;
  background: #ffffff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.team-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

.team-section .section-header p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  background: #ffffff;
}

.team-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.team-role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .core-mission-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .core-mission-image {
    order: -1;
  }

}

@media (max-width: 768px) {
  .core-mission-title {
    font-size: 1.8rem;
  }

  .core-mission-description {
    font-size: 1rem;
  }

  .services-carousel-wrapper {
    padding: 20px;
  }

  .advanced-manufacturing-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advanced-manufacturing-image {
    order: -1;
  }

  .advanced-manufacturing-section .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .advanced-manufacturing-section .section-description {
    font-size: 0.95rem;
    text-align: center;
  }

  .industries-section {
    background-attachment: scroll !important;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries-section .section-header h2,
  .partners-section .section-header h2,
  .team-section .section-header h2 {
    font-size: 2rem;
  }

  .industries-section .section-header p,
  .partners-section .section-header p,
  .team-section .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .industry-item {
    padding: 25px 15px;
  }

  .industry-item h3 {
    font-size: 1.1rem;
  }

  .industry-item p {
    font-size: 0.85rem;
  }

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

  .partner-card {
    padding: 20px;
    min-height: 120px;
  }

  .partner-card img {
    max-height: 80px;
  }

  .contact-form-side {
    width: 100% !important;
    max-width: 100% !important;
    padding: 25px 15px !important;
  }

  .contact-form {
    width: 100% !important;
  }
}

/* Contact Us Section */
.contact-us-section {
  padding: 80px 24px;
  background: #f5f5f5;
}

.contact-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Contact Information */
.contact-info-side {
  padding: 40px 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #808080;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-detail-item span {
  font-size: 1rem;
  color: #333;
}

/* Right Side - Contact Form */
.contact-form-side {
  background: #fafafa;
  padding: 40px;
  border-radius: 8px;
}

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

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Montserrat';
  font-size: 0.95rem;
  color: #333;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 0, 0.1);
}

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

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

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #ff6a00 100%);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 6px;
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

/* Responsive Design for Contact Us */
@media (max-width: 1024px) {
  .contact-us-container {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .contact-info-side {
    order: -1;
  }

  .contact-form-side {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

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

  .contact-form-side {
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 20px;
    order: 1 !important;
  }

  .contact-form {
    width: 100% !important;
  }

  .contact-info-side {
    order: -1 !important;
  }
}

@media (max-width: 480px) {
  .contact-form-side {
    order: 1 !important;
  }

  .contact-info-side {
    order: -1 !important;
  }
}