/*
 * Main stylesheet for the First Associate website (English version).
 *
 * This file defines a clean and modern layout with a fixed navigation bar,
 * responsive grids for services and logos, and distinct sections for each
 * part of the company profile. Feel free to adjust colors and spacing to
 * better match your brand identity.
 */

/* Reset some basic styles */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --font-sans: 'Inter', Arial, Helvetica, sans-serif;
}

section {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  /* Light background for a calm, premium feel */
  color: #333333;
  background: #f9f7f3;
}

/* Navigation bar */
header {
  /* Transparent over hero for a premium first impression */
  background: transparent;
  color: #333333;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  border-bottom: 1px solid transparent;
}

/* Solid header after scroll (or when mobile menu is open) */
header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(230, 220, 179, 0.7);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand (logo + optional text) */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9b037;
  letter-spacing: 0.2px;
}

@media (max-width: 520px) {
  .brand-text {
    display: none;
  }
}

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

.nav-links li {
  margin-left: 15px;
}

/* Navigation links styled with a gold accent */
/* Navigation links: dark text with gold accent on hover */
.nav-links a,
.nav-links button {
  color: #333333;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  color: #c9b037;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 120px 20px 40px; /* space for the fixed nav + breathing room */
  color: #333333;

  /* Handshake hero background with a premium white→champagne overlay + subtle gold glow */
  background-image:
    radial-gradient(circle at 28% 38%, rgba(212,175,55,0.18), rgba(255,255,255,0.0) 55%),
    linear-gradient(rgba(255,255,255,0.62), rgba(247,242,232,0.88)),
    url("assets/bg-hero-handshake.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* --- Hero typography & layout polish --- */
.hero-content{
  max-width: 920px;
  padding: 40px 38px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(230, 220, 179, 0.55);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
}

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 2.8vw + 1rem, 3.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p{
  margin: 0 auto 22px;
  max-width: 58ch;
  font-size: clamp(1rem, 0.6vw + 0.95rem, 1.15rem);
  line-height: 1.7;
  color: #3d3d3d;
}

.hero .btn{
  padding: 12px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

@media (max-width: 600px){
  .hero{
    padding-top: 110px;
  }
  .hero-content{
    padding: 28px 18px;
    border-radius: 16px;
  }
  .hero p{
    max-width: 42ch;
  }
}


.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #e6dcb3;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333333;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a.active {
  color: #c9b037;
}

.lang-switch {
  font-weight: 600;
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 650px;
}

/* Call to action button */
/* Call to action button */
.btn {
  display: inline-block;
  background: #d4af37;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: #e6c55a;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Section base styles */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c9b037;
}

/* About and generic section styling */
/* About and generic section styling */
/* About and generic section styling */
/* Section card surfaces (backgrounds per section) */
.about,
.services,
.why-us,
.industries,
.customers,
.contact {
  margin-bottom: 24px;
  border-radius: 10px;
  padding: 48px 24px;
  border: 1px solid #e6dcb3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* About: clean champagne sweep */
.about {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 176, 55, 0.10), transparent 46%),
    radial-gradient(circle at 92% 0%, rgba(201, 176, 55, 0.07), transparent 40%),
    linear-gradient(135deg, #ffffff 0%, #fbf8f2 55%, #f3ead0 100%);
}

/* Services: subtle diagonal texture for energy */
.services {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201, 176, 55, 0.06) 0px,
      rgba(201, 176, 55, 0.06) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, #ffffff 0%, #f9f5ec 100%);
}

/* Why Us: soft top glow */
.why-us {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 176, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
}

/* Industries: gentle side glow for depth */
.industries {
  background:
    radial-gradient(circle at 0% 50%, rgba(201, 176, 55, 0.10), transparent 52%),
    radial-gradient(circle at 100% 50%, rgba(201, 176, 55, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8f3e7 100%);
}

/* Partners/Customers: clean grid-like texture */
.customers {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(201, 176, 55, 0.04) 0px,
      rgba(201, 176, 55, 0.04) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(201, 176, 55, 0.03) 0px,
      rgba(201, 176, 55, 0.03) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
}

/* Contact: warm closing fade */
.contact {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 176, 55, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f5ecd6 100%);
}



/* Decorative background shapes (subtle, premium) */
.about > *,
.services > *,
.why-us > *,
.industries > *,
.customers > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.about::before,
.services::before,
.why-us::before,
.industries::before,
.customers::before,
.contact::before,
.about::after,
.services::after,
.why-us::after,
.industries::after,
.customers::after,
.contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.10;
  z-index: 0;
  filter: blur(0px);
}

/* About: concentric rings + soft blob */
.about::before {
  top: -120px;
  right: -140px;
  width: 520px;
  height: 520px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22600%22%20height=%22600%22%20viewBox=%220%200%20600%20600%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22#c9b037%22%20stroke-width=%222%22%20opacity=%220.9%22%3E%0A%3Ccircle%20cx=%22420%22%20cy=%22180%22%20r=%22110%22/%3E%0A%3Ccircle%20cx=%22420%22%20cy=%22180%22%20r=%22150%22%20opacity=%220.55%22/%3E%0A%3Ccircle%20cx=%22420%22%20cy=%22180%22%20r=%22190%22%20opacity=%220.35%22/%3E%0A%3C/g%3E%3C/svg%3E");
  transform: rotate(8deg);
  opacity: 0.11;
}
.about::after {
  bottom: -160px;
  left: -180px;
  width: 560px;
  height: 420px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22700%22%20height=%22500%22%20viewBox=%220%200%20700%20500%22%3E%0A%3Cpath%20d=%22M472%2060c78%2028%20136%2092%20146%20162%2010%2070-30%20146-100%20192-70%2046-170%2062-256%2036-86-26-158-94-169-172-11-78%2039-166%20120-211%2081-45%20177-35%20259-7z%22%0Afill=%22#c9b037%22%20opacity=%220.18%22/%3E%3C/svg%3E");
  transform: rotate(-6deg);
  opacity: 0.08;
}

/* Services: geometric hex lines */
.services::before {
  top: -140px;
  left: -160px;
  width: 520px;
  height: 520px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22640%22%20height=%22640%22%20viewBox=%220%200%20640%20640%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22#c9b037%22%20stroke-width=%222%22%20opacity=%220.8%22%3E%0A%3Cpath%20d=%22M320%2070l190%20110v220L320%20510%20130%20400V180z%22/%3E%0A%3Cpath%20d=%22M320%20120l145%2084v168L320%20456%20175%20372V204z%22%20opacity=%220.55%22/%3E%0A%3Cpath%20d=%22M320%20170l100%2058v104l-100%2058-100-58V228z%22%20opacity=%220.35%22/%3E%0A%3C/g%3E%3C/svg%3E");
  transform: rotate(-10deg);
  opacity: 0.10;
}
.services::after {
  bottom: -90px;
  right: -110px;
  width: 420px;
  height: 240px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22600%22%20height=%22300%22%20viewBox=%220%200%20600%20300%22%3E%0A%3Cg%20fill=%22#c9b037%22%20opacity=%220.22%22%3E%0A%3Ccircle%20cx=%2260%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22110%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22160%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22210%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22260%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22310%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22360%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22410%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22460%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22510%22%20cy=%2260%22%20r=%224%22/%3E%0A%3Ccircle%20cx=%2285%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22135%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22185%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22235%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22285%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22335%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22385%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22435%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22485%22%20cy=%22110%22%20r=%224%22/%3E%0A%3Ccircle%20cx=%2260%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22110%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22160%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22210%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22260%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22310%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22360%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22410%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22460%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22510%22%20cy=%22160%22%20r=%224%22/%3E%0A%3C/g%3E%3C/svg%3E");
  transform: rotate(0deg);
  opacity: 0.07;
}

/* Why Us: rings (lighter) */
.why-us::before {
  top: -140px;
  left: -180px;
  width: 560px;
  height: 560px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22600%22%20height=%22600%22%20viewBox=%220%200%20600%20600%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22#c9b037%22%20stroke-width=%222%22%20opacity=%220.9%22%3E%0A%3Ccircle%20cx=%22420%22%20cy=%22180%22%20r=%22110%22/%3E%0A%3Ccircle%20cx=%22420%22%20cy=%22180%22%20r=%22150%22%20opacity=%220.55%22/%3E%0A%3Ccircle%20cx=%22420%22%20cy=%22180%22%20r=%22190%22%20opacity=%220.35%22/%3E%0A%3C/g%3E%3C/svg%3E");
  transform: rotate(-14deg);
  opacity: 0.07;
}

/* Industries: hex (lighter) */
.industries::before {
  bottom: -180px;
  right: -200px;
  width: 600px;
  height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22640%22%20height=%22640%22%20viewBox=%220%200%20640%20640%22%3E%0A%3Cg%20fill=%22none%22%20stroke=%22#c9b037%22%20stroke-width=%222%22%20opacity=%220.8%22%3E%0A%3Cpath%20d=%22M320%2070l190%20110v220L320%20510%20130%20400V180z%22/%3E%0A%3Cpath%20d=%22M320%20120l145%2084v168L320%20456%20175%20372V204z%22%20opacity=%220.55%22/%3E%0A%3Cpath%20d=%22M320%20170l100%2058v104l-100%2058-100-58V228z%22%20opacity=%220.35%22/%3E%0A%3C/g%3E%3C/svg%3E");
  transform: rotate(12deg);
  opacity: 0.07;
}

/* Partners: dots pattern */
.customers::before {
  top: -80px;
  right: -140px;
  width: 520px;
  height: 260px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22600%22%20height=%22300%22%20viewBox=%220%200%20600%20300%22%3E%0A%3Cg%20fill=%22#c9b037%22%20opacity=%220.22%22%3E%0A%3Ccircle%20cx=%2260%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22110%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22160%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22210%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22260%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22310%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22360%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22410%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22460%22%20cy=%2260%22%20r=%224%22/%3E%3Ccircle%20cx=%22510%22%20cy=%2260%22%20r=%224%22/%3E%0A%3Ccircle%20cx=%2285%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22135%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22185%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22235%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22285%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22335%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22385%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22435%22%20cy=%22110%22%20r=%224%22/%3E%3Ccircle%20cx=%22485%22%20cy=%22110%22%20r=%224%22/%3E%0A%3Ccircle%20cx=%2260%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22110%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22160%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22210%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22260%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22310%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22360%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22410%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22460%22%20cy=%22160%22%20r=%224%22/%3E%3Ccircle%20cx=%22510%22%20cy=%22160%22%20r=%224%22/%3E%0A%3C/g%3E%3C/svg%3E");
  transform: rotate(10deg);
  opacity: 0.08;
}
.customers::after {
  bottom: -160px;
  left: -200px;
  width: 620px;
  height: 440px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22700%22%20height=%22500%22%20viewBox=%220%200%20700%20500%22%3E%0A%3Cpath%20d=%22M472%2060c78%2028%20136%2092%20146%20162%2010%2070-30%20146-100%20192-70%2046-170%2062-256%2036-86-26-158-94-169-172-11-78%2039-166%20120-211%2081-45%20177-35%20259-7z%22%0Afill=%22#c9b037%22%20opacity=%220.18%22/%3E%3C/svg%3E");
  transform: rotate(6deg);
  opacity: 0.06;
}

/* Contact: warm blob */
.contact::before {
  top: -160px;
  left: -180px;
  width: 620px;
  height: 440px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22700%22%20height=%22500%22%20viewBox=%220%200%20700%20500%22%3E%0A%3Cpath%20d=%22M472%2060c78%2028%20136%2092%20146%20162%2010%2070-30%20146-100%20192-70%2046-170%2062-256%2036-86-26-158-94-169-172-11-78%2039-166%20120-211%2081-45%20177-35%20259-7z%22%0Afill=%22#c9b037%22%20opacity=%220.18%22/%3E%3C/svg%3E");
  transform: rotate(-8deg);
  opacity: 0.07;
}
/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

 .service-card {
  /* Elegant card with subtle gradient and premium gold accent */
  background: linear-gradient(145deg, #ffffff 0%, #f9f5ec 100%);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e6dcb3; /* soft gold border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  color: #333333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
 }

.service-card h3 {
  margin-top: 0;
  color: #c9b037;
  margin-bottom: 10px;
}

/* Lists within sections */
/* Lists within sections */
/* Lists within sections */
.why-us ul,
.industries ul,
.contact ul {
  list-style: disc inside;
  padding-left: 0;
  margin-top: 10px;
  color: #333333;
}

.why-us ul li,
.industries ul li,
.contact ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Customers logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  text-align: center;
  margin-top: 20px;
}

 .logo-placeholder {
  background-image:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    url("assets/bg-hero.png");
  background-size: cover;
  background-position: center;
height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #999999;
  font-size: 0.9rem;
  border: 1px solid #e6dcb3;
}

/* Partner logo grid items */

/* Partner logo cards with gentle gradient and gold border */
.partner-logo {
  background: linear-gradient(135deg, #ffffff 0%, #f8f2e8 100%);
  border: 1px solid #e6dcb3;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.06);
 }

.partner-logo img {
  max-height: 62px;
  max-width: 92%;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) saturate(0.85) contrast(1.05);
  opacity: 0.88;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) saturate(1.05) contrast(1.02);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo img { transition: none; }
}
/* Footer styles */

.subheading {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #333333;
}

/* Contact form */
.contact-form {
  margin-top: 25px;
  max-width: 700px;
}

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

.contact-form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #333333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #e6dcb3;
  border-radius: 12px;
  font-size: 1rem;
  background: #ffffff;
}

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

.contact-form .form-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.small-note {
  font-size: 0.9rem;
  color: #555555;
}

footer {
  background: #f9f7f3;
  color: #333333;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #e6dcb3;
}


  .hero p {
    font-size: 1rem;
  }
  .nav-links li {
    margin-left: 10px;
  }
}


@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e6dcb3;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links li {
    margin-left: 0;
  }

  .navbar.open .nav-links {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}



/* =========================
   Premium background system
   (Hybrid: image hero + CSS section textures)
   ========================= */

body {
  /* Very subtle gold thread texture across the whole page */
  background-image:
    radial-gradient(circle at 80% 10%, rgba(212,175,55,0.06), transparent 45%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.02),
      rgba(212,175,55,0.02) 1px,
      transparent 1px,
      transparent 14px
    );
  background-attachment: fixed;
}

/* Make section backgrounds safe (pseudo layer behind content) */
.about, .services, .why-us, .industries, .customers, .contact {
  position: relative;
  overflow: hidden;
}

.about > *, .services > *, .why-us > *, .industries > *, .customers > *, .contact > * {
  position: relative;
  z-index: 1;
}

/* Light, crisp sections */
.about::before, .why-us::before, .customers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(251,248,242,0.96)),
    radial-gradient(circle at 15% 20%, rgba(212,175,55,0.07), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(212,175,55,0.05), transparent 55%);
}

/* Slightly warmer sections to create flow */
.services::before, .industries::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(247,242,232,0.92)),
    repeating-linear-gradient(
      90deg,
      rgba(212,175,55,0.02),
      rgba(212,175,55,0.02) 1px,
      transparent 1px,
      transparent 18px
    );
}

/* Contact: warm closing gradient */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(239,227,194,0.92) 100%),
    radial-gradient(circle at 70% 30%, rgba(212,175,55,0.08), transparent 55%);
}


/* Subtle brand hover */
.brand:hover .brand-logo{
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.10));
}



/* About section photo background (Suha) */
.about.about--photo{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.72) 0%, rgba(247,242,232,0.88) 55%, rgba(255,255,255,0.78) 100%),
}

.about.about--photo::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(212,175,55,0.22), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(212,175,55,0.12), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.05));
  pointer-events: none;
}

.about.about--photo .about-inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.about.about--photo .about-inner p{
  max-width: 72ch;
}

@media (max-width: 768px){
  .about.about--photo .about-inner{
    padding: 24px 18px;
    border-radius: 16px;
  }
}


/* Services section: Suha background (premium) */
.services.services-bg-suha{
  position: relative;
  overflow: hidden;
}

.services.services-bg-suha::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 35%, rgba(212,175,55,0.20) 0%, rgba(255,255,255,0.78) 55%, rgba(255,255,255,0.86) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.70) 0%, rgba(247,242,232,0.90) 100%);
  pointer-events:none;
}

.services.services-bg-suha .container{
  position: relative;
  z-index: 1;
}

/* Make service cards pop cleanly on photo background */
.services.services-bg-suha .service-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(6px);
}



/* --- Suha shared background band (About + Services) --- */
.suha-band{
  position: relative;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  /* keep your template spacing */
  max-width: 1200px;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(247,242,232,0.86) 55%, rgba(255,255,255,0.74) 100%),
    url("assets/suha-band.jpg") center/cover no-repeat;
}
.suha-band__overlay{
  position: relative;
  padding: 28px 24px;
}
/* remove double outer padding from wrapped sections if they have it */
.suha-band section{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* make section cards readable on photo */
.suha-band .section-inner,
.suha-band .about-box,
.suha-band .services-box{
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
/* ensure spacing between About and Services inside the band */
.suha-band #about{ margin-bottom: 18px !important; }
.suha-band #services{ margin-top: 18px !important; }
@media (max-width: 768px){
  .suha-band__overlay{ padding: 18px 14px; }
  .suha-band{ border-radius: 14px; }
}


/* Shift About Us card slightly left on desktop to reveal Suha face */
@media (min-width: 1024px) {
  .about-card {
    transform: translateX(-10%);
  }
}

/* About Us merged-left layout */
.about-card {
  max-width: 560px;
  padding: 36px 40px 36px 32px;
  position: relative;
}

/* Gold vertical accent line */
.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: linear-gradient(to bottom, #d4af37, #f1e2b6);
  border-radius: 2px;
}

/* Title merged to left edge */
.about-card h2 {
  margin-left: -12px;
  padding-left: 16px;
}

/* Desktop positioning */
@media (min-width: 1024px) {
  .about-card {
    transform: translateX(-6%);
  }
}

/* Desktop layout: keep left bias but protect both sides */
@media (min-width: 1024px) {
  .about-card {
    max-width: 560px; /* card size */
    margin-left: clamp(18px, 5vw, 56px);
    margin-right: auto;
    transform: translateX(-6%); /* gentle left shift */
  }
}

/* Desktop layout: shift left & limit width */
@media (min-width: 1024px) {
  .about-card {
    max-width: 600px;   /* controls card size */
    margin-left: 0;
    margin-right: auto;
    transform: translateX(-10%);
  }
}

/* =====================================================
   About Us: card on the LEFT of Suha (photo band)
   These rules intentionally override earlier experiments.
   ===================================================== */

/* Show Suha's face more clearly on the right */


/* Layout: card left, image visible right */
.suha-band #about.about--photo{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 360px;
}

.suha-band #about.about--photo .about-card{
  width: clamp(320px, 45%, 600px);
  margin-left: clamp(12px, 3vw, 44px);
  margin-right: auto;
  transform: none; /* override previous translate hacks */
}

.suha-band #about.about--photo .about-inner{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}

/* Mobile: center the card and re-center the background */
@media (max-width: 900px){
  
  .suha-band #about.about--photo{
    justify-content: center;
    min-height: unset;
  }
  .suha-band #about.about--photo .about-card{
    width: 100%;
    margin: 0;
  }
}

/* RTL (Arabic): mirror the layout so the card stays away from the face */
html[dir="rtl"] 

html[dir="rtl"] .suha-band #about.about--photo{
  justify-content: flex-end;
}

html[dir="rtl"] .suha-band #about.about--photo .about-card{
  margin-left: auto;
  margin-right: clamp(12px, 3vw, 44px);
}



/* MAX RIGHT SHIFT */




/* FINAL: MOVE SUHA BACKGROUND TO THE RIGHT */
.about--photo {
  background-position: right -220px center !important;
  background-size: cover;
}


/* === FIX: shift Suha background image to the RIGHT (actual container is .suha-band) === */

@media (max-width: 768px){
  /* keep mobile centered */
  
}

/* === STRONGER SHIFT: move Suha further RIGHT === */
.suha-band{
  background-position: center, calc(100% + 360px) center !important;
}
@media (max-width: 768px){
  .suha-band{ background-position: center, center !important; }
}


/* ================================
   EN ONLY – FIX SUHA IMAGE POSITION
   ================================ */
html[lang="en"] .suha-band{
  background-position: center, calc(100% + 560px) center !important;
}

@media (max-width: 768px){
  html[lang="en"] .suha-band{
    background-position: center, center !important;
  }
}
