/*
Theme Name: Avant Theme
Author: EP
Version: 1.0
*/

/* ========== Base Styles ========== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #0f0f0f;
  color: #f2f2f2;
}

a {
  color: #00d4b4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.gap-60 {
  gap: 60px;
}

/* ========== Header ========== */
/* Header wrapper */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 12px 30px;

  display: flex;
  align-items: center;
  justify-content: center;  /* center content horizontally */

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent by default */
.site-header.transparent {
  background: transparent;
}

/* Solid dark background on scroll */
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Logo + Nav grouped */
.header-container {
  display: flex;
  align-items: center;
  gap: 420px; /* space between logo and nav */
}

/* Logo */
.logo.orbit-logo img {
  height: 120px; /* adjust as needed */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navigation */
.main-navigation {
  width: auto;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation li a {
  color: #fff;
  font-weight: 600;
  padding: 8px 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transition: color 0.3s;
  text-decoration: none;
}

.main-navigation li a:hover {
  color: #00d4b4;
}



/* ========== Language Switcher ========== */
.language-switcher {
  position: absolute;
  top: 50px;
  right: 100px;
  z-index: 10000;
}

.language-switcher select {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.language-switcher .gt_float_switcher{
    font-size: 15px;
}
.language-switcher .gt_float_switcher img{
    width: 25px;

}
.language-switcher .gt_float_switcher .gt-selected .gt-current-lang{
	padding: 5px 10px;
}
/* ========== Responsive Styles ========== */
@media (max-width: 782px) {
  .site-header {
    padding: 20px;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 20px;
  }

  .language-switcher {
    top: 20px;
    right: 20px;
  }

  .logo.orbit-logo {
    margin-bottom: 20px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE (Burger Menu)
   ========================================================= */
@media (max-width: 900px) {

  /* Header layout */
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

.header-container {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 !important;
}

  /* Hide main menu initially */
  .main-navigation {
    display: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
    padding: 15px 0;
    margin-top: 15px;
  }

  /* Menu visible when active */
  .main-navigation.active {
    display: block !important;
  }

  /* Ensure the inner menu container is visible */
  .main-navigation .menu-container {
    display: block !important;
    width: 100%;
  }

  /* Make menu items readable */
  .main-navigation.active .menu a {
    color: #fff !important;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-left: 20px;
  }

  /* ===== Burger Button ===== */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 28px;
    right: 50px;
    z-index: 11000;
  }

  .menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Animate into X */
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Smaller logo */
  .logo.orbit-logo img {
    height: 70px;
  }

  /* Language Switcher reposition */
  .language-switcher {
    top: 100px;
    right: 50px;
  }

}   /* <-- THIS WAS MISSING */


/* ========== Hero Section ========== */
.hero-section {
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


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

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background-color: #00d4b4;
  color: #000;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s;
}

.button:hover {
  background-color: #00bfa6;
}

/* ========== Section Backgrounds ========== */
.light-bg {
  background-color: #fff;
  color: #111;
  padding: 80px 20px;
}

.dark-bg {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
}

.darker-bg {
  background-color: #0b0b0b;
  padding: 80px 20px;
}

.alt-bg {
  background-color: #00d4b4;
  color: #000;
  padding: 80px 20px;
}

/* ========== Section: Who We Are & What We Do ========== */
.who-we-are h2,
.what-we-do-section h2 {
  font-size: 32px;
}

.who-we-are .divider,
.what-we-do-section .divider {
  width: 60px;
  height: 4px;
  background-color: #00d4b4;
  margin: 20px 0;
}

.who-we-are p strong,
.what-we-do-section p strong {
  font-size: 24px;
  display: block;
  margin-bottom: 15px;
}

.who-we-are p,
.what-we-do-section p {
  font-size: 18px;
  line-height: 1.6;
}

/* Shared layout for image/text side-by-side */
.text-column {
  flex: 1 1 50%;
}

.image-column {
  flex: 1 1 40%;
}

.image-column img {
  width: 100%;
  border-radius: 8px;
}

.reverse-on-mobile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

@media (max-width: 768px) {
  .flex,
  .reverse-on-mobile {
    flex-direction: column;
  }

  .image-column,
  .text-column {
    flex: 1 1 100%;
  }
}

/* ========== Products Section ========== */
.products-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.products-section p {
  font-size: 18px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: #000;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #00d4b4;
}

.product-card h4 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #00d4b4;
}

/* ============================================= About Page Styles ================================== */

.hero-section blockquote {
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-left: 4px solid #00c2a8;
  max-width: 600px;
  margin: 0 auto;
}

/* === Vision Section === */
.vision-section {
  padding: 80px 20px;
  background-color: #0b0b0b;
  color: #f2f2f2;
}

.vision-section h2 {
  font-size: 2rem;
  color: #00d4b4;
  margin-bottom: 10px;
}

.grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.vision-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.vision-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vision-card {
  background-color: #263238;
  padding: 30px;
  border-left: 4px solid #00d4b4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.vision-card .icon {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: inline-block;
  color: #00d4b4;
}

.vision-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ========== About Company + Pillars + QA Section ========== */

.company-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.company-image img {
  width: 100%;
  border-radius: 8px;
}

.company-text h2,
.quality-assurance h2,
.pillars h2 {
  font-size: 2rem;
  color: #00d4b4;
  margin-bottom: 20px;
}

.company-text p,
.quality-assurance p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.center-text {
  text-align: center;
  margin-bottom: 40px;
}

.pillars {
  padding: 80px 20px;
}

.pillars-heading {
  text-align: center;
  font-size: 2rem;
  color: #00d4b4;
  margin-bottom: 10px;
}

.pillars .divider.center {
  width: 60px;
  height: 4px;
  background-color: #00d4b4;
  margin: 20px auto 40px auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pillar {
  background-color: #0f1e2e;
  color: #ffffff;
  padding: 30px;
  border-radius: 6px;
}

.pillar h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.pillar p {
  font-size: 1rem;
  line-height: 1.6;
}


/* === QA + Credentials Section With Image === */

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
}

.reverse-order {
  direction: rtl;
}
.reverse-order .company-text,
.reverse-order .company-image {
  direction: ltr;
}

.company-text h2 {
  font-size: 2rem;
  color: #00d4b4;
  margin-bottom: 10px;
}

.company-text .divider {
  width: 60px;
  height: 4px;
  background-color: #00d4b4;
  margin: 20px 0;
}

.company-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.company-image img {
  width: 100%;
  border-radius: 8px;
}

.credentials ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.credentials ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
}

.credentials ul li::before {
  content: '✔️';
  color: #00d4b4;
  margin-right: 0.5rem;
  position: absolute;
  left: -1.5rem;
}



/* ========== Footer ========== */

/* ========== Footer Top Section ========== */

.footer-contact-area {
  padding: 60px 20px;
  background-color: #2e7069; /* Brand background */
  color: #ffffff;
}

.footer-contact-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; /* 🔥 Center vertically */
  gap: 60px;
  min-height: 300px;
}

.footer-contact-text {
  flex: 1 1 50%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔥 Vertically align text */
}

.footer-contact-text p {
  font-size: 24px;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-text strong {
  font-weight: 600;
  color: #ffffff;
}

.contact-divider {
  width: 80px;
  height: 4px;
  background-color: #88d9cf;
  margin: 20px 0;
}

.contact-subtext {
  color: #c7d6d7;
  margin-top: 20px;
}

/* ========== Fluent Forms in Footer ========== */

.footer-contact-form {
  flex: 1 1 40%;
  max-width: 500px;
  font-family: 'Open Sans', sans-serif;
}

.footer-contact-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Input groups */
.footer-contact-form .ff-el-group {
  margin-bottom: 15px;
}

/* Labels */
.footer-contact-form label {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
}

/* Inputs and textarea */
.footer-contact-form input[type="text"],
.footer-contact-form input[type="email"],
.footer-contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #d9f4f2;
  border: none;
  border-radius: 2px;
  color: #081621;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  outline: none;
  background-color: #c8f0ec;
}

/* Submit Button */
.footer-contact-form .ff-btn-submit,
.footer-contact-form .ff-btn-submit.ff-btn,
.footer-contact-form button[type="submit"],
.footer-contact-form .ff-btn.ff-btn-submit.ff-btn-primary {
  background-color: #0A0A0A !important;
  color: #FFFFFF !important;
  font-weight: bold;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-contact-form .ff-btn-submit:hover {
  background-color: #e6be00 !important;
}

.footer-contact-form .ff-error-message {
  color: #ff5252;
  font-size: 13px;
  margin-top: 5px;
}

/* ========== Footer Bottom Section ========== */

.site-footer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 60px 20px 30px;
}

.footer-bottom-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

.footer-col {
  flex: 1 1 30%;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00d4b4;
}

.footer-address a {
  color: #ccc;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.footer-credits {
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #222;
  margin-top: 40px;
}


/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  .footer-contact-wrap,
  .footer-bottom-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .footer-contact-text,
  .footer-contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-contact-form h3 {
    margin-top: 30px;
  }
}
