/*==============================================
  AMANTECH — Custom Styles
  Supplements styles-LTR.css with styles for:
  - Heading font (Exo 2 — matches logo)
  - Page banner (sub-pages)
  - Home page teaser cards
  - Technologies section
  - Why Choose Us section
  - Process section
================================================*/

/* ──────────────────────────────────────────────
   HEADING FONT — Exo 2 (matches AMANTECH logo)
────────────────────────────────────────────── */

/* Section titles */
.section-title,
.section-heading .section-title,
body.dark-theme .section-heading .section-title {
  font-family: 'Arima Madurai', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
}

/* Hero title */
.hero-title,
.page-hero .hero-text-area .hero-title {
  font-family: 'Arima Madurai', sans-serif !important;
  font-weight: 900 !important;
}

/* Page banner title */
.page-banner-title {
  font-family: 'Arima Madurai', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Card / box headings */
.service-title,
.feature-title,
.step-title,
.tech-category-title,
.teaser-title,
.footer-col-title,
h4.tm-name {
  font-family: 'Arima Madurai', sans-serif !important;
  font-weight: 700 !important;
}

/* FAQ headings */
.faq-title .faq-btn {
  font-family: 'Arima Madurai', sans-serif !important;
  font-weight: 700 !important;
}

/* ──────────────────────────────────────────────
   PAGE BANNER (inner pages header area)
────────────────────────────────────────────── */
.page-banner {
  padding: 140px 0 70px;
  background-color: #060d08;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  border-bottom: 3px solid #228058;
  overflow: hidden;
}

/* Dark overlay so text always reads cleanly regardless of background */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 8, 5, 0.45) 0%,
    rgba(6, 13, 8, 0.35) 50%,
    rgba(4, 10, 5, 0.55) 100%
  );
  z-index: 0;
}

/* ── Per-page SVG backgrounds ── */
.page-banner.banner-about {
  background-image: url('../assets/images/banners/banner-about.svg');
}

.page-banner.banner-services {
  background-image: url('../assets/images/banners/banner-services.svg');
}

.page-banner.banner-server {
  background-image: url('../assets/images/banners/banner-server.svg');
}

.page-banner.banner-contact {
  background-image: url('../assets/images/banners/banner-contact.svg');
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  font-size: 0.88rem;
  opacity: 0.72;
}

.page-breadcrumb li + li::before {
  content: '›';
  margin-right: 8px;
  opacity: 0.6;
}

.page-breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.page-breadcrumb a:hover {
  opacity: 1;
}

/* ──────────────────────────────────────────────
   HOME PAGE TEASER CARDS
────────────────────────────────────────────── */
.home-teaser {
  padding: 80px 0;
}

.home-teaser-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.home-teaser-card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  color: inherit;
  text-decoration: none;
}

.home-teaser-card .teaser-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.home-teaser-card .teaser-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-teaser-card .teaser-text {
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.72;
  margin: 0;
}

/* ──────────────────────────────────────────────
   TECHNOLOGIES SECTION
────────────────────────────────────────────── */
.technologies .tech-grid {
  margin-top: 20px;
}

.tech-category {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px 22px;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-category:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tech-category-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
}

.tech-category-title i {
  margin-right: 8px;
  opacity: 0.75;
}

.tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-list li {
  font-size: 0.88rem;
  padding: 5px 0;
  opacity: 0.78;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity 0.2s;
}

.tech-list li:last-child {
  border-bottom: none;
}

.tech-list li::before {
  content: '›';
  margin-right: 8px;
  opacity: 0.5;
}

.tech-category:hover .tech-list li {
  opacity: 0.92;
}

/* ──────────────────────────────────────────────
   WHY CHOOSE US SECTION
────────────────────────────────────────────── */
.why-choose-us .feature-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 32px 28px;
  height: 100%;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us .feature-box:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  opacity: 0.85;
  line-height: 1;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.78;
  margin: 0;
}

/* ──────────────────────────────────────────────
   PROCESS SECTION
────────────────────────────────────────────── */
.our-process .process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}

.process-step {
  flex: 1 1 160px;
  max-width: 200px;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.step-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -0.02em;
  user-select: none;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

.step-title {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.83rem;
  line-height: 1.65;
  opacity: 0.72;
  margin: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  padding-top: 52px;
  font-size: 1.1rem;
  opacity: 0.3;
  flex-shrink: 0;
}

/* Stack vertically on small screens */
@media (max-width: 767px) {
  .our-process .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 340px;
    width: 100%;
  }

  .process-connector {
    padding-top: 0;
    padding: 4px 0;
    transform: rotate(90deg);
  }
}

/* ──────────────────────────────────────────────
   GENERAL IMPROVEMENTS
────────────────────────────────────────────── */

/* Tighter nav — remove icon clutter */
.main-navbar .nav-link .icon {
  display: none;
}

/* Footer address line breaks */
.contact-info-card .info br {
  display: block;
}

/* Ensure footer social icons have consistent spacing */
.page-footer .sc-list {
  gap: 8px;
}
