/* Base Styles & Reset */
:root {
  --piye-olive: #2d472f;
  --piye-olive-light: #3a5a3d;
  --piye-charcoal: #333333;
  --piye-beige: #f9f5f0;
  --piye-white: #ffffff;
  --piye-gray: rgba(0, 0, 0, 0.7);
  --transition-standard: all 0.3s ease;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 2rem;
  --section-padding: 6rem 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--piye-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

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

img {
  max-width: 100%;
  height: 450px;
}

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

button {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border: none;
  outline: none;
  transition: var(--transition-standard);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.hidden {
  display: none;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide-in {
  animation: slideIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: var(--transition-standard);
  background-color: var(--piye-white);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.5);
  box-shadow: var(--shadow-sm);
}

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

.logo-group {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-group:hover .logo-text {
  color: var(--piye-olive);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, var(--piye-olive), rgba(45, 71, 47, 0.8));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-standard);
}

.logo-icon span {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition-standard);
}

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

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Header Controls - hidden by default */
.mobile-header-controls {
  display: none;
}

.language-switcher.mobile {
  margin: 1.5rem 0;
  padding: 0;
  justify-content: center;
  border-left: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--piye-olive);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-standard);
  padding: 0.25rem 0.5rem;
  /* Add a subtle background to ensure visibility on any background */
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
  font-weight: 600;
}

.lang-separator {
  color: var(--piye-white);
  opacity: 0.5;
  margin: 0 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--piye-olive);
  transition: var(--transition-standard);
}

.nav-link:hover {
  color: var(--piye-olive);
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  background: linear-gradient(to right, var(--piye-olive), var(--piye-olive-light));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-lg);
  font-weight: 500;
  transition: var(--transition-standard);
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--piye-charcoal);
  transition: var(--transition-standard);
}

.menu-toggle:hover {
  color: var(--piye-olive);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.5);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-standard);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  padding: 0.5rem 0;
  transition: var(--transition-standard);
}

.mobile-link:hover {
  color: var(--piye-olive);
}

.mobile-contact {
  width: 100%;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background-color: var(--piye-white);
  position: relative;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-highlight {
  color: var(--piye-olive);
}

.hero-text {
  font-size: 1.25rem;
  color: rgba(51, 51, 51, 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.6;
}

.start-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--piye-olive);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: var(--border-radius-lg);
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition-standard);
}

.start-btn:hover {
  background-color: var(--piye-olive-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.icon-right {
  transition: var(--transition-standard);
}

.start-btn:hover .icon-right {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse-icon {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--piye-olive);
  border-radius: var(--border-radius-lg);
  display: flex;
  justify-content: center;
}

.mouse-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--piye-olive);
  border-radius: 1rem;
  margin-top: 0.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Full-View Slider */
.fullview-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  opacity: 0;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
  z-index: 2;
}

.slide-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-subtitle {
  font-size: 1.75rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  margin-bottom: 2rem;
}

.slide.active .slide-subtitle {
  opacity: 0.9;
  transform: translateY(0);
}

.slide-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.slide.active .slide-cta {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--piye-olive);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: var(--border-radius-lg);
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition-standard);
}

.slide-btn:hover {
  background-color: var(--piye-olive-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.slide-btn:hover span[data-icon="arrowRight"] {
  transform: translateX(4px);
}

/* Tech Cursor Animation */
.tech-cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-cursor-outer {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(45, 209, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.tech-cursor-inner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(45, 209, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.tech-cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(45, 209, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(45, 209, 255, 0.8);
}

.tech-cursor-lines {
  position: absolute;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
}

.tech-cursor-lines .line {
  position: absolute;
  background-color: rgba(45, 209, 255, 0.4);
  transform-origin: center;
}

.tech-cursor-lines .line-1,
.tech-cursor-lines .line-3 {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.tech-cursor-lines .line-2,
.tech-cursor-lines .line-4 {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
}

.tech-cursor-coordinates {
  position: absolute;
  transform: translate(10px, 10px);
  font-size: 10px;
  color: rgba(45, 209, 255, 0.8);
  font-family: monospace;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 4px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.tech-cursor-container.active {
  opacity: 1;
}

.tech-cursor-container.interactive .tech-cursor-outer {
  width: 100px;
  height: 100px;
  border-color: rgba(45, 209, 255, 0.6);
  animation: pulse 1.5s infinite alternate;
}

.tech-cursor-container.interactive .tech-cursor-inner {
  width: 50px;
  height: 50px;
  border-color: rgba(45, 209, 255, 0.8);
  animation: rotate 3s linear infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Interactive Elements */
.slider-interactive-elements {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}

.progress-bar {
  height: 100%;
  width: 33.33%; /* Initial width for first slide */
  background-color: white;
  transition: width 0.5s ease;
}

/* Navigation Buttons */
.slider-nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.slider-nav {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-standard);
}

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

.slider-counter {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.separator {
  opacity: 0.5;
}

/* Side Indicator */
.slider-side-indicator {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.indicator-line {
  width: 2px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
}

.indicator-dots {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.indicator-dots .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-standard);
}

.indicator-dots .dot.active {
  background-color: white;
  transform: scale(1.5);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  animation: fadeInUp 2s infinite;
}

.scroll-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.scroll-icon {
  animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translate(-50%, 10px); }
  50% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -10px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* About Section */.section-about {
  padding: 6rem 0;
  background-color: #f5f5dc; /* Replace with your brand's "piye-beige" if needed */
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.work{
  padding-top: 60px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

/* Tech Canvas */
#tech-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Contact Form Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: var(--piye-white);
  margin: 5vh auto;
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(-30px);
  transition: transform 0.4s ease-out;
  position: relative;
  /* Hide scrollbar while maintaining functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar {
  display: none;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--piye-charcoal);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-standard);
}

.close-modal:hover {
  color: var(--piye-olive);
  transform: scale(1.1);
}

.modal h2 {
  margin-bottom: 1rem;
  color: var(--piye-olive);
  font-size: 2rem;
}

.modal p {
  margin-bottom: 2rem;
  color: var(--piye-gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--piye-charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition-standard);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--piye-olive);
  box-shadow: 0 0 0 3px rgba(45, 71, 47, 0.1);
}

.submit-btn {
  background: linear-gradient(to right, var(--piye-olive), var(--piye-olive-light));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-standard);
  display: block;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-status {
  margin-top: 1.5rem;
  padding: 0.75rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-status.error {
  display: block;
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.heading {
  font-size: 2.5rem;
  color: #2f2f2f; /* Replace with your brand's "piye-charcoal" */
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.text-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: rgba(47, 47, 47, 0.8); /* piye-charcoal/80 */
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.image-block {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.label-box {
  position: absolute;
  background-color: #556b2f; /* Replace with "piye-olive" */
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bottom-right {
  bottom: -1.5rem;
  right: -1.5rem;
}

.label-title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
}

.label-subtitle {
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

/* Optional Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-in {
  animation: slideIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}


/* Services Section */
.services {
  padding: var(--section-padding);
  background-color: var(--piye-beige);
}

.services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--piye-gray);
  line-height: 1.6;
}

.services-title .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.service-card {
  background-color: var(--piye-white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-standard);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--piye-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--piye-olive);
  transition: var(--transition-standard);
}

.service-card:hover .service-icon {
  background-color: var(--piye-olive);
  color: var(--piye-white);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  color: var(--piye-gray);
  line-height: 1.6;
}

/* Projects Section */
.projects {
  padding: var(--section-padding);
  background-color: var(--piye-white);
}

.projects .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-title {
  text-align: center;
  margin-bottom: 4rem;
}

.projects-title .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.project-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-standard);
  background-color: var(--piye-white);
}

.project-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-md);
}

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

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.project-description {
  font-size: 0.875rem;
  color: var(--piye-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tag {
  background-color: var(--piye-beige);
  color: var(--piye-olive);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Why Piye Section */
.section {
    padding: 6rem 0;
    background-color: white;
  }
  
  .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .image-container {
    position: relative;
  }
  
  .main-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }
  
  .label-box {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background-color: #556B2F; /* Replace with your brand's "piye-olive" */
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .label-box2 {
    position: absolute;
    bottom: 2.5rem;
    right: -1.5rem;
    background-color: #556B2F; /* Replace with your brand's "piye-olive" */
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .label-title {
    font-size: 1.75rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
  }
  
  .label-subtitle {
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
  }
  
  .text-content .heading {
    font-size: 2.5rem;
    color: #2F2F2F; /* Replace with your brand's "piye-charcoal" */
    font-weight: bold;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
  }
  
  .text-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(47, 47, 47, 0.8); /* piye-charcoal/80 */
    font-size: 1.125rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
  }
  
  .quote-box {
    background-color: #F5F5DC; /* Replace with "piye-beige" */
    padding: 1.5rem;
    border-left: 4px solid #556B2F; /* piye-olive */
    border-radius: 0.75rem;
  }
  
  .quote-text {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    color: #2F2F2F;
    font-family: 'Inter', sans-serif;
  }
  
  .quote-author {
    color: #556B2F;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
  }
  
  /* Optional Animations */
  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  .slide-in {
    animation: slideIn 1s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
/* Call to Action Section */
.cta {
  padding: var(--section-padding);
  background-color: var(--piye-olive);
  color: var(--piye-white);
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--piye-white);
}

.cta-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--piye-white);
  color: var(--piye-olive);
  padding: 1.25rem 2.5rem;
  border-radius: var(--border-radius-lg);
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition-standard);
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.cta-btn:hover .icon-right {
  transform: translateX(4px);
}

/* Footer Section */
.footer {
  background-color: #2F2F2F; /* piye-charcoal */
  color: white;
  padding: 4rem 0;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  font-size: 1.25rem;
}

.social-icon:hover {
  background-color: #556B2F; /* piye-olive */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .start-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .slide-title {
    font-size: 1.75rem;
  }
  
  .slide-subtitle {
    font-size: 1.125rem;
  }
  
  .carousel {
    height: 60vh;
  }
  
  .service-card,
  .project-card {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1.125rem;
  }
  
  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}