/* Dark Theme & Coffee Accent Redesign */
:root {
  --primary: #1a1a1a; /* Darker background */
  --secondary: #181818; /* Slightly lighter dark */
  --accent: #7a5c38; /* Coffee color */
  --text-dark: #f5f5f5;
  --text-light: #b0a89f;
  --white: #fff;
  --gold: #B8860B; /* Golden/bronze color for navigation */
  --nav-bg: #282828; /* Dark navigation background */
  --nav-active-bg: #3D3D3D; /* Active tab background */
  --navbar-height: 70px;
  --dropdown-bg: #2a2a2a;
  --dropdown-hover: #3a3a3a;
}

/* Ensure html and body take full width */
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #1a1a1a;
  color: #f5f5f5;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
  padding-top: 0; /* Remove padding to match original layout */
}

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









.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  background: #1e456e;
}

/* Footer */
footer {
  padding: 2rem 0;
  background: var(--secondary);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Homepage Specific Styles */
.services-overview {
  padding: 80px 0;
  background: var(--primary);
}

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

.service-card {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(122, 92, 56, 0.2);
  transition: all 0.4s 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(122, 92, 56, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(122, 92, 56, 0.4);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7a5c38, #bfa77a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(122, 92, 56, 0.4);
}

.service-card h3 {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  display: inline-block;
  background: linear-gradient(135deg, #7a5c38, #bfa77a);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-link:hover {
  background: linear-gradient(135deg, #bfa77a, #7a5c38);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(122, 92, 56, 0.3);
}

.about-section {
  padding: 80px 0;
  background: var(--secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 50px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
  will-change: opacity;
  transform: translateZ(0);
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 100px;
  left: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  max-width: 500px;
  border-radius: 10px;
}

/* Catalog Slider */
.catalog-section {
  padding: 50px 0;
}

.catalog-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}

.catalog-item {
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.catalog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.catalog-info {
  padding: 20px;
}

/* Registration CTA */
.registration-cta {
  background: var(--secondary);
  padding: 50px 0;
  text-align: center;
}

/* Repair & Construction Work Page CSS */
.posts-container {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.post-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

/* Cook Medical Page CSS */
/* Info Slider */
.info-slider {
  padding: 50px 0;
}

.info-slide {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}

/* Product Catalog */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

/* Registration Form */
.registration-form {
  background: var(--secondary);
  padding: 50px;
  border-radius: 10px;
  max-width: 800px;
  margin: 50px auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

/* IT Technology Page CSS */
.project-showcase {
  padding: 50px 0;
  background: #1a1a1a;
}

.project-slider {
  margin: 40px 0;
}

.project-slide {
  background: linear-gradient(145deg, #1a1a1a 0%, #232323 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  will-change: transform;
  transform: translateZ(0);
}

.project-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(122, 92, 56, 0.3);
}

.project-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(122, 92, 56, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.project-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.project-slide:hover .project-image {
  transform: scale(1.02);
}

.project-details {
  padding: 32px 28px;
  background: linear-gradient(145deg, 
    rgba(45, 45, 45, 0.98) 0%, 
    rgba(35, 35, 35, 0.99) 50%, 
    rgba(30, 30, 30, 1) 100%);
  position: relative;
  z-index: 3;
  border-top: 2px solid rgba(122, 92, 56, 0.3);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Simplified corner accent for better readability */
.project-details::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent rgba(122, 92, 56, 0.2) transparent transparent;
  transition: all 0.3s ease;
  z-index: 2;
}

.project-slide:hover .project-details::before {
  border-width: 0 40px 40px 0;
  border-color: transparent rgba(122, 92, 56, 0.4) transparent transparent;
}

/* Subtle background overlay */
.project-details::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(122, 92, 56, 0.02) 0%, 
    transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Simplified floating particles - reduced opacity for better readability */
.project-details .particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.project-details .particle {
  position: absolute;
  width: 1.5px;
  height: 1.5px;
  background: rgba(122, 92, 56, 0.2);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.project-details .particle:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.project-details .particle:nth-child(2) {
  top: 70%;
  left: 85%;
  animation-delay: 3s;
}

.project-details .particle:nth-child(3) {
  top: 85%;
  left: 25%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-15px) scale(1.1);
    opacity: 0.4;
  }
}

.project-slide:hover .project-details {
  background: linear-gradient(145deg, 
    rgba(50, 50, 50, 0.98) 0%, 
    rgba(40, 40, 40, 0.99) 50%, 
    rgba(35, 35, 35, 1) 100%);
  border-top-color: rgba(122, 92, 56, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Enhanced typography for better readability */
.project-details h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.project-details h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(122, 92, 56, 0.8) 0%, 
    rgba(122, 92, 56, 0.4) 100%);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.project-slide:hover .project-details h3::after {
  width: 50px;
}

.project-slide:hover .project-details h3 {
  color: #f8f8f8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Improved paragraph styling for better readability */
.project-details p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 18px;
  transition: all 0.3s ease;
}

.project-details p::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(122, 92, 56, 0.7);
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.project-slide:hover .project-details p {
  color: #f0f0f0;
}

.project-slide:hover .project-details p::before {
  color: rgba(122, 92, 56, 0.9);
  transform: scale(1.1);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.tech-tag {
  background: linear-gradient(135deg, #6b4f2f 0%, #7a5c38 50%, #8b6b42 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(122, 92, 56, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tech-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.4s ease;
}

.tech-tag:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 16px rgba(122, 92, 56, 0.35);
  background: linear-gradient(135deg, #7a5c38 0%, #8b6b42 50%, #9a7a4d 100%);
  color: #f8f8f8;
}

.tech-tag:hover::before {
  left: 100%;
}

/* Contact Page CSS */
.contact-section {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.creator-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.creator-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* News Slider (News Page) */
.news-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 50px;
}

.news-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
}

.news-slide.active {
  opacity: 1;
  z-index: 1;
}

.news-slide-content {
  position: absolute;
  bottom: 100px;
  left: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  max-width: 500px;
  border-radius: 10px;
}

/* Info Post (News Page) */
.info-post {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.info-post-image {
  min-width: 350px;
  background-size: cover;
  background-position: center;
  height: 300px;
}
.info-post-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .info-post {
    flex-direction: column;
    max-width: 100%;
  }
  .info-post-image {
    min-width: 100%;
    height: 200px;
  }
}

/* Independent Sliders (News Page) */
.independent-slider {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  height: 400px;
}
.independent-slide-group {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}
.independent-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(40px) scale(1.02);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.independent-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}
.independent-slide-content {
  position: relative;
  z-index: 2;
  margin-right: 100px; /* Prevent overlap with right arrow */
  margin-left: 0;      /* Prevent overlap with left arrow */
  background: rgba(255,255,255,0.92);
  padding: 40px 30px;
  margin: 30px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .independent-slider {
    height: 250px;
  }
  .independent-slide {
    height: 250px;
  }
  .independent-slide-content {
    padding: 20px 12px;
    margin: 12px;
    max-width: 95vw;
  }
}

  
  .slide-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  
  .posts-container, .product-grid {
    grid-template-columns: 1fr;
  }
  
  .registration-form {
    padding: 30px 20px;
  }
} 

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 4px 16px rgba(42,92,130,0.12);
  outline: none;
  border: 2px solid rgba(42,92,130,0.12);
}
.slider-nav span, .slider-nav svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-nav-left {
  left: 24px;
}
.slider-nav-right {
  right: 24px;
}
.slider-nav:hover, .slider-nav:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(42,92,130,0.18);
  border-color: var(--primary);
}
@media (max-width: 900px) {
  .slider-nav {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .slider-nav-left {
    left: 6px;
  }
  .slider-nav-right {
    right: 6px;
  }
} 

.slide-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  z-index: 1;
} 

/* Vertical Parallax Slider Styles */
.vertical-parallax-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.vertical-slide-group {
  position: relative;
  width: 100%;
  height: 100%;
}
.vertical-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0;
  transform: translateY(60px) scale(1.05);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Move content to the left */
  z-index: 0;
}
.vertical-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}
.vertical-slide-content {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 48px 40px;
  max-width: 420px;
  margin-left: 60px;
  margin-right: auto;
  text-align: left;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vertical-slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1a2233;
}
.vertical-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #222b3a;
}
.vertical-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.80);
  color: var(--primary, #2a5c82);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(42,92,130,0.10);
  outline: none;
  border: 1.5px solid rgba(42,92,130,0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, border 0.18s;
  opacity: 0.92;
}
.vertical-slider-nav-left {
  left: 16px;
}
.vertical-slider-nav-right {
  right: 16px;
}
.vertical-slider-nav:hover, .vertical-slider-nav:focus {
  background: var(--primary, #2a5c82);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,92,130,0.16);
  border-color: var(--primary, #2a5c82);
  opacity: 1;
}
@media (max-width: 900px) {
  .vertical-parallax-slider {
    height: 60vh;
    border-radius: 12px;
  }
  .vertical-slide-content {
    padding: 24px 10px;
    max-width: 95vw;
    margin-left: 10px;
    border-radius: 14px;
  }
  .vertical-slide-content h2 {
    font-size: 1.5rem;
  }
  .vertical-slide-content p {
    font-size: 1rem;
  }
  .vertical-slider-nav {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .vertical-slider-nav-left {
    left: 4px;
  }
  .vertical-slider-nav-right {
    right: 4px;
  }
} 

.container > h1 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  position: relative;
  padding-left: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}
.container > h1::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 3rem;
  background: linear-gradient(135deg, #4fc3f7 0%, #2a5c82 50%, #4fc3f7 100%);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
  animation: accentPulse 2s ease-in-out infinite;
}
.container > p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e8f4fd;
  margin-bottom: 3rem;
  margin-left: 1rem;
  max-width: 700px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid rgba(79, 195, 247, 0.3);
  transition: all 0.3s ease;
}
.container > p:hover {
  color: #ffffff;
  border-left-color: rgba(79, 195, 247, 0.8);
  transform: translateX(5px);
}
@media (max-width: 900px) {
  .container > h1 {
    font-size: 2.5rem;
    padding-left: 1rem;
    letter-spacing: -1px;
  }
  .container > h1::before {
    width: 6px;
    height: 2rem;
  }
  .container > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
} 

/* Checkerboard Layout Styles */
.checkerboard-slider-container {
  position: relative;
  margin: 40px 0;
  background: #7a5c38; /* Coffee color background */
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(122, 92, 56, 0.3);
}

.checkerboard-section {
  display: none;
  background: #7a5c38; /* Coffee color for slides */
  border-radius: 12px;
  overflow: hidden;
}

.checkerboard-section.active {
  display: block;
}

.checkerboard-content {
  display: flex;
  align-items: stretch;
  min-height: 400px;
  background: #7a5c38; /* Coffee color background */
}

.image-side {
  flex: 1;
  background: #7a5c38; /* Coffee color background */
  position: relative;
  overflow: hidden;
}

.text-side {
  flex: 1;
  background: #7a5c38; /* Coffee color background */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff; /* White text for contrast */
}

.text-side h2 {
  color: #fff; /* White text for contrast */
  margin-bottom: 20px;
  font-weight: 700;
}

.text-side p {
  color: #f5f5f5; /* Light text for contrast */
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.text-side ul {
  color: #f5f5f5; /* Light text for contrast */
  margin-bottom: 30px;
}

.text-side ul li {
  color: #f5f5f5; /* Light text for contrast */
  font-weight: 500;
}

.text-side .btn {
  align-self: flex-start;
  background: #fff;
  color: #7a5c38;
}

.text-side .btn:hover {
  background: #f5f5f5;
  color: #5a4328;
}

/* Responsive Design */
@media (max-width: 1600px) {
  .checkerboard-content {
    max-width: 98vw;
    gap: 60px;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .checkerboard-content {
    flex-direction: column;
    gap: 40px;
    max-width: 100vw;
    padding: 0 5px;
  }
  .image-side,
  .text-side {
    max-width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .text-side h2 {
    font-size: 2rem;
  }
} 

.checkerboard-slider-container {
  position: relative;
  max-width: 1700px;
  margin: 0 auto 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.checkerboard-slider-track {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 520px;
  height: 520px;
  transition: height 0.3s;
}

.checkerboard-section.checkerboard-slide {
  min-height: 520px;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.checkerboard-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.checkerboard-slide.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
  animation: fadeIn 0.5s;
}

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

.checkerboard-slider-nav {
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: box-shadow 0.2s;
  margin: 0;
}

.checkerboard-slider-nav-left {
  left: 24px;
}

.checkerboard-slider-nav-right {
  right: 24px;
}

.checkerboard-slider-nav:active,
.checkerboard-slider-nav:focus {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.checkerboard-slider-nav svg {
  display: block;
  color: #007bff;
}

@media (max-width: 1200px) {
  .checkerboard-slider-container {
    max-width: 100vw;
  }
  .checkerboard-slider-nav-left {
    left: 8px;
  }
  .checkerboard-slider-nav-right {
    right: 8px;
  }
  .checkerboard-slider-track,
  .checkerboard-section.checkerboard-slide {
    min-height: 400px;
    height: 400px;
  }
  .checkerboard-content {
    gap: 40px;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .checkerboard-slider-nav {
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .checkerboard-slider-container {
    margin-bottom: 30px;
  }
  .checkerboard-slider-nav-left {
    left: 2px;
  }
  .checkerboard-slider-nav-right {
    right: 2px;
  }
  .checkerboard-slider-track,
  .checkerboard-section.checkerboard-slide {
    min-height: 320px;
    height: 320px;
  }
  .checkerboard-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 5px;
  }
  .image-side, .text-side {
    max-width: 100%;
    height: auto;
    padding: 20px 0;
  }
} 

/* Reset & Base Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background: #232323;
  color: #f5f5f5;
  min-height: 100vh;
}
.repair-page {
  background: #232323;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: #181818;
  overflow: hidden;
}
.hero-collage {
  display: flex;
  width: 100vw;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-sector {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
  cursor: pointer;
}
.hero-sector img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.7);
  transition: transform 0.5s, filter 0.4s;
}
.hero-sector:hover {
  flex: 2;
  z-index: 2;
}
.hero-sector:hover img {
  transform: scale(1.08) rotate(-1deg);
  filter: grayscale(0) brightness(0.9) saturate(1.2);
}
.hero-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(34,34,34,0.7);
  color: #00FFE0;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 6px 18px;
  border-radius: 8px;
  letter-spacing: 1px;
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 3;
  margin-top: 340px;
  text-align: center;
  background: rgba(34,34,34,0.92);
  padding: 32px 24px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.hero-text p {
  font-size: 1.1rem;
  color: #b0f7f3;
  margin-bottom: 22px;
}
.cta-btn {
  background: #7a5c38;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 12px #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: #5a4328;
  color: #fff;
  box-shadow: 0 4px 24px #fff;
}

/* Who We Are - Redesigned */
.who-we-are-section {
  background: #1a1a1a;
  padding: 40px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.who-we-are-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  opacity: 0.03;
  pointer-events: none;
}

.who-we-are-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.who-we-are-header {
  text-align: center;
  margin-bottom: 30px;
}

.header-accent {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.accent-icon {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.section-title {
  color: #7a5c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  border-radius: 2px;
}

/* Apply section-title styling to catalog-main-title */
.catalog-main-title {
  color: #7a5c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  text-align: center;
  position: relative;
}

.catalog-main-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  border-radius: 2px;
}

/* Apply section-title styling to contact page h2 */
.contact-section h2 {
  color: #7a5c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  text-align: center;
  position: relative;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  border-radius: 2px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.who-we-are-content {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  padding: 48px 40px;
  border: 1px solid rgba(122, 92, 56, 0.1);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.mission-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-title {
  color: #7a5c38;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.mission-text {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.company-name {
  color: #bfa77a;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(191, 167, 122, 0.3);
}

.values-highlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(122, 92, 56, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(122, 92, 56, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(122, 92, 56, 0.1);
  border-color: rgba(122, 92, 56, 0.3);
  transform: translateX(8px);
}

.value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(122, 92, 56, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: rgba(122, 92, 56, 0.2);
  transform: scale(1.1);
}

.value-text h4 {
  color: #7a5c38;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.value-text p {
  color: #b0a89f;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.expertise-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.expertise-badge {
  background: linear-gradient(135deg, #7a5c38 0%, #bfa77a 100%);
  color: #232323;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(122, 92, 56, 0.3);
}

.expertise-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 92, 56, 0.4);
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .catalog-main-title {
    font-size: 2rem;
  }
  
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .mission-title {
    font-size: 1.5rem;
  }
  
  .who-we-are-content {
    padding: 32px 24px;
  }
  
  .expertise-badges {
    gap: 12px;
  }
  
  .expertise-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}

/* Sector Highlights */
.sector-highlights-section {
  background: #1a1a1a;
  padding: 56px 0 32px 0;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.sector-card {
  background: #181818;
  border-radius: 20px;
  box-shadow: 0 4px 24px #0007;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  padding: 8px;
}
.sector-card:hover {
  box-shadow: 0 8px 32px #7a5c38;
  transform: translateY(-6px) scale(1.03);
}
.sector-icon {
  margin-top: 32px;
  margin-bottom: 16px;
}
.sector-media {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #222;
  margin-bottom: 16px;
}
.sector-img, .sector-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: opacity 0.4s;
}
.sector-video {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
}
.sector-card:hover .sector-img {
  opacity: 0;
}
.sector-card:hover .sector-video {
  opacity: 1;
  pointer-events: auto;
}
.sector-info {
  padding: 0 24px 32px 24px;
  text-align: center;
}
.sector-info h3 {
  color: #7a5c38;
  margin-bottom: 12px;
  font-size: 1.32rem;
}
.learn-more {
  color: #ffffff;
  background: linear-gradient(135deg, #7a5c38 0%, #8b6b42 50%, #7a5c38 100%);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid #7a5c38;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(122, 92, 56, 0.3);
  font-family: 'Inter', sans-serif;
}

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

.learn-more:hover {
  background: linear-gradient(135deg, #8b6b42 0%, #9a7a4e 50%, #8b6b42 100%);
  border-color: #8b6b42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 92, 56, 0.4);
  color: #ffffff;
}

.learn-more:hover::before {
  left: 100%;
}

.learn-more:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(122, 92, 56, 0.3);
}

/* Testimonial Bar */
.testimonial-bar-section {
  background: #1a1a1a;
  padding: 48px 0 32px 0;
  text-align: center;
}
.testimonial-bar-section h2 {
  color: #7a5c38;
  margin-bottom: 24px;
}
.testimonial-bar {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: #7a5c38 #232323;
}
.testimonial-thumb, .testimonial-static {
  background: #232323;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0006;
  min-width: 120px;
  max-width: 140px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 12px 8px 8px 8px;
}
.testimonial-thumb:hover {
  box-shadow: 0 4px 24px #7a5c38;
  transform: scale(1.05);
}
.testimonial-thumb img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 8px;
  object-fit: cover;
  border: 2px solid #7a5c38;
}
.testimonial-thumb span {
  color: #7a5c38;
  font-size: 1rem;
  font-weight: 500;
}
.testimonial-static img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}

/* Testimonial Modal */
.testimonial-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,20,20,0.92);
  align-items: center;
  justify-content: center;
}
.testimonial-modal.active {
  display: flex;
}
.testimonial-modal-content {
  background: #232323;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px #fff;
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#testimonialVideo {
  width: 400px;
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 12px;
  background: #000;
}
.close-modal {
  position: absolute;
  top: 8px; right: 16px;
  font-size: 2rem;
  color: #7a5c38;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #fff;
}

/* Footer */
.footer-industrial {
  background: #181818;
  color: #b0a89f;
  padding: 0;
  margin-top: 32px;
  border-top: 2px solid #7a5c38;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 8vw 16px 8vw;
  gap: 32px;
}
.footer-contact {
  flex: 1 1 320px;
  min-width: 260px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  background: #232323;
  border: 1.5px solid #7a5c38;
  color: #f5f5f5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #b0a89f;
}
.contact-form button {
  margin-top: 8px;
}
.footer-social-proof {
  flex: 1 1 220px;
  min-width: 180px;
  text-align: center;
}
.footer-social-proof h4 {
  color: #7a5c38;
  margin-bottom: 12px;
}
.client-logos {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.client-logos img {
  height: 38px;
  width: auto;
  filter: grayscale(1) brightness(1.1) sepia(0.2);
  opacity: 0.8;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logos img:hover {
  filter: grayscale(0) brightness(1.1) sepia(0.2);
  opacity: 1;
}
.footer-cta {
  background: #232323;
  text-align: center;
  padding: 24px 0 16px 0;
  border-top: 1.5px solid #7a5c38;
}
.footer-cta span {
  color: #b0a89f;
  font-size: 1.2rem;
  margin-right: 18px;
}
.footer-cta .cta-btn {
  font-size: 1.1rem;
  padding: 10px 28px;
}
.footer-cta .cta-btn:hover {
  background: #5a4328;
}
.footer-bottom {
  text-align: center;
  color: #7a5c38;
  font-size: 0.98rem;
  padding: 12px 0 8px 0;
  background: #181818;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .hero-collage {
    height: 180px;
  }
  .hero-text {
    margin-top: 200px;
    padding: 18px 8px 16px 8px;
  }
  .who-we-are-section {
    padding: 60px 0 40px 0;
  }
  .who-we-are-content {
    padding: 32px 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .catalog-main-title {
    font-size: 1.8rem;
  }
  .contact-section h2 {
    font-size: 1.8rem;
  }
  .mission-title {
    font-size: 1.4rem;
  }
  .value-item {
    padding: 12px 16px;
  }
  .value-icon {
    width: 40px;
    height: 40px;
  }
  .sector-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #testimonialVideo {
    width: 90vw;
  }
} 

/* Draggable Slider Styles */
.slider-container {
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.slider {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  height: 400px;
}

.slider.dragging {
  transition: none;
  cursor: grabbing;
}

.slide {
  min-width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-size: cover;
  background-position: center;
  user-select: none;
  position: relative;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 80%;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #7a5c38;
  transform: scale(1.2);
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .slider-container {
    width: 95%;
  }
  
  .slider {
    height: 300px;
  }
  
  .slide {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .slider {
    height: 250px;
  }
  
  .slide {
    height: 250px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
} 

/* Nordic Countries Slider Styles */
  .nordic-slider-container {
  width: 76%; /* Reduced from 95% to 76% (95% * 0.8) */
  max-width: 1440px; /* Reduced from 1800px to 1440px (1800px * 0.8) */
  margin: 32px auto; /* Reduced from 40px to 32px (40px * 0.8) */
  position: relative;
  overflow: visible;
  border-radius: 13px; /* Reduced from 16px to 13px (16px * 0.8) */
  box-shadow: 0 6px 26px rgba(0,0,0,0.3); /* Reduced shadow */
  background: #1a1a1a;
  padding: 24px 0; /* Reduced from 30px to 24px (30px * 0.8) */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.nordic-slider-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  opacity: 0.03;
  pointer-events: none;
  border-radius: 13px; /* Reduced from 16px to 13px (16px * 0.8) */
}

.nordic-slider {
  display: flex;
  height: 560px; /* Reduced from 700px to 560px (700px * 0.8) */
  transition: transform 0.3s ease-out;
  gap: 20px; /* Reduced from 25px to 20px (25px * 0.8) */
  padding: 0 20px; /* Reduced from 25px to 20px (25px * 0.8) */
}

.nordic-slide {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px; /* Reduced from 12px to 10px (12px * 0.8) */
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.15s ease-out, filter 0.15s ease-out, flex 0.15s ease-out;
  will-change: transform, filter, flex;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  border: 2px solid transparent;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Removed gold border glow effect */

.nordic-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  z-index: 1;
  transition: background 0.15s ease-out;
}

.nordic-slide:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.2));
}

/* Enhanced image visibility on hover */
.nordic-slide:hover {
  background-size: cover;
  filter: brightness(1.05) saturate(1.05);
}

.nordic-slide.active {
  flex: 2.2;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
}

.nordic-slide.active:hover {
  flex: 2.5;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  background-size: cover;
}

.nordic-slide.hover-active {
  flex: 2.5;
  transform: scale(1.02);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  filter: brightness(1.05) saturate(1.05);
}

.nordic-slide.hover-active:hover {
  flex: 2.5;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  background-size: cover;
}

.nordic-slide:not(.active) {
  flex: 1;
  filter: brightness(0.7) saturate(0.9);
  transform: scale(0.98);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nordic-slide:not(.active):hover {
  flex: 2.5;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  background-size: cover;
}

/* Simplified floating particles - reduced opacity for better readability */
.project-details .particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.project-details .particle {
  position: absolute;
  width: 1.5px;
  height: 1.5px;
  background: rgba(122, 92, 56, 0.2);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.project-details .particle:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.project-details .particle:nth-child(2) {
  top: 70%;
  left: 85%;
  animation-delay: 3s;
}

.project-details .particle:nth-child(3) {
  top: 85%;
  left: 25%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-15px) scale(1.1);
    opacity: 0.4;
  }
}

.project-slide:hover .project-details {
  background: linear-gradient(145deg, 
    rgba(50, 50, 50, 0.98) 0%, 
    rgba(40, 40, 40, 0.99) 50%, 
    rgba(35, 35, 35, 1) 100%);
  border-top-color: rgba(122, 92, 56, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Enhanced typography for better readability */
.project-details h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.project-details h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(122, 92, 56, 0.8) 0%, 
    rgba(122, 92, 56, 0.4) 100%);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.project-slide:hover .project-details h3::after {
  width: 50px;
}

.project-slide:hover .project-details h3 {
  color: #f8f8f8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Improved paragraph styling for better readability */
.project-details p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 18px;
  transition: all 0.3s ease;
}

.project-details p::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(122, 92, 56, 0.7);
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.project-slide:hover .project-details p {
  color: #f0f0f0;
}

.project-slide:hover .project-details p::before {
  color: rgba(122, 92, 56, 0.9);
  transform: scale(1.1);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.tech-tag {
  background: linear-gradient(135deg, #6b4f2f 0%, #7a5c38 50%, #8b6b42 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(122, 92, 56, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tech-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.4s ease;
}

.tech-tag:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 16px rgba(122, 92, 56, 0.35);
  background: linear-gradient(135deg, #7a5c38 0%, #8b6b42 50%, #9a7a4d 100%);
  color: #f8f8f8;
}

.tech-tag:hover::before {
  left: 100%;
}

/* Contact Page CSS */
.contact-section {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.creator-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.creator-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* News Slider (News Page) */
.news-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 50px;
}

.news-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
}

.news-slide.active {
  opacity: 1;
  z-index: 1;
}

.news-slide-content {
  position: absolute;
  bottom: 100px;
  left: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  max-width: 500px;
  border-radius: 10px;
}

/* Info Post (News Page) */
.info-post {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.info-post-image {
  min-width: 350px;
  background-size: cover;
  background-position: center;
  height: 300px;
}
.info-post-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .info-post {
    flex-direction: column;
    max-width: 100%;
  }
  .info-post-image {
    min-width: 100%;
    height: 200px;
  }
}

/* Independent Sliders (News Page) */
.independent-slider {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  height: 400px;
}
.independent-slide-group {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}
.independent-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(40px) scale(1.02);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.independent-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}
.independent-slide-content {
  position: relative;
  z-index: 2;
  margin-right: 100px; /* Prevent overlap with right arrow */
  margin-left: 0;      /* Prevent overlap with left arrow */
  background: rgba(255,255,255,0.92);
  padding: 40px 30px;
  margin: 30px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .independent-slider {
    height: 250px;
  }
  .independent-slide {
    height: 250px;
  }
  .independent-slide-content {
    padding: 20px 12px;
    margin: 12px;
    max-width: 95vw;
  }
}

  
  .slide-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  
  .posts-container, .product-grid {
    grid-template-columns: 1fr;
  }
  
  .registration-form {
    padding: 30px 20px;
  }
} 

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 4px 16px rgba(42,92,130,0.12);
  outline: none;
  border: 2px solid rgba(42,92,130,0.12);
}
.slider-nav span, .slider-nav svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-nav-left {
  left: 24px;
}
.slider-nav-right {
  right: 24px;
}
.slider-nav:hover, .slider-nav:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(42,92,130,0.18);
  border-color: var(--primary);
}
@media (max-width: 900px) {
  .slider-nav {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .slider-nav-left {
    left: 6px;
  }
  .slider-nav-right {
    right: 6px;
  }
} 

.slide-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  z-index: 1;
} 

/* Vertical Parallax Slider Styles */
.vertical-parallax-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.vertical-slide-group {
  position: relative;
  width: 100%;
  height: 100%;
}
.vertical-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0;
  transform: translateY(60px) scale(1.05);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Move content to the left */
  z-index: 0;
}
.vertical-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}
.vertical-slide-content {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 48px 40px;
  max-width: 420px;
  margin-left: 60px;
  margin-right: auto;
  text-align: left;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vertical-slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1a2233;
}
.vertical-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #222b3a;
}
.vertical-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.80);
  color: var(--primary, #2a5c82);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(42,92,130,0.10);
  outline: none;
  border: 1.5px solid rgba(42,92,130,0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, border 0.18s;
  opacity: 0.92;
}
.vertical-slider-nav-left {
  left: 16px;
}
.vertical-slider-nav-right {
  right: 16px;
}
.vertical-slider-nav:hover, .vertical-slider-nav:focus {
  background: var(--primary, #2a5c82);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,92,130,0.16);
  border-color: var(--primary, #2a5c82);
  opacity: 1;
}
@media (max-width: 900px) {
  .vertical-parallax-slider {
    height: 60vh;
    border-radius: 12px;
  }
  .vertical-slide-content {
    padding: 24px 10px;
    max-width: 95vw;
    margin-left: 10px;
    border-radius: 14px;
  }
  .vertical-slide-content h2 {
    font-size: 1.5rem;
  }
  .vertical-slide-content p {
    font-size: 1rem;
  }
  .vertical-slider-nav {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .vertical-slider-nav-left {
    left: 4px;
  }
  .vertical-slider-nav-right {
    right: 4px;
  }
} 

.container > h1 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  position: relative;
  padding-left: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}
.container > h1::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 3rem;
  background: linear-gradient(135deg, #4fc3f7 0%, #2a5c82 50%, #4fc3f7 100%);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
  animation: accentPulse 2s ease-in-out infinite;
}
.container > p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e8f4fd;
  margin-bottom: 3rem;
  margin-left: 1rem;
  max-width: 700px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid rgba(79, 195, 247, 0.3);
  transition: all 0.3s ease;
}
.container > p:hover {
  color: #ffffff;
  border-left-color: rgba(79, 195, 247, 0.8);
  transform: translateX(5px);
}
@media (max-width: 900px) {
  .container > h1 {
    font-size: 2.5rem;
    padding-left: 1rem;
    letter-spacing: -1px;
  }
  .container > h1::before {
    width: 6px;
    height: 2rem;
  }
  .container > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
} 

/* Checkerboard Layout Styles */
.checkerboard-slider-container {
  position: relative;
  margin: 40px 0;
  background: #7a5c38; /* Coffee color background */
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(122, 92, 56, 0.3);
}

.checkerboard-section {
  display: none;
  background: #7a5c38; /* Coffee color for slides */
  border-radius: 12px;
  overflow: hidden;
}

.checkerboard-section.active {
  display: block;
}

.checkerboard-content {
  display: flex;
  align-items: stretch;
  min-height: 400px;
  background: #7a5c38; /* Coffee color background */
}

.image-side {
  flex: 1;
  background: #7a5c38; /* Coffee color background */
  position: relative;
  overflow: hidden;
}

.text-side {
  flex: 1;
  background: #7a5c38; /* Coffee color background */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff; /* White text for contrast */
}

.text-side h2 {
  color: #fff; /* White text for contrast */
  margin-bottom: 20px;
  font-weight: 700;
}

.text-side p {
  color: #f5f5f5; /* Light text for contrast */
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.text-side ul {
  color: #f5f5f5; /* Light text for contrast */
  margin-bottom: 30px;
}

.text-side ul li {
  color: #f5f5f5; /* Light text for contrast */
  font-weight: 500;
}

.text-side .btn {
  align-self: flex-start;
  background: #fff;
  color: #7a5c38;
}

.text-side .btn:hover {
  background: #f5f5f5;
  color: #5a4328;
}

/* Responsive Design */
@media (max-width: 1600px) {
  .checkerboard-content {
    max-width: 98vw;
    gap: 60px;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .checkerboard-content {
    flex-direction: column;
    gap: 40px;
    max-width: 100vw;
    padding: 0 5px;
  }
  .image-side,
  .text-side {
    max-width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .text-side h2 {
    font-size: 2rem;
  }
} 

.checkerboard-slider-container {
  position: relative;
  max-width: 1700px;
  margin: 0 auto 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.checkerboard-slider-track {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 520px;
  height: 520px;
  transition: height 0.3s;
}

.checkerboard-section.checkerboard-slide {
  min-height: 520px;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.checkerboard-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.checkerboard-slide.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
  animation: fadeIn 0.5s;
}

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

.checkerboard-slider-nav {
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: box-shadow 0.2s;
  margin: 0;
}

.checkerboard-slider-nav-left {
  left: 24px;
}

.checkerboard-slider-nav-right {
  right: 24px;
}

.checkerboard-slider-nav:active,
.checkerboard-slider-nav:focus {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.checkerboard-slider-nav svg {
  display: block;
  color: #007bff;
}

@media (max-width: 1200px) {
  .checkerboard-slider-container {
    max-width: 100vw;
  }
  .checkerboard-slider-nav-left {
    left: 8px;
  }
  .checkerboard-slider-nav-right {
    right: 8px;
  }
  .checkerboard-slider-track,
  .checkerboard-section.checkerboard-slide {
    min-height: 400px;
    height: 400px;
  }
  .checkerboard-content {
    gap: 40px;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .checkerboard-slider-nav {
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .checkerboard-slider-container {
    margin-bottom: 30px;
  }
  .checkerboard-slider-nav-left {
    left: 2px;
  }
  .checkerboard-slider-nav-right {
    right: 2px;
  }
  .checkerboard-slider-track,
  .checkerboard-section.checkerboard-slide {
    min-height: 320px;
    height: 320px;
  }
  .checkerboard-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 5px;
  }
  .image-side, .text-side {
    max-width: 100%;
    height: auto;
    padding: 20px 0;
  }
} 

/* Reset & Base Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background: #232323;
  color: #f5f5f5;
  min-height: 100vh;
}
.repair-page {
  background: #232323;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: #181818;
  overflow: hidden;
}
.hero-collage {
  display: flex;
  width: 100vw;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-sector {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
  cursor: pointer;
}
.hero-sector img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.7);
  transition: transform 0.5s, filter 0.4s;
}
.hero-sector:hover {
  flex: 2;
  z-index: 2;
}
.hero-sector:hover img {
  transform: scale(1.08) rotate(-1deg);
  filter: grayscale(0) brightness(0.9) saturate(1.2);
}
.hero-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(34,34,34,0.7);
  color: #00FFE0;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 6px 18px;
  border-radius: 8px;
  letter-spacing: 1px;
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 3;
  margin-top: 340px;
  text-align: center;
  background: rgba(34,34,34,0.92);
  padding: 32px 24px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.hero-text p {
  font-size: 1.1rem;
  color: #b0f7f3;
  margin-bottom: 22px;
}
.cta-btn {
  background: #7a5c38;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 12px #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: #5a4328;
  color: #fff;
  box-shadow: 0 4px 24px #fff;
}

/* Who We Are - Redesigned */
.who-we-are-section {
  background: #1a1a1a;
  padding: 40px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.who-we-are-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  opacity: 0.03;
  pointer-events: none;
}

.who-we-are-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.who-we-are-header {
  text-align: center;
  margin-bottom: 30px;
}

.header-accent {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.accent-icon {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.section-title {
  color: #7a5c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  border-radius: 2px;
}

/* Apply section-title styling to catalog-main-title */
.catalog-main-title {
  color: #7a5c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  text-align: center;
  position: relative;
}

.catalog-main-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  border-radius: 2px;
}

/* Apply section-title styling to contact page h2 */
.contact-section h2 {
  color: #7a5c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  text-align: center;
  position: relative;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  border-radius: 2px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a5c38 0%, #bfa77a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.who-we-are-content {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  padding: 48px 40px;
  border: 1px solid rgba(122, 92, 56, 0.1);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.mission-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-title {
  color: #7a5c38;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.mission-text {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.company-name {
  color: #bfa77a;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(191, 167, 122, 0.3);
}

.values-highlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(122, 92, 56, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(122, 92, 56, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(122, 92, 56, 0.1);
  border-color: rgba(122, 92, 56, 0.3);
  transform: translateX(8px);
}

.value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(122, 92, 56, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: rgba(122, 92, 56, 0.2);
  transform: scale(1.1);
}

.value-text h4 {
  color: #7a5c38;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.value-text p {
  color: #b0a89f;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.expertise-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.expertise-badge {
  background: linear-gradient(135deg, #7a5c38 0%, #bfa77a 100%);
  color: #232323;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(122, 92, 56, 0.3);
}

.expertise-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 92, 56, 0.4);
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .catalog-main-title {
    font-size: 2rem;
  }
  
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .mission-title {
    font-size: 1.5rem;
  }
  
  .who-we-are-content {
    padding: 32px 24px;
  }
  
  .expertise-badges {
    gap: 12px;
  }
  
  .expertise-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}

/* Sector Highlights */
.sector-highlights-section {
  background: #1a1a1a;
  padding: 56px 0 32px 0;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.sector-card {
  background: #181818;
  border-radius: 20px;
  box-shadow: 0 4px 24px #0007;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  padding: 8px;
}
.sector-card:hover {
  box-shadow: 0 8px 32px #7a5c38;
  transform: translateY(-6px) scale(1.03);
}
.sector-icon {
  margin-top: 32px;
  margin-bottom: 16px;
}
.sector-media {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #222;
  margin-bottom: 16px;
}
.sector-img, .sector-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: opacity 0.4s;
}
.sector-video {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
}
.sector-card:hover .sector-img {
  opacity: 0;
}
.sector-card:hover .sector-video {
  opacity: 1;
  pointer-events: auto;
}
.sector-info {
  padding: 0 24px 32px 24px;
  text-align: center;
}
.sector-info h3 {
  color: #7a5c38;
  margin-bottom: 12px;
  font-size: 1.32rem;
}
.learn-more {
  color: #ffffff;
  background: linear-gradient(135deg, #7a5c38 0%, #8b6b42 50%, #7a5c38 100%);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid #7a5c38;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(122, 92, 56, 0.3);
  font-family: 'Inter', sans-serif;
}

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

.learn-more:hover {
  background: linear-gradient(135deg, #8b6b42 0%, #9a7a4e 50%, #8b6b42 100%);
  border-color: #8b6b42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 92, 56, 0.4);
  color: #ffffff;
}

.learn-more:hover::before {
  left: 100%;
}

.learn-more:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(122, 92, 56, 0.3);
}

/* Testimonial Bar */
.testimonial-bar-section {
  background: #1a1a1a;
  padding: 48px 0 32px 0;
  text-align: center;
}
.testimonial-bar-section h2 {
  color: #7a5c38;
  margin-bottom: 24px;
}
.testimonial-bar {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: #7a5c38 #232323;
}
.testimonial-thumb, .testimonial-static {
  background: #232323;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0006;
  min-width: 120px;
  max-width: 140px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 12px 8px 8px 8px;
}
.testimonial-thumb:hover {
  box-shadow: 0 4px 24px #7a5c38;
  transform: scale(1.05);
}
.testimonial-thumb img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 8px;
  object-fit: cover;
  border: 2px solid #7a5c38;
}
.testimonial-thumb span {
  color: #7a5c38;
  font-size: 1rem;
  font-weight: 500;
}
.testimonial-static img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}

/* Testimonial Modal */
.testimonial-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,20,20,0.92);
  align-items: center;
  justify-content: center;
}
.testimonial-modal.active {
  display: flex;
}
.testimonial-modal-content {
  background: #232323;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px #fff;
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#testimonialVideo {
  width: 400px;
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 12px;
  background: #000;
}
.close-modal {
  position: absolute;
  top: 8px; right: 16px;
  font-size: 2rem;
  color: #7a5c38;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #fff;
}

/* Footer */
.footer-industrial {
  background: #181818;
  color: #b0a89f;
  padding: 0;
  margin-top: 32px;
  border-top: 2px solid #7a5c38;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 8vw 16px 8vw;
  gap: 32px;
}
.footer-contact {
  flex: 1 1 320px;
  min-width: 260px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  background: #232323;
  border: 1.5px solid #7a5c38;
  color: #f5f5f5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #b0a89f;
}
.contact-form button {
  margin-top: 8px;
}
.footer-social-proof {
  flex: 1 1 220px;
  min-width: 180px;
  text-align: center;
}
.footer-social-proof h4 {
  color: #7a5c38;
  margin-bottom: 12px;
}
.client-logos {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.client-logos img {
  height: 38px;
  width: auto;
  filter: grayscale(1) brightness(1.1) sepia(0.2);
  opacity: 0.8;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logos img:hover {
  filter: grayscale(0) brightness(1.1) sepia(0.2);
  opacity: 1;
}
.footer-cta {
  background: #232323;
  text-align: center;
  padding: 24px 0 16px 0;
  border-top: 1.5px solid #7a5c38;
}
.footer-cta span {
  color: #b0a89f;
  font-size: 1.2rem;
  margin-right: 18px;
}
.footer-cta .cta-btn {
  font-size: 1.1rem;
  padding: 10px 28px;
}
.footer-cta .cta-btn:hover {
  background: #5a4328;
}
.footer-bottom {
  text-align: center;
  color: #7a5c38;
  font-size: 0.98rem;
  padding: 12px 0 8px 0;
  background: #181818;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .hero-collage {
    height: 180px;
  }
  .hero-text {
    margin-top: 200px;
    padding: 18px 8px 16px 8px;
  }
  .who-we-are-section {
    padding: 60px 0 40px 0;
  }
  .who-we-are-content {
    padding: 32px 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .catalog-main-title {
    font-size: 1.8rem;
  }
  .contact-section h2 {
    font-size: 1.8rem;
  }
  .mission-title {
    font-size: 1.4rem;
  }
  .value-item {
    padding: 12px 16px;
  }
  .value-icon {
    width: 40px;
    height: 40px;
  }
  .sector-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #testimonialVideo {
    width: 90vw;
  }
} 

/* Draggable Slider Styles */
.slider-container {
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.slider {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  height: 400px;
}

.slider.dragging {
  transition: none;
  cursor: grabbing;
}

.slide {
  min-width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-size: cover;
  background-position: center;
  user-select: none;
  position: relative;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 80%;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #7a5c38;
  transform: scale(1.2);
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .slider-container {
    width: 95%;
  }
  
  .slider {
    height: 300px;
  }
  
  .slide {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .slider {
    height: 250px;
  }
  
  .slide {
    height: 250px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
} 

/* Nordic Countries Slider Styles */
  .nordic-slider-container {
    width: 76%; /* Reduced from 95% to 76% (95% * 0.8) */
    max-width: 1440px; /* Reduced from 1800px to 1440px (1800px * 0.8) */
    margin: 32px auto; /* Reduced from 40px to 32px (40px * 0.8) */
    position: relative;
    overflow: visible;
    border-radius: 13px; /* Reduced from 16px to 13px (16px * 0.8) */
    box-shadow: 0 6px 26px rgba(0,0,0,0.3); /* Reduced shadow */
    background: #1a1a1a;
    padding: 24px 0; /* Reduced from 30px to 24px (30px * 0.8) */
  }

.nordic-slider-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  opacity: 0.03;
  pointer-events: none;
  border-radius: 13px; /* Reduced from 16px to 13px (16px * 0.8) */
}

.nordic-slider {
  display: flex;
  height: 560px; /* Reduced from 700px to 560px (700px * 0.8) */
  transition: transform 0.5s ease-in-out;
  gap: 20px; /* Reduced from 25px to 20px (25px * 0.8) */
  padding: 0 20px; /* Reduced from 25px to 20px (25px * 0.8) */
}

.nordic-slide {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px; /* Reduced from 12px to 10px (12px * 0.8) */
  cursor: pointer;
  transform-origin: center;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  border: 2px solid transparent;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Removed gold border glow effect */

.nordic-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  z-index: 1;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nordic-slide:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.2));
}

/* Enhanced image visibility on hover */
.nordic-slide {
  background-size: cover;
  background-position: center;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              background-size 0.3s ease-in-out,
              filter 0.2s ease-in-out;
}

.nordic-slide:hover {
  background-size: cover;
  filter: brightness(1.1) saturate(1.1);
}

.nordic-slide.active {
  flex: 2.2;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
}

.nordic-slide.active:hover {
  flex: 2.8;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  background-size: cover;
}

.nordic-slide.hover-active {
  flex: 2.8;
  transform: scale(1.02);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  filter: brightness(1.05) saturate(1.05);
}

.nordic-slide.hover-active:hover {
  flex: 2.8;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  background-size: cover;
}

.nordic-slide:not(.active) {
  flex: 1;
  filter: brightness(0.7) saturate(0.9);
  transform: scale(0.98);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nordic-slide:not(.active):hover {
  flex: 2.8;
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.05);
  z-index: 5;
  border: 2px solid #7a5c38;
  box-shadow: 0 8px 32px rgba(122, 92, 56, 0.3);
  background-size: cover;
}

/* Enhanced content transitions for immediate response */
.nordic-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 16px; /* Reduced from 30px 20px to 24px 16px (30px * 0.8, 20px * 0.8) */
  color: white;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.nordic-slide:hover .nordic-slide-content {
  transform: translateY(-8px) translateZ(0);
  -webkit-transform: translateY(-8px) translateZ(0);
}

.nordic-slide-content h2 {
  font-size: 3.2rem; /* Reduced from 4rem to 3.2rem (4rem * 0.8) */
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  min-height: 3.8rem; /* Reduced from 4.8rem to 3.8rem (4.8rem * 0.8) */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.nordic-slide:hover .nordic-slide-content h2 {
  transform: scale(1.08) translateZ(0);
  -webkit-transform: scale(1.08) translateZ(0);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
  color: #fff;
}

.nordic-slide.active .nordic-slide-content h2 {
  font-size: 3.2rem; /* Reduced from 4rem to 3.2rem (4rem * 0.8) */
  opacity: 1;
  color: #fff;
}

.nordic-slide.hover-active .nordic-slide-content h2 {
  font-size: 3.2rem; /* Reduced from 4rem to 3.2rem (4rem * 0.8) */
  opacity: 1;
  color: #fff;
}

.nordic-slide:not(.active) .nordic-slide-content h2 {
  font-size: 2.4rem; /* Reduced from 3rem to 2.4rem (3rem * 0.8) */
  opacity: 0.8;
  color: #fff;
}

.nordic-slide:not(.active):hover .nordic-slide-content h2 {
  font-size: 2.8rem; /* Reduced from 3.5rem to 2.8rem (3.5rem * 0.8) */
  opacity: 1;
  color: #fff;
}

.slide-text {
  font-size: 0.96rem; /* Reduced from 1.2rem to 0.96rem (1.2rem * 0.8) */
  line-height: 1.6;
  margin-top: 16px; /* Reduced from 20px to 16px (20px * 0.8) */
  opacity: 0;
  transform: translateY(20px);
  max-width: 320px; /* Reduced from 400px to 320px (400px * 0.8) */
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateY(20px) translateZ(0);
  -webkit-transform: translateY(20px) translateZ(0);
  -webkit-backface-visibility: hidden;
  color: #fff;
}

.nordic-slide:hover .slide-text {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  -webkit-transform: translateY(0) translateZ(0);
  color: #fff;
}

.nordic-slide.active .slide-text {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  -webkit-transform: translateY(0) translateZ(0);
  color: #fff;
}

.nordic-slide.hover-active .slide-text {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  -webkit-transform: translateY(0) translateZ(0);
  color: #fff;
}

.nordic-slide:not(.active) .slide-text {
  opacity: 0;
  transform: translateY(20px) translateZ(0);
  -webkit-transform: translateY(20px) translateZ(0);
  color: #fff;
}

.nordic-slide:not(.active):hover .slide-text {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  -webkit-transform: translateY(0) translateZ(0);
  color: #fff;
}

.nordic-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.nordic-nav-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.nordic-nav-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.nordic-nav-btn svg {
  color: white;
  width: 24px;
  height: 24px;
}

.nordic-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}

.nordic-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nordic-dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Responsive Design for Nordic Slider */
@media only screen and (max-width: 768px) {
  .nordic-slider-container {
    width: 76%; /* Maintain 80% scaling */
  }
  
  .nordic-slider {
    height: 480px; /* Reduced from 600px to 480px (600px * 0.8) */
    gap: 16px; /* Reduced from 20px to 16px (20px * 0.8) */
    padding: 0 16px; /* Reduced from 20px to 16px (20px * 0.8) */
  }
  
  .nordic-slide-content h2 {
    font-size: 2.8rem; /* Reduced from 3.5rem to 2.8rem (3.5rem * 0.8) */
    min-height: 3.4rem; /* Reduced from 4.2rem to 3.4rem (4.2rem * 0.8) */
  }
  
  .nordic-slide.active .nordic-slide-content h2 {
    font-size: 2.8rem; /* Reduced from 3.5rem to 2.8rem (3.5rem * 0.8) */
  }
  
  .nordic-slide.hover-active .nordic-slide-content h2 {
    font-size: 3rem; /* Reduced from 3.7rem to 3rem (3.7rem * 0.8) */
  }
  
  .nordic-slide:not(.active) .nordic-slide-content h2 {
    font-size: 2.2rem; /* Reduced from 2.8rem to 2.2rem (2.8rem * 0.8) */
  }
  
  .slide-text {
    font-size: 0.8rem; /* Reduced from 1rem to 0.8rem (1rem * 0.8) */
    max-width: 240px; /* Reduced from 300px to 240px (300px * 0.8) */
  }
}

@media only screen and (max-width: 480px) {
  .nordic-slider {
    height: 400px; /* Reduced from 500px to 400px (500px * 0.8) */
    gap: 12px; /* Reduced from 15px to 12px (15px * 0.8) */
    padding: 0 12px; /* Reduced from 15px to 12px (15px * 0.8) */
  }
  
  .nordic-slide-content h2 {
    font-size: 2.2rem; /* Reduced from 2.8rem to 2.2rem (2.8rem * 0.8) */
    min-height: 2.7rem; /* Reduced from 3.4rem to 2.7rem (3.4rem * 0.8) */
  }
  
  .nordic-slide.active .nordic-slide-content h2 {
    font-size: 2.2rem; /* Reduced from 2.8rem to 2.2rem (2.8rem * 0.8) */
  }
  
  .nordic-slide.hover-active .nordic-slide-content h2 {
    font-size: 2.4rem; /* Reduced from 3rem to 2.4rem (3rem * 0.8) */
  }
  
  .nordic-slide:not(.active) .nordic-slide-content h2 {
    font-size: 1.8rem; /* Reduced from 2.2rem to 1.8rem (2.2rem * 0.8) */
  }
  
  .slide-text {
    font-size: 0.72rem; /* Reduced from 0.9rem to 0.72rem (0.9rem * 0.8) */
    max-width: 200px; /* Reduced from 250px to 200px (250px * 0.8) */
    margin-top: 12px; /* Reduced from 15px to 12px (15px * 0.8) */
  }
  
  .nordic-nav-btn {
    width: 40px; /* Reduced from 50px to 40px (50px * 0.8) */
    height: 40px; /* Reduced from 50px to 40px (50px * 0.8) */
  }
} 

/* Hero Section for News Page */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  display: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.main-title {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2a5c82 50%, #4fc3f7 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
}

.main-subtitle {
  font-family: 'Source Sans Pro', 'Inter', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #e8f4fd;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .main-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .main-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 40vh;
  }
  
  .main-title {
    font-size: 2.2rem;
  }
  
  .main-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
}

/* Animations for News Page Title */
@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    text-shadow: 0 4px 30px rgba(79, 195, 247, 0.4), 0 0 40px rgba(79, 195, 247, 0.2);
  }
}

@keyframes accentPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Blog Posts Section Styles */
.blog-posts-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #232323 50%, #1a1a1a 100%);
  position: relative;
}

.blog-posts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  pointer-events: none;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Individual Blog Post Styles */
.blog-post {
  background: transparent;
  border-radius: 24px;
  border: 1px solid rgba(122, 92, 56, 0.15);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(122, 92, 56, 0.3);
}

/* Blog Header */
.blog-header {
  padding: 48px 48px 32px 48px;
  background: linear-gradient(135deg, rgba(122, 92, 56, 0.05) 0%, rgba(122, 92, 56, 0.02) 100%);
  border-bottom: 1px solid rgba(122, 92, 56, 0.1);
}

.blog-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #7a5c38;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-category svg {
  width: 20px;
  height: 20px;
}

.blog-title {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #7a5c38;
  margin: 0 0 20px 0;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.blog-meta {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  color: #b0a89f;
}

.publish-date, .read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Blog Content */
.blog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.blog-hero-image {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post:hover .blog-hero-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 32px 32px 32px;
  color: #f5f5f5;
}

.overlay-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #7a5c38;
}

.overlay-content p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

/* Blog Text Content */
.blog-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.intro-section {
  margin-bottom: 8px;
}

.lead-paragraph {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f5f5f5;
  margin: 0;
  font-weight: 400;
  opacity: 0.95;
}

.content-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-block {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(122, 92, 56, 0.1);
}

.section-block:last-child {
  border-bottom: none;
}

.section-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #7a5c38;
  margin: 0 0 16px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.section-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0a89f;
  margin: 0 0 20px 0;
}

/* Feature Lists */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(122, 92, 56, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(122, 92, 56, 0.15);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(122, 92, 56, 0.12);
  border-color: rgba(122, 92, 56, 0.25);
  transform: translateX(4px);
}

.feature-icon {
  color: #7a5c38;
  font-weight: bold;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.95rem;
  color: #f5f5f5;
  font-weight: 500;
}

/* Tech Highlight */
.tech-highlight {
  background: rgba(122, 92, 56, 0.05);
  border: 1px solid rgba(122, 92, 56, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.tech-highlight h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #7a5c38;
  margin: 0 0 16px 0;
}

.tech-highlight ul {
  margin: 0;
  padding-left: 20px;
}

.tech-highlight li {
  color: #b0a89f;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Sustainability Metrics */
.sustainability-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.metric-item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(122, 92, 56, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(122, 92, 56, 0.15);
  transition: all 0.3s ease;
}

.metric-item:hover {
  background: rgba(122, 92, 56, 0.12);
  transform: translateY(-2px);
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #7a5c38;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.85rem;
  color: #b0a89f;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog CTA */
.blog-cta {
  background: linear-gradient(135deg, rgba(122, 92, 56, 0.1) 0%, rgba(122, 92, 56, 0.05) 100%);
  border: 1px solid rgba(122, 92, 56, 0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}

.blog-cta h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #7a5c38;
  margin: 0 0 12px 0;
}

.blog-cta p {
  font-size: 1rem;
  color: #b0a89f;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.blog-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7a5c38 0%, #bfa77a 100%);
  color: #f5f5f5;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(122, 92, 56, 0.3);
}

.blog-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 92, 56, 0.4);
  background: linear-gradient(135deg, #8a6c48 0%, #cfb78a 100%);
}

/* Topic-Specific Styling */
.medical-blog {
  border-left: 4px solid #7a5c38;
}

.medical-blog .blog-category {
  color: #7a5c38;
}

.energy-blog {
  border-left: 4px solid #bfa77a;
}

.energy-blog .blog-category {
  color: #bfa77a;
}

.civil-blog {
  border-left: 4px solid #8a6c48;
}

.civil-blog .blog-category {
  color: #8a6c48;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-container {
    padding: 0 20px;
    gap: 50px;
  }
  
  .blog-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .blog-hero-image {
    height: 300px;
  }
  
  .blog-text {
    padding: 32px 32px 24px 32px;
  }
  
  .blog-title {
    font-size: 2.5rem;
  }
  
  .sustainability-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .blog-posts-section {
    padding: 60px 0;
  }
  
  .blog-container {
    padding: 0 16px;
    gap: 60px;
  }
  
  .blog-header {
    padding: 24px 24px 20px 24px;
  }
  
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-text {
    padding: 24px;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .lead-paragraph {
    font-size: 1.1rem;
  }
  
  .section-block h3 {
    font-size: 1.2rem;
  }
  
  .tech-highlight {
    padding: 20px;
  }
  
  .blog-cta {
    padding: 24px;
  }
  
  .blog-cta h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-posts-section {
    padding: 40px 0;
  }
  
  .blog-container {
    padding: 0 12px;
    gap: 40px;
  }
  
  .blog-header {
    padding: 20px 20px 16px 20px;
  }
  
  .blog-title {
    font-size: 1.8rem;
  }
  
  .blog-text {
    padding: 20px;
  }
  
  .lead-paragraph {
    font-size: 1rem;
  }
  
  .blog-cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
} 

/* Minimalist Header Styles */
.minimalist-header {
  padding: 80px 0 60px 0;
  background: #232323;
  text-align: center;
}

.header-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-line {
  width: 60px;
  height: 2px;
  background: #7a5c38;
  margin: 0 auto 40px auto;
  border-radius: 1px;
}

.minimalist-title {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #7a5c38;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.minimalist-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #b0a89f;
  margin: 0 0 40px 0;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .minimalist-header {
    padding: 60px 0 40px 0;
  }
  
  .minimalist-title {
    font-size: 2.5rem;
  }
  
  .minimalist-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .minimalist-title {
    font-size: 2rem;
  }
  
  .minimalist-subtitle {
    font-size: 1rem;
  }
  
  .header-line {
    width: 40px;
    margin-bottom: 30px;
  }
}

/* ===========================================
   NAVIGATION BAR STYLES
   =========================================== */

/* Main Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--nav-bg) 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(122, 92, 56, 0.2);
  z-index: 1000;
  height: var(--navbar-height);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Logo Section */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: none;
  filter: brightness(1.1) contrast(1.05);
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: none;
  filter: brightness(1.2) contrast(1.1);
}

.logo-text {
  font-family: 'Inter', 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #7a5c38 0%, #B8860B 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 3px 6px rgba(122, 92, 56, 0.4);
  position: relative;
  display: inline-block;
  font-stretch: condensed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logo-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #7a5c38 0%, #B8860B 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  z-index: -1;
}

.logo-text:hover {
  transform: scale(1.08) translateY(-1px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #B8860B 0%, #7a5c38 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(184, 134, 11, 0.5);
  letter-spacing: 2.5px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  background: var(--nav-active-bg);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--nav-active-bg);
  color: var(--gold);
  font-weight: 600;
}

.nav-link i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.dropdown-icon {
  font-size: 0.8rem !important;
  transition: transform 0.3s ease;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dropdown-bg);
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(122, 92, 56, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: var(--dropdown-hover);
  color: var(--gold);
  padding-left: 30px;
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background: var(--nav-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    padding: 15px 30px;
    justify-content: flex-start;
    border-radius: 0;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--secondary);
    margin-left: 20px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown:hover .dropdown-content,
  .dropdown.active .dropdown-content {
    max-height: 300px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-img {
    height: 60px;
  }

  .logo-text {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    font-weight: 800;
  }

  .nav-link {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: var(--navbar-height);
}