/* ============================================
   NCC Invest Global - Page-Specific Styles
   ============================================ */

/* Page Header - Luxury Glassmorphism with Bright Copper */
.page-header {
  position: relative;
  background: var(--page-header-bg);
  color: var(--color-text-inverse);
  padding: var(--spacing-5xl) 0 var(--spacing-4xl);
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  align-items: center;
}

/* Layered translucent navy gradient overlay with bright copper highlights */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 168, 85, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 168, 85, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(45, 74, 107, 0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Bright copper light streaks and metallic reflections */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 30%, rgba(232, 168, 85, 0.15) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(248, 200, 119, 0.12) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

.page-header>.container {
  position: relative;
  z-index: 1;
}

.page-header__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-inverse);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.page-header__subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: var(--line-height-relaxed);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Page Header Actions */
.page-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.page-header__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: clamp(1rem, 0.875rem + 0.625vw, 1.125rem) clamp(2rem, 1.5rem + 2vw, 2.5rem);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-inverse);
  background: linear-gradient(135deg, var(--copper-600) 0%, var(--copper-500) 100%);
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: var(--shadow-copper);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.page-header__btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--copper-500) 0%, var(--copper-300) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.page-header__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-copper-intense);
}

.page-header__btn-primary:hover::before {
  opacity: 1;
}

.page-header__btn-primary span,
.page-header__btn-primary svg {
  position: relative;
  z-index: 1;
}

.page-header__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: clamp(1rem, 0.875rem + 0.625vw, 1.125rem) clamp(2rem, 1.5rem + 2vw, 2.5rem);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-inverse);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  backdrop-filter: var(--glass-blur-light);
  -webkit-backdrop-filter: var(--glass-blur-light);
}

.page-header__btn-secondary:hover {
  border-color: var(--copper-600);
  background: rgba(232, 168, 85, 0.15);
  box-shadow: 0 0 25px var(--copper-glow), 0 0 35px rgba(232, 168, 85, 0.3);
  color: var(--copper-300);
  transform: translateY(-2px);
}

.page-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-inverse);
  text-decoration: none;
  transition: all var(--transition-base);
  backdrop-filter: var(--glass-blur-light);
  -webkit-backdrop-filter: var(--glass-blur-light);
}

.page-header__icon-btn:hover {
  background: rgba(232, 168, 85, 0.25);
  border-color: var(--copper-600);
  box-shadow: 0 0 25px var(--copper-glow), 0 0 35px rgba(232, 168, 85, 0.4);
  transform: translateY(-2px);
  color: var(--copper-300);
}

.page-header__icon-btn svg {
  width: 20px;
  height: 20px;
}

/* Breadcrumbs - Refined, low-contrast for glassmorphism header */
.breadcrumbs {
  padding: var(--spacing-md) 0 var(--spacing-lg);
  background: transparent;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.breadcrumbs__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
  color: var(--copper-300);
  text-decoration: underline;
}

.breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
}

/* Section backgrounds with layered navy gradients and copper light streaks */
.section {
  position: relative;
  /* Padding is already defined in layout.css - ensures proper spacing */
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section>.container {
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 1.5rem + 2.5vw, 3rem);
  padding: 0 clamp(1rem, 0.75rem + 1.25vw, 2rem);
  position: relative;
  z-index: 1;
}

.section-header__title {
  font-size: var(--font-size-4xl);
  margin-bottom: clamp(0.875rem, 0.75rem + 0.625vw, 1rem);
  background: linear-gradient(135deg, var(--text-900) 0%, var(--copper-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-top: 2px;

}

.section-header__badge {
  text-align: center;
  align-items: center;
  display: inline-block;
  background-color: rgb(216, 216, 29);
  border-color: #4a5568;
}

/* Mobile section headers */
@media (max-width: 767px) {
  .section-header {
    text-align: left;
    margin-bottom: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  }

  .section-header__title {
    font-size: var(--font-size-3xl);
  }
}

/* Why Choose Us Section - Fully Responsive Grid */
.why-choose-grid {
  display: grid;
  gap: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  width: 100%;
  grid-template-columns: 1fr;
}

/* Tablet: 2 columns at 768px+ */
@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  }
}

/* Desktop: 4 columns at 1024px+ */
@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  }
}

/* Why Choose Us Cards - Equal height and improved readability */
.why-choose-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: none;
}

.why-choose-grid .card__icon {
  width: clamp(40px, 3vw + 32px, 48px);
  height: clamp(40px, 3vw + 32px, 48px);
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
  display: block;
  margin: 0 auto 6px;
}

.why-choose-grid .card__title {
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  margin-bottom: var(--spacing-xs);
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: block;
  margin: 0 auto 6px;
}

.why-choose-grid .card__content {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin-bottom: 0;
}

/* Mobile: Improved spacing and readability */
@media (max-width: 767px) {
  .why-choose-grid {
    gap: var(--spacing-xl);
  }

  .why-choose-grid .card__body {
    padding: var(--spacing-lg);
    gap: var(--spacing-sm);
  }

  .why-choose-grid .card__title {
    font-size: var(--font-size-lg);
    line-height: 1.4;
  }

  .why-choose-grid .card__content {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  }
}

.about-intro__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  background-color: var(--color-bg-secondary);
  max-width: 100%;
}

.about-intro__content h2 {
  margin-bottom: var(--spacing-lg);
}

.about-intro__content p {
  margin-bottom: var(--spacing-md);
}

.about-values {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-4xl) 0;
  position: relative;
}

/* Thin glowing copper line separator */
.about-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper-600), transparent);
  box-shadow: 0 0 10px var(--copper-glow);
}

/* Values section grid - Enhanced responsive layout */
.about-values .grid--4 {
  display: grid;
  gap: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  width: 100%;
  grid-template-columns: 1fr;
}

/* Tablet: 2 columns at 768px+ */
@media (min-width: 768px) {
  .about-values .grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  }
}

/* Desktop: 4 columns at 1024px+ */
@media (min-width: 1024px) {
  .about-values .grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  }
}

/* Values cards - Equal height and improved readability */
.about-values .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* Allow flex shrinking */
}

.about-values .card__body {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about-values .card__icon {
  width: clamp(40px, 3vw + 32px, 48px);
  height: clamp(40px, 3vw + 32px, 48px);
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
}

.about-values .card__title {
  font-size: clamp(var(--font-size-lg), 1.25vw + 0.875rem, var(--font-size-xl));
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  margin-bottom: var(--spacing-xs);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-values .card__content {
  font-size: clamp(var(--font-size-sm), 0.875vw + 0.75rem, var(--font-size-base));
  line-height: 1.6;
  color: #4a5568;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin-bottom: 0;
}

/* Mobile: Improved spacing and readability */
@media (max-width: 767px) {
  .about-values {
    padding: var(--spacing-3xl) 0;
  }

  .about-values .grid--4 {
    gap: var(--spacing-xl);
  }

  .about-values .card__body {
    padding: var(--spacing-lg);
    gap: var(--spacing-sm);
  }

  .about-values .card__title {
    font-size: var(--font-size-lg);
    line-height: 1.4;
  }

  .about-values .card__content {
    font-size: var(--font-size-sm);
    line-height: 1.65;
  }
}



/* Projects Page */

/* Projects Grid - Responsive layout */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.875rem + 0.625vw, 1.5rem);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  }
}

/* ============================================
   Premium Project Cards - Minimal & Clean Design
   Navy & Copper Harmony
   
   Design Principles:
   - Minimal and corporate luxury feel
   - Text area stays completely static (no animations)
   - Only card container and images animate on hover
   - Clean spacing and consistent card height
   ============================================ */

/* ============================================
   Project Card - Base State
   Background: #E8F4F8 (static, never changes)
   ============================================ */

/* Project Card - Compact, image-first design */
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--project-card-bg);
  border-radius: 18px;
  /* Reduced from var(--radius-xl) */
  border: 1px solid var(--copper-main);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  cursor: pointer;
  /* Entire card clickable */
  min-width: 0;
  /* Prevent overflow */
}

/* ============================================
   Project Card - Hover State
   Background: #E8F4F8 (unchanged)
   Only shadow, lift, and border emphasis allowed
   ============================================ */

/* Hover: Subtle lift and shadow, NO background color change */
.project-card:hover {
  background: var(--project-card-bg);
  /* Keep background unchanged */
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 0 2px rgba(0, 0, 0, 0.06);
}

/* Mobile: Remove hover transform, keep subtle */
@media (max-width: 767px) {
  .project-card:hover {
    background: var(--project-card-bg);
    transform: none;
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.08),
      0 0 1px rgba(0, 0, 0, 0.04);
  }

  .project-card:active {
    background: var(--project-card-bg);
    transform: scale(0.98);
  }
}

/* Single Image Area - Fixed height, responsive */
.project-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
  max-width: 100%;
  /* Prevent image from causing overflow */
  box-sizing: border-box;
}

/* Subtle image zoom on hover (only affects image, not text) */
.project-card:hover .project-card__image {
  transform: scale(1.03);
}

/* Mobile: Adjust image height */
@media (max-width: 767px) {
  .project-card__image-wrapper {
    height: 200px;
  }

  .project-card:hover .project-card__image {
    transform: scale(1.02);
  }
}

/* Text Body Area - Compact content area */
.project-card__body {
  position: relative;
  padding: clamp(0.875rem, 0.75rem + 0.5vw, 1rem);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.35rem + 0.2vw, 0.5rem);
  background: var(--project-card-bg);
  pointer-events: auto;
  z-index: 1;
  transform: none;
  transition: none;
}

.project-card__body .card__header {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.35rem + 0.2vw, 0.5rem);
}

.project-card__body .card__title {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.3;
  margin: 0;
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: none;
  transition: none;
}

.project-card__body .card__content {
  font-size: clamp(0.8125rem, 0.8rem + 0.1vw, 0.875rem);
  line-height: 1.5;
  margin: 0;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform: none;
  transition: none;
}

.project-card__body .badge {
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.project-card__metrics {
  margin-top: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  padding-top: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  border-top: 1px solid rgba(184, 105, 75, 0.15);
  display: flex;
  gap: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  flex-wrap: nowrap;
  align-items: center;
  transform: none;
  transition: none;
}

.project-card__metric {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.project-card__metric-value {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--copper-main);
  margin-bottom: var(--spacing-xs);
  /* No animations */
  transform: none;
  transition: none;
}

.project-card__metric-label {
  font-size: var(--font-size-xs);
  color: rgba(30, 58, 95, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Compact variant - Hide description on homepage */
.project-card--compact .card__content {
  display: none;
}

/* Adjust metrics spacing for compact cards */
.project-card--compact .project-card__metrics {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
}

/* Badge styling within project cards - minimal, optimized for light blue background */
.project-card .badge {
  border-color: var(--copper-main);
  background-color: rgba(184, 105, 75, 0.12);
  color: var(--copper-main);
  border: 1px solid var(--copper-main);
}

.project-card .badge--primary {
  background-color: rgba(184, 105, 75, 0.12);
  color: var(--copper-main);
  border: 1px solid var(--copper-main);
}

.project-card .badge--accent {
  background-color: rgba(184, 105, 75, 0.12);
  color: var(--copper-main);
  border: 1px solid var(--copper-main);
}

.project-card .badge--success {
  background-color: rgba(184, 105, 75, 0.12);
  color: var(--copper-main);
  border: 1px solid var(--copper-main);
}



/* Contact Page */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  margin-bottom: clamp(3rem, 2.5rem + 2.5vw, 6rem);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 2.5rem + 2.5vw, 6rem);
  }
}

.contact-info {
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.contact-item__content {
  flex: 1;
}

.contact-item__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-xs);
}

.contact-item__text {
  color: var(--color-text-secondary);
}

.contact-form {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
}

.contact-form__title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-xl);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  margin-top: var(--spacing-4xl);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-tertiary);
  background-color: var(--color-bg-secondary);
}

/* Responsive Adjustments - Explicit breakpoints */
@media (max-width: 767px) {
  .projects-filters {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 0.5rem);
  }

  .map-container {
    height: clamp(300px, 50vh, 400px);
  }
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent horizontal overflow globally */
* {
  max-width: 100%;
}

body,
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ============================================
   Projects Breadcrumb Switcher
   Mobile-first, premium typography-led design
   ============================================ */

.projects-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 0.75rem + 1vw, 1.25rem);
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding: 0 clamp(1rem, 0.75rem + 1.25vw, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Desktop: Inline layout */
@media (min-width: 768px) {
  .projects-breadcrumb {
    flex-direction: row;
    gap: clamp(1rem, 0.75rem + 1vw, 1.5rem);
  }
}

.projects-breadcrumb__item {
  font-size: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  padding: clamp(0.75rem, 0.625rem + 0.5vw, 1rem) 0;
  position: relative;
  text-align: center;
  width: 100%;
  cursor: pointer;
  /* Disable focus-visible outline for breadcrumb items */
  outline: none;
}

/* Desktop: Reset width for inline layout */
@media (min-width: 768px) {
  .projects-breadcrumb__item {
    width: auto;
    padding: 0.5rem 0;
  }
}

/* Hover: Very subtle opacity change only (desktop) */
@media (min-width: 768px) {
  .projects-breadcrumb__item:hover {
    opacity: 0.7;
    color: var(--color-text-secondary);
    text-decoration: none;
  }
}

/* Active state - Warm amber-gold premium tone */
.projects-breadcrumb__item--active {
  font-weight: var(--font-weight-semibold);
  color: #d4a574;
  /* Warm amber-gold, premium tone */
}

/* Active underline: thin, amber-gold, 70-80% opacity */
.projects-breadcrumb__item--active::after {
  content: '';
  position: absolute;
  bottom: clamp(0.5rem, 0.4rem + 0.3vw, 0.625rem);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(40%, 30% + 10vw, 60%);
  height: 1.5px;
  background: #d4a574;
  /* Warm amber-gold */
  opacity: 0.75;
  /* 75% opacity */
}

@media (min-width: 768px) {
  .projects-breadcrumb__item--active::after {
    width: 100%;
    left: 0;
    transform: none;
    bottom: 0;
    height: 2px;
    /* Slightly thicker on desktop */
  }
}

.projects-breadcrumb__item[aria-current="page"] {
  font-weight: var(--font-weight-semibold);
  color: #d4a574;
  /* Warm amber-gold, premium tone */
}

/* Separator: Thin vertical line or soft slash */
.projects-breadcrumb__sep {
  display: none;
}

@media (min-width: 768px) {
  .projects-breadcrumb__sep {
    display: inline-block;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    color: var(--color-text-tertiary);
    opacity: 0.3;
    margin: 0 clamp(0.5rem, 0.375rem + 0.5vw, 0.75rem);
    vertical-align: middle;
    line-height: 1;
    font-weight: var(--font-weight-normal);
    /* Alternative: Use as vertical line instead of slash */
    /* width: 1px;
    height: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
    background: var(--color-text-tertiary);
    text-indent: -9999px;
    overflow: hidden; */
  }
}

/* Mobile: Extra vertical spacing for touch comfort */
@media (max-width: 767px) {
  .projects-breadcrumb {
    gap: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  }

  .projects-breadcrumb__item {
    padding: clamp(0.875rem, 0.75rem + 0.5vw, 1rem) 0;
    min-height: 44px;
    /* Touch target */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Active indicator: subtle underline with amber-gold */
  .projects-breadcrumb__item--active::after {
    width: clamp(30%, 25% + 5vw, 40%);
    height: 2px;
    opacity: 0.75;
    /* 75% opacity - warm amber-gold */
  }
}

/* Ensure no horizontal overflow */
.projects-breadcrumb,
.projects-breadcrumb__item {
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

/* Keyboard navigation: preserve focus for accessibility */
.projects-breadcrumb__item:focus {
  outline: 2px solid var(--copper-600);
  outline-offset: 2px;
  border-radius: 2px;
}

.projects-breadcrumb__item:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   Image-Forward Project Cards
   Text over image with semi-transparent overlay
   ============================================ */

/* Image wrapper - Aspect ratio based, image-first */
.project-card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  /* Desktop: 16/10 aspect ratio */
  aspect-ratio: 16 / 10;
}

@media (max-width: 767px) {
  .project-card__image-wrapper {
    /* Mobile: 16/11 aspect ratio (slightly taller) */
    aspect-ratio: 16 / 11;
  }
}

/* Image fills container */
.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-base);
}

/* Hover: subtle image scale */
.project-card:hover .project-card__image {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .project-card:hover .project-card__image {
    transform: none;
  }
}


/* Detay butonu: masaüstünde sağda kalır */
.project-card__metric-button,
.project-card__metrics button {
  flex: 0 0 auto;
  margin-left: auto;
  /* Sağa hizalı */
}

/* ============================================
   Detail Button - Premium Copper Style
   Always visible, borderless, premium look
   Applies to all "Detay" buttons in project cards
   ============================================ */

/* Primary selector: specific class */
.project-card__metric-button,
/* Fallback: any button in project card metrics */
.project-card__metrics button {
  /* Reset button defaults */
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;

  /* Layout - masaüstünde sağda kalır */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: fit-content;
  margin-left: auto;
  /* Sağa hizalı - masaüstünde */

  /* Typography */
  font-size: clamp(0.85rem, 0.8rem + 0.15vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(184, 105, 75, 0.95);
  text-decoration: none;
  white-space: nowrap;

  /* Visual styling */
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(184, 105, 75, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* Transitions */
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Always visible */
  opacity: 1;
  visibility: visible;
}

/* Hover: Lift up and glow */
.project-card__metric-button:hover,
.project-card__metrics button:hover {
  transform: translateY(-2px) translateX(2px);
  background: rgba(184, 105, 75, 0.18);
  box-shadow: 0 6px 20px rgba(184, 105, 75, 0.25),
    0 2px 8px rgba(184, 105, 75, 0.15);
  color: rgba(184, 105, 75, 1);
}

/* Active: Scale down */
.project-card__metric-button:active,
.project-card__metrics button:active {
  transform: translateY(-1px) translateX(1px) scale(0.97);
  box-shadow: 0 3px 12px rgba(184, 105, 75, 0.2);
  background: rgba(184, 105, 75, 0.15);
}

/* Focus visible for accessibility */
.project-card__metric-button:focus,
.project-card__metrics button:focus {
  outline: none;
}

.project-card__metric-button:focus-visible,
.project-card__metrics button:focus-visible {
  outline: 2px solid rgba(184, 105, 75, 0.5);
  outline-offset: 3px;
  box-shadow: 0 4px 16px rgba(184, 105, 75, 0.3);
}

/* Mobile: Responsive metrics layout */
@media (max-width: 768px) {
  .project-card__metrics {
    display: flex;
    flex-wrap: wrap;
    /* Metrikler wrap olsun */
    gap: 0.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    /* Metrikler soldan başlasın */
  }

  /* Metrikler yan yana kalır, 2-3 metrik aynı satıra sığar */
  .project-card__metric {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    /* İçeriğe göre genişlik */
    min-width: fit-content;
    max-width: calc(33.333% - 0.334rem);
    /* Max 3 metrik yan yana */
  }

  /* Mobilde font-size küçült */
  .project-card__metric-value {
    font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.9rem);
    line-height: 1.2;
  }

  .project-card__metric-label {
    font-size: clamp(0.6rem, 0.55rem + 0.15vw, 0.7rem);
    line-height: 1.3;
  }

  /* Detay butonu en alta, order ile */
  .project-card__metric-button,
  .project-card__metrics button {
    order: 999;
    /* En alta */
    flex: 0 0 100%;
    /* %100 genişlik */
    width: 100%;
    margin-left: 0;
    /* margin-left sıfırla */
    justify-content: center;
    /* Ortalanmış */
    padding: 10px 18px;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    /* Metriklerden ayrılsın */
  }
}

/* Very small screens: metrics 2 columns */
@media (max-width: 420px) {
  .project-card__metric {
    flex: 0 0 calc(50% - 0.25rem);
    /* 2'li dizilim */
    max-width: calc(50% - 0.25rem);
  }
}

@media (min-width: 768px) {

  /* Show only first 2 metrics */
  .project-card__metric:nth-child(n+3) {
    display: none;
  }
}


/* Mobile: Ensure no horizontal scroll, compact spacing */
@media (max-width: 767px) {
  .projects-grid {
    overflow-x: hidden;
    gap: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  }

  .project-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .project-card__image-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .project-card__image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Compact body padding on mobile */
  .project-card__body {
    padding: 0.75rem;
  }
}


/* Support clickable card wrapper */
.project-card a {
  text-decoration: none;
  color: inherit;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

/* Ensure card link doesn't break layout */
.project-card>a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hide cards by default (JS will show active company) */
.project-card[data-company] {
  display: none;
}

/* Show cyprus cards by default */
.project-card[data-company="cyprus"] {
  display: flex;
}

.project-card[data-company].is-visible {
  display: flex;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Scrollbar Hiding for Cyprus & DND Pages
   Hide scrollbar but keep overflow functionality
   ============================================ */

/* Sadece bu iki sayfada scrollbar'ı görünmez yap - layout bozulmasın */
.page-cyprus,
.page-dnd {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Legacy */
}

.page-cyprus::-webkit-scrollbar,
.page-dnd::-webkit-scrollbar {
  width: 0;
  height: 0;
  /* Chrome/Safari */
}

/* Kartların bulunduğu ana alanın scrollbar'ını da görünmez yap (gerekirse) */
.page-cyprus .projects-grid,
.page-dnd .projects-grid,
.page-cyprus .projects,
.page-dnd .projects {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-cyprus .projects-grid::-webkit-scrollbar,
.page-dnd .projects-grid::-webkit-scrollbar,
.page-cyprus .projects::-webkit-scrollbar,
.page-dnd .projects::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* WHY US – CUSTOM */
.why-us {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.why-us__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 10px;
  background-color: #f1f3f5;
  color: #495057;
}

.why-us__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #212529;
}

.why-us__text {
  font-size: 16px;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 768px) {
  .why-us__title {
    font-size: 28px;
  }

  .why-us__text {
    font-size: 15px;
  }
}

.logo-ncc {
  width: 135px;
  height: auto;
}

.cta {
  background: linear-gradient(135deg, #1c1f26, #2c2f36);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta__content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.cta__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}


.cta-button {
  color: #fff !important;
}

/* ----------------------------
   GENEL ALAN
---------------------------- */
.proj-section {
  padding: 60px 22px;
  background-color: #f9f9f9;
}

.proj-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------
   HEADER
---------------------------- */
.proj-header {
  text-align: center;
  margin-bottom: 40px;
}

.proj-badge {
  display: inline-block;
  background-color: #f0b866;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proj-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.proj-subtitle {
  color: #555;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width:768px) {
  .proj-subtitle {
    font-size: 15px;
  }

  .cta__text {
    font-size: 16px;
  }
}

/* ----------------------------
   CAROUSEL
---------------------------- */
.proj-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

/* Scroll çubuğu şık yap */
.proj-carousel::-webkit-scrollbar {
  height: 6px;
}

.proj-carousel::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 3px;
}

.proj-carousel::-webkit-scrollbar-thumb {
  background: #f0b866;
  border-radius: 3px;
}

.proj-carousel::-webkit-scrollbar-thumb:hover {
  background: #f0b866;
}

/* ----------------------------
   KARTLAR
---------------------------- */
/* Kartlar */
.proj-card {
  flex: 0 0 auto;
  /* scroll çalışsın */
  width: 440px;
  /* biraz genişletildi */
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* Hover */
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Resim */
.proj-card__img {
  width: 100%;
  height: 130px;
  /* artırıldı, kartta daha büyük görünsün */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Kart içeriği */
.proj-card__body {
  padding: 12px 15px;
}

.proj-card__cat {
  display: inline-block;
  background-color: #ffd166;
  color: #333;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.proj-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

/* ----------------------------
   FOOTER BUTON
---------------------------- */
.proj-footer {
  text-align: center;
  margin-top: 30px;
}

.proj-footer__btn {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #f0b866;
  color: #f0b866 !important;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.proj-footer__btn:hover {
  background-color: #f0b866;
  color: #fff !important;
}

.cardContact {
  border: 1px solid #eaeaea;
  border-radius: 13px;
}

.contact-section {
  padding: 40px 0;
  background: #f7f8fa;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-desc {
  color: #666;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-item i {
  font-size: 26px;
  color: #cb8f38;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  color: #444;
  font-size: 16px;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border-radius: 10px;
  padding: 12px 14px;
}

@media (max-width: 767px) {

  .contact-info-box,
  .contact-form-box {
    padding: 25px;
  }
}

.contact-section .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

#mainForm .row>* {
  padding-left: 0 !important;
}

.form-select:focus {
  box-shadow: 0 0 0 0.10rem rgba(13, 110, 253, .25) !important;
}

.form-control:focus {
  box-shadow: 0 0 0 0.10rem rgba(13, 110, 253, .25) !important;
}

.hero-info-section {
  padding: 80px 0;
  background-color: #f8fafc;
  font-family: 'Inter', sans-serif;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-title .icon img {
  height: 45px;
  margin-bottom: 10px;
}

.hero-title .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #f0b866;
  margin-bottom: 8px;
}

.hero-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-bold-text {
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e3a5f;
}

.hero-text-detail {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-counters {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-counters .counter {
  text-align: center;
}

.hero-counters .count-number {
  font-size: 28px;
  font-weight: 700;
  color: #f0b866;
  display: block;
}

.hero-counters .counter-title {
  font-size: 14px;
  font-weight: 500;
  color: #1e3a5f;
  margin-top: 5px;
}

/* Images Column */
.hero-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.hero-images .image-stack {
  overflow: hidden;
  border-radius: 16px;
}

.hero-images img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.hero-images .image-stack:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-row {
    flex-direction: column;
    gap: 40px;
  }

  .hero-counters {
    justify-content: flex-start;
  }
}


.hero-features {
  display: flex;
  gap: 7px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  /* ikon sağda, text ortada */
  gap: 20px;
  min-width: 250px;
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  transition: all 0.3s ease;
}

.hero-features .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, .15);
}

.hero-features .feature .icon-wrapper img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.hero-features .feature .text-wrapper h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 5px;
  text-align: left;
}

.hero-features .feature .text-wrapper p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.4;
  text-align: left;
}

/* Mobilde alt alta dizilsin */
@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-features .feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-features .feature .text-wrapper h4,
  .hero-features .feature .text-wrapper p {
    text-align: center;
  }
}

.card--featured {
  background: linear-gradient(to bottom, #7e7e7c, #d2d3d4, var(--copper-500)) left / 3px 100% no-repeat, #eef1fa;
}

.custom-slider {
  position: relative;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.slider-window {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .6s ease;
}

.slide {
  min-width: 100%;
}

.slide-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.slide-image {
  flex: 0 0 50%;
}

.slide-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* CONTENT */
.slide-content {
  flex: 1;
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px !important;
  font-size: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e3a5f, #96651f);
}

.slide-content h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.slide-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #767d83;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}

.slider-nav {
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(2 6 23 / 17%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 10;
  transition: all .3s ease;
  padding-bottom: 10px;
}

.slider-nav:hover {
  background: rgb(211 157 78 / 53%);
  transform: translateY(-50%) scale(1.08);
}

.slider-nav--prev {
  left: -26px;
}

.slider-nav--next {
  right: -26px;
}

@media (max-width:768px) {
  .slider-nav--prev {
    left: 4px;
  }

  .slider-nav--next {
    right: 4px;
  }

  .slider-nav {
    top: 40%;
  }

}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}

/* DOTS */
.dots {
  margin-top: 30px;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #475569;
  border-radius: 50%;
  margin: 0 6px;
}

.dot.active {
  background: #f0b866;
}

@media (max-width: 768px) {
  .slide-inner {
    flex-direction: column;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  /* DOTS */
  .dots {
    margin-top: 20px;
    text-align: center;
  }

}

.btnProje {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 12px;
  color: #ad721a !important;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #b27b28;
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}

.btnProje::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fad8a5, #f1f0ee);
  transform: translateX(-100%);
  transition: transform .35s ease;
  z-index: -1;
}

.btnProje:hover {
  color: #fff;
}

.btnProje:hover::before {
  transform: translateX(0);
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}


.kvkk-box {
  padding: 33px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 10px 10px 139px -31px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 10px 10px 139px -31px rgba(0, 0, 0, 0.49);
}

.kvkk-box h2 {
  font-size: 25px;
  color: #043475;
}

.kvkk-box h3 {
  font-size: 18px;
  color: #043475;
}


@media (max-width:768px) {
  .kvkk-box h2 {
    font-size: 22px;
  }
}

.kvkk-span {
  color: #cb8f38;
}

.kvkk-span:hover {
  color: #a47128;
}