@charset "UTF-8";
:root {
  --primary: #1B263B;      /* main brand color */
  --accent: #F4B400;       /* warm gold accent (buttons, stats) */
  --text: #0F172A;         /* near‑black text */
  --bg: #F5F5F7;           /* light neutral background */
  --cta-hover: #D97706;    /* darker gold / amber on hover */
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed; /* Keeps the depth as you scroll */
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--primary);
}

.site-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin-left: 20px;
}

.site-nav a {
  text-decoration: none;
  color: #333;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
  }
  body.nav-open .site-nav ul {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}
/* ------------------------------
   NEW FIRST SECTION (Intro Image)
------------------------------ */
.intro-image-section {
  width: 100%;
  padding: 40px 0; /* add breathing room */
  display: flex;
  justify-content: center;
}

.intro-image-container {
  width: 100%;
  max-width: 900px; /* LIMIT IMAGE SIZE — adjust as needed */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px; /* optional, looks cleaner */
}

.intro-fade-image {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInImage 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------------
   NEW — 2 VIDEO COLUMN SECTION
---------------------------------------- */
.intro-video-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-top: -10px; /* pulls it closer to the H2 */
  margin-bottom: 30px; /* spacing before the videos */
  line-height: 1.5;
}

.intro-video-title {
  text-align: center;
  font-size: 2.4rem; /* bigger title */
  font-weight: 700; /* bold */
  margin-bottom: 25px; /* space above videos */
  color: #111; /* adjust if needed */
}

.intro-video-section {
  padding: 40px 0;
}

.intro-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.video-box {
  width: 100%;
  overflow: hidden; /* required so trim is hidden */
  border-radius: 10px;
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center -125px; /* adjust this to cut slightly */
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
  .intro-video-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Section 2.5 ===== */
.image-text-section {
  width: 100%;
  padding: 60px 0;
}

.image-text-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}

.image-text-left img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.image-text-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.image-text-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.flag-icon {
  width: 22px; /* size control */
  height: auto;
  vertical-align: -0.2em; /* alignment fix */
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .image-text-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .image-text-left img {
    max-width: 90%;
    margin: 0 auto;
  }
}
/* ===== Main Hero Section ===== */
.hero {
  padding: 80px 0;
  background: var(--bg);
}
.hero .hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.hero .hero-left h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero .hero-left p {
  font-size: 1.2rem;
  color: #555;
}
.hero .hero-right .services-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hero .hero-right .service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.hero {
  /* Tablet */
}
@media (max-width: 992px) {
  .hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .hero-right .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features {
  padding: 80px 0;
  background: #fff;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: #f0f2f5;
  padding: 20px;
  border-radius: 8px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-scroll {
  position: relative;
  padding: 20px;
  background: var(--bg);
  border-radius: 20px;
  height: auto;
  overflow: visible;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px 16px 20px 16px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: auto;
  line-height: 1.2;
}

















/* ══════════════════════════════════
   OUR CUSTOMERS — Section 3
══════════════════════════════════ */
.portfolio-section--main > .portfolio-section-title h2 {
  font-size: 2rem !important;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-family: "Segoe UI", sans-serif;
}

/* Kill the :not rule that was winning */
.portfolio-section:not(:first-of-type) .portfolio-section-title h2 {
  font-size: 2rem; /* match so it no longer fights */
}

.portfolio-section {
  padding: 80px 40px;
  background: transparent;
  color: #0F172A;
  box-sizing: border-box;
}

.portfolio-section:first-of-type {
  padding-top: 60px;
  padding-bottom: 30px;
}

.portfolio-section:not(:first-of-type) {
  padding-top: 60px;
  padding-bottom: 30px;
}

/* Title area */
.portfolio-section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* "Our Customers" main heading */


/* Company headings in slides */


/* Company logo */
.company-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  filter: none;
  transition: none;
}

.portfolio-section-title .company-logo {
  max-width: 200px;
  width: auto;
  filter: none;
  transition: none;
}

.portfolio-section-title .company-logo:hover {
  transform: none;
  filter: none;
}

/* Market subtitle */
.market-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
}

/* "Over 60 distributors" line — remove white gradient bg */
.portfolio-section-title .market-subtitle:last-of-type {
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
  background: none;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
}

.flag-icon {
  width: 28px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  border: none;
  transform: none;
  animation: none;
}

/* Kill glow animation */
@keyframes subtle-glow { from {} to {} }

/* Main grid */
.portfolio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-media-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.portfolio-slide .portfolio-media-section {
  display: block;
  grid-template-columns: none;
  width: 100%;
}

.company-showcase {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  background: #0D1117;
}

.company-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 500px;
  width: 100%;
  background: #0D1117;
}

.portfolio-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right column text */
.portfolio-text-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 20px;
}

.portfolio-text-content h2 {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin: 0;
}

.portfolio-text-content p {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: rgba(15,23,42,0.55);
  line-height: 1.6;
  margin: 0;
}

.address-link {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: rgba(15,23,42,0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.address-link:hover {
  color: #1E3A8A;
}

/* Testimonial */
.testimonial-quote {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(15,23,42,0.65);
  line-height: 1.7;
  border-left: 3px solid #1E3A8A;
  padding-left: 16px;
  margin: 0;
}

.testimonial-quote strong {
  color: #0F172A;
  font-weight: 600;
  font-style: normal;
}

/* Scope box */
.scope-box {
  background: #0D1117;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid #1E3A8A;
  border-radius: 12px;
  padding: 20px 24px;
}

.scope-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope-list li {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding-left: 14px;
  position: relative;
}

.scope-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3B82F6;
}

/* Portfolio section spacing */
.portfolio-section + .portfolio-section {
  margin-top: 0;
}


/* ══════════════════════════════════
   PORTFOLIO SLIDER
══════════════════════════════════ */

.portfolio-slider-wrapper,
.portfolio-slider-container,
.portfolio-slider-section,
.portfolio-slide {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.portfolio-slider-section {
  padding: 0 40px 80px;
  background: transparent;
  margin-top: 0;
  box-sizing: border-box;
}

.portfolio-slider-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.portfolio-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;   /* already set but check portfolio.scss too */
  box-shadow: none;
}

.portfolio-slide {
  display: none;
  background: transparent;   /* ensure no white bg on any slide */
  padding: 40px;
  transition: opacity 0.5s ease-in-out;
}
.portfolio-slide.active {
  display: block;
  animation: slideIn 0.4s ease-out;
}

.portfolio-slide .portfolio-section {
  padding: 0;
  background: transparent;
}

.portfolio-slide .portfolio-section-title {
  margin-bottom: 40px;
}

/* Logo heading in slides */
.portfolio-logo-heading {
  margin: 0 0 8px;
  padding: 0;
  line-height: 1;
}

.portfolio-logo-heading img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* Slide market subtitle */
.portfolio-slide .market-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(15,23,42,0.55);
  margin: 4px 0 0;
}

.portfolio-slide .flag-icon {
  width: 28px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.portfolio-slide .flag-icon:hover {
  transform: scale(1.05);
}

/* Slider navigation */
.slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0;
  border-top: none;
}

.slider-prev,
.slider-next {
  background: #0D1117;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: none;
}

.slider-prev:hover,
.slider-next:hover {
  background: #1E3A8A;
  color: #fff;
  border-color: #1E3A8A;
  transform: none;
  box-shadow: none;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;        /* perfect circle, not pill */
  background: rgba(15,23,42,0.2);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1B263B;       /* match --primary navy, same as arrow buttons */
  width: 8px;                /* same size as inactive — no pill stretch */
  height: 8px;
  border-radius: 50%;
  transform: scale(1.3);     /* slightly bigger, not pill-shaped */
  border-color: transparent;
}

.dot:hover {
  background: rgba(15,23,42,0.4);
  transform: none;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #1E3A8A;
  transition: width 0.1s ease-out;
  border-radius: 0 2px 2px 0;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .portfolio-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portfolio-media-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .portfolio-text-section {
    padding-left: 0;
    text-align: left;
  }
  .portfolio-slide .portfolio-section {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 20px;
  }
  .portfolio-section:first-of-type {
    padding-bottom: 15px;
  }
  .portfolio-section:not(:first-of-type) {
    padding-top: 15px;
  }
  .portfolio-section:first-of-type .portfolio-section-title h2 {
    font-size: 1.8rem;
  }
  .portfolio-section:not(:first-of-type) .portfolio-section-title h2 {
    font-size: 1.4rem;
  }
  .company-showcase,
  .portfolio-video {
    height: 300px;
  }
  .portfolio-slider-section {
    padding: 0 20px 60px;
  }
  .portfolio-slide {
    padding: 24px 20px;
  }
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  .dot.active {
    width: 20px;
  }
}

/*# sourceMappingURL=style.css.map */

:root {
  --primary: #1B263B;
  --accent: #F4B400; /* This Gold looks great against Navy */
  --text: #0F172A;
  /* Updated Gradient for better depth */
  --bg-gradient: linear-gradient(135deg, #D8DBE2 0%, #F8F9FA 100%);
  --cta-hover: #D97706;
}
