/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #00264d; /* Navy Blue */
  color: white;
  padding: 10px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  height: 100px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  font-weight: 600;
  font-size: 18px;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #003366, #004080);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-family: "Apple Chancery", cursive;
  font-size: 3.8rem; 
  margin-bottom: 10px;
}

.hero .company-name {
  font-family: "Apple Chancery", cursive; 
  font-size: 3.0rem; 
  font-weight: bold
}

.hero .company-tagline {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 300;
  color: #fff;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background: #cc9900; /* Gold */
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s;
}

form button.btn {
  display: block;
  margin: 20px auto; /* 20px top/bottom spacing, auto left/right */
}

.btn:hover {
  background: #e6b800;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section.alt {
  background: #f4f8fb;
}

.section h2 {
  font-family: "Apple Chancery", cursive;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  color: #00264d;
}

#about p {
  text-align: justify;
  margin-bottom: 1.2em;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.value {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
}

.value h3 {
  color: #004080;
  margin-bottom: 10px;
}

/* Product List & Industries List */
.product-list,
.industries-list {
  list-style: none;
  text-align: center;
}

.product-list li,
.industries-list li {
  font-size: 1.1rem;
  padding: 5px 0;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 0 auto;
}

form label {
  font-size: 1.1rem; 
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

form input,
form textarea {
  font-size: 1.1rem; 
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form textarea {
  font-size: 1.1rem; 
  min-height: 120px;
}

form input[type="checkbox"] {
  transform: scale(1.2);
  width: auto;
  margin-right: 6px;
}

form button {
  margin-top: 20px;
}

form-status {
  margin-top: 10px;
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  font-size: 1.1rem;
  margin-top: 30px;
  text-align: center;
}

.separator {
  border: none;
  height: 2px;
  background-color: #ccc; /* or your preferred color */
  margin: 20px auto;
  width: 90%;
}

/* Footer */
footer {
  background: #00264d;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 10px 0;
  }
  .hero {
    padding: 60px 20px;
  }
}

