:root {
  --brand-blue: #0072CE;
/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}

/* HEADER / MENU */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  z-index: 999;
  transition: all 0.3s ease;
}
.navbar.transparent {
  background-color: transparent;
  color: #fff;
}
.navbar.scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
.navbar .menu li a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: #0e85e8;
}
.logo img {
  height: 50px;
  transition: transform 1.2s ease;
}
.logo-spin {
  animation: spin-logo 1.5s ease;
}
@keyframes spin-logo {
  0% { transform: rotate(0deg) scale(0.6); opacity: 0; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-content {
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
}
.hero .highlight {
  color: #0e85e8;
}
.down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 40px;
  background-color: #0e85e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.15); }
  100% { transform: translateX(-50%) scale(1); }
}
/* About Us Preview Section */
#about-preview {
  background: linear-gradient(to bottom, #ffffff, #eef2fb);
  padding: 60px 30px;
}
/* About Us Preview Section */
#about-preview {
  background: linear-gradient(to bottom, #ffffff, #eef2fb);
  padding: 60px 30px;
}
.about-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}
.about-preview-text {
  flex: 1;
  padding: 20px;
}
.about-preview-text h2 {
  font-size: 32px;
  color: #0e85eb;
  margin-bottom: 15px;
}
.about-preview-text p {
  font-size: 18px;
  color: #333;
}
.read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0e85eb;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}
.about-preview-image {
  flex: 1;
  text-align: center;
}
.about-preview-image img {
  max-width: 100%;
  border-radius: 10px;
}
/* === WHY CHOOSE US SECTION === */
:root {
  --brand-blue: #0072CE;
  --gray-text: #555;
}

.why-us {
  padding: 100px 40px;
  background: linear-gradient(to bottom, #ffffff, #f6f6f6);
}

.why-us-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.why-us-left {
  flex: 1 1 300px;
  max-width: 500px;
}

.why-us-left h2 {
  color: var(--brand-blue);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.why-us-subtitle {
  font-size: 16px;
  color: var(--gray-text);
}

.why-us-right {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.why-text {
  flex: 1;
}

.why-title {
  color: var(--brand-blue);
  font-weight: bold;
  margin: 0;
  font-size: 16px;
}

.why-desc {
  color: var(--gray-text);
  margin: 5px 0 0;
  font-size: 14px;
}

/* Optional: responsiveness */
@media (max-width: 768px) {
  .why-us-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-item {
    justify-content: center;
    text-align: left;
  }

  .why-item img {
    margin-bottom: 10px;
  }
/* === PARTNER COMPANIES SECTION === */
.partner-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.partner-section h2 {
  font-size: 26px;
  color: #007bff; /* Brand blue */
  margin-bottom: 30px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.partner-logos a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logos img {
  height: 100px;
  object-fit: contain;
  max-width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logos a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.5); /* soft blue glow */
}
.site-footer {
  background-color: #001f3f;
  color: white;
  padding: 40px 20px;
  font-family: Poppins, sans-serif;
  text-align: center;
}
.site-footer a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
}
.site-footer a:hover {
  text-decoration: underline;
}
.footer-logo-centered {
  margin-bottom: 15px;
}
.footer-logo-centered img {
  display: block;
  margin: 0 auto;


}/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1f2937;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar .logo img {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  color: #1f2937;
}
.nav-links a.active,
.nav-links a:hover {
  color: #0077b6;
}
.language-toggle {
  display: flex;
  gap: 0.5rem;
}
.language-toggle button {
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  color: #1f2937;
}
.language-toggle .active {
  text-decoration: underline;
}

/* ========== MAIN PAGE ========== */
.contact-page {
  padding: 7rem 2rem 3rem;
}
.page-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* ========== VIEW TOGGLE ========== */
.view-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.view-toggle button {
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  border: 2px solid #003366;
  background-color: transparent;
  color: #003366;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.view-toggle button.active,
.contact-section.office .view-toggle #officeBtn,
.contact-section.factory .view-toggle #factoryBtn {
  background-color: #003366;
  color: white;
}

/* ========== CONTACT SECTION BACKGROUND ========== */
.contact-section.office {
  background-color: #e6f4ff;
  color: #1f2937;
  transition: all 0.3s ease;
}
.contact-section.factory {
  background-color: #003366;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* ========== CONTACT INFO BLOCKS ========== */
.info {
  display: none;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}
.info-office,
.info-factory {
  display: flex;
}
.contact-details {
  flex: 1 1 300px;
}
.contact-details p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-details a {
  color: inherit;
  font-weight: bold;
}
.map {
  flex: 1 1 300px;
}
.map img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* ========== FOOTER ========== */
footer {
  background-color: #002244;
  color: white;
  padding: 2rem;
  font-size: 0.9rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img {
  height: 60px;
}
.footer-contact p {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: white;
  font-weight: bold;
}
.quick-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.quick-links a {
  color: white;
  font-size: 0.9rem;
}
.quick-links a:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .view-toggle {
    flex-direction: column;
    align-items: center;
  }
  .info {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

/* ===== Mobile fixes (stack + comfortable spacing) ===== */
@media (max-width: 768px){
  /* Stack the two columns */
  .about-preview{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    padding:0 16px;
  }
  .about-preview-text{
    width:100%;
    text-align:center;              /* center copy on mobile */
  }
  .about-preview-text h2{ margin:0 0 10px; }
  .about-preview-text p{ line-height:1.9; }

  .about-preview-image{
    width:100%;
    display:flex; justify-content:center;
  }
  .about-preview-image img{
    width:92%;                       /* big, readable image */
    height:auto; border-radius:12px;
  }

  /* Why-Us: one per row for readability */
  .why-us-right{
    display:grid;
    grid-template-columns:1fr;       /* single column */
    gap:14px;
  }
  .why-item{
    align-items:center;
    padding:12px;
  }
  .why-item img{
    height:60px !important;          /* icons fit better */
  }
}

/* Optional: keep hero text from overflowing on small screens */
@media (max-width: 480px){
  .hero .hero-content h1{
    font-size:1.6rem;
    line-height:1.35;
  }
}
/* ===== Mobile polish (≤ 768px) ===== */
@media (max-width: 768px){

  /* Use the full screen width and remove side gutters */
  .about-preview{
    display: block;          /* stop any desktop grid/flex columns */
    width: 100%;
    max-width: 100%;
    padding: 0 14px;         /* small, even padding */
    margin: 0 auto;
  }

  /* Text block */
  .about-preview-text{
    text-align: center;
    margin: 0 0 16px;
  }
  .about-preview-text h2{
    font-size: 1.4rem;
    margin: 0 0 8px;
  }
  .about-preview-text p{
    font-size: .98rem;
    line-height: 1.9;
    margin: 0 0 14px;
  }
  .about-preview .read-more{
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
  }

  /* Image block: big and centered */
  .about-preview-image{
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .about-preview-image img{
    width: 96%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
  }

  /* Why Us: single column, comfy spacing */
  .why-us { padding: 32px 14px; }
  .why-us-left { text-align: center; margin-bottom: 12px; }
  .why-us-right{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
  }
  .why-item img{ height: 56px !important; width: auto; }
  .why-title{ font-size: 1rem; margin: 0 0 4px; }
  .why-desc{ font-size: .95rem; margin: 0; }

  /* Partner sections: tighten spacing and logo sizes */
  #partners, #distribution{
    padding: 36px 14px !important;
  }
  #partners img, #distribution img{
    height: 72px !important;
  }

  /* Hero text won’t overflow */
  .hero .hero-content h1{
    font-size: 1.6rem;
    line-height: 1.35;
  }
}

/* ===== Very small phones (≤ 380px) ===== */
@media (max-width: 380px){
  .about-preview-image img{ width: 100%; max-width: none; }
  .hero .hero-content h1{ font-size: 1.45rem; }
}
}