/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
header {
  background: linear-gradient(90deg, #004aad, #d32f2f, #d4af37);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

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

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover, .nav-links .active {
  color: gold;
}

#language-selector {
  background: #fff;
  color: #222;
  border: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #004aad, #d32f2f);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: gold;
  color: #000;
}

.btn-primary:hover {
  background: #fff;
  color: #004aad;
}

.btn-secondary {
  background: transparent;
  border: 2px solid gold;
  color: gold;
}

.btn-secondary:hover {
  background: gold;
  color: #000;
}

/* About Preview */
.about-preview {
  text-align: center;
  padding: 3rem 2rem;
  background: #f9f9f9;
}

/* Products Section */
.products-section, .product-highlights {
  padding: 3rem 5%;
  text-align: center;
}

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

.product-card, .product-item {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
  transition: 0.3s;
}

.product-card:hover, .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
  padding: 3rem 5%;
  text-align: center;
  background: #fefefe;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

#contact-form {
  flex: 1 1 350px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form input, #contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
}

.map-container {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: linear-gradient(90deg, #004aad, #d32f2f, #d4af37);
  color: white;
  text-align: center;
  padding: 1.5rem 2rem;
}

.footer-logo {
  width: 100px;
  margin-bottom: 0.5rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: gold;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Compact Map Layout */
.contact-container.compact {
  align-items: flex-start;
}

.contact-info-card {
  flex: 1 1 350px;
  max-width: 450px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-small {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
/* About Page Enhancements */
.about-hero {
  background: linear-gradient(to right, #004aad, #d32f2f);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.about-hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-section {
  padding: 3rem 5%;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1 1 500px;
  text-align: justify;
}

.about-text h2 {
  color: #004aad;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 350px;
  text-align: center;
}

.about-image img {
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 5%;
  background: #fff;
}

.mv-card {
  flex: 1 1 300px;
  background: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

/* Core Values */
.core-values {
  background: #f9f9f9;
  text-align: center;
  padding: 3rem 5%;
}

.core-values h2 {
  color: #d32f2f;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-box {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #eee;
  transition: 0.3s;
}

.value-box:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.products {
  text-align: center;
  padding: 3rem 5%;
}

.products h1 {
  color: #004aad;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

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

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem;
  color: #d32f2f;
}

/* Modal Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: popIn 0.3s ease;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #d32f2f;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.quote-btn {
  background: linear-gradient(to right, #004aad, #d32f2f);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 1rem;
}

.quote-btn:hover {
  background: gold;
  color: #000;
}
