/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header */
header {
  background: #3e268b; /* purple */
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff9900; /* Accent orange */
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,64,128,0.7), rgba(0,64,128,0.7)), url('hero-image.jpg') center/cover no-repeat;
  color: #dec828;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #cc7a00;
}

/* Sections */
section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  color: #dec828;
  margin-bottom: 1rem;
  font-size: 2rem;
}

/* Product Cards */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: #004080;
  margin-bottom: 0.5rem;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #004080;
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 5px;
}

form button:hover {
  background: #003060;
}

/* Footer */
footer {
  background: #3e268b;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Navigation bar */
nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #ff9900;
  border-radius: 5px;
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,64,128,0.7), rgba(0,64,128,0.7)), 
              url('assets/hero-image.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo {
  width: 120px;   /* Adjust size */
  height: auto;
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Makes logo pop */
}
/* Logo styling */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  height: 50px;   /* Adjust size */
  width: auto;
}


