/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #0066cc;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #0066cc;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header styles */
.header {
  background-color: #1e3a8a;
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.nav-menu {
  display: flex;
}

.nav-item {
  margin-left: 20px;
  position: relative;
}

.nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0066cc;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1e3a8a;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  margin-top: 1px;
}

.nav-item:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #333;
 }

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Hero section */
.hero {
  background-color: #1e3a8a;
  color: white;
  padding: 150px 0 80px;
  text-align: center;
}

.hero-logo {
  max-width: 200px;
  margin: 0 auto 30px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0052a3;
}

/* Products section */
.products {
  background-color: #f9f9f9;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.product-icon {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  background-color: #f9f9f9;
}

.product-icon img {
  height: 100px;
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0066cc;
}
.product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.product-description {
  color: #666;
  margin-bottom: 15px;
}

.product-link {
  display: inline-block;
  color: #0066cc;
  font-weight: 500;
  transition: color 0.3s;
}

.product-link:hover {
  color: #0052a3;
}

/* About section */
.about {
  background-color: white;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.founder-message {
  font-style: italic;
  position: relative;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-top: 40px;
}

.founder-message:before {
  content: '"';
  font-size: 60px;
  color: #0066cc;
  position: absolute;
  top: -20px;
  left: 10px;
  opacity: 0.3;
}

/* Careers section */
.careers {
  background-color: #f9f9f9;
}

.careers-content {
  max-width: 800px;
  margin: 0 auto;
}

.job-list {
  margin-top: 40px;
}

.job-item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-title {
  font-size: 20px;
  color: #0066cc;
  margin-bottom: 10px;
}

.apply-info {
  margin-top: 40px;
  padding: 20px;
  background-color: #e6f0ff;
  border-radius: 8px;
}

/* Contact section */
.contact {
  background-color: white;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-email i {
  color: #0066cc;
  margin-right: 10px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Coming Soon page */
.coming-soon {
  text-align: center;
  padding: 100px 0;
}

.coming-soon h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0066cc;
}

.coming-soon p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Legal pages */
.legal {
  background-color: white;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  font-size: 24px;
  color: #0066cc;
  margin-bottom: 15px;
}

.legal-section p {
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0066cc;
}

.footer-link {
  color: #ccc;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  color: #ccc;
}

.tagline {
  text-align: center;
  padding: 40px 0;
  background-color: #0066cc;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    margin-left: 20px;
  }
}

