/* ==========================
   GENERAL RESET
   ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ==========================
   HEADER
   ========================== */
header {
  background-color: #004080;
  color: #fff;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

header h1 {
  font-size: 24px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #ffcc00;
}

/* ==========================
   HERO / PAGE HERO SECTION
   ========================== */
.hero,
.page-hero {
  position: relative;
  height: 500px;             
  min-height: 500px;         
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.hero-overlay,
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 64, 128, 0.5);
}

.hero-content,
.page-hero h2,
.page-hero p {
  position: relative;
  color: #fff;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* ==========================
   BUTTONS
   ========================== */
.btn {
  padding: 12px 30px;
  margin: 5px;
  background: #fff;
  color: #004080;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #004080;
  color: #fff;
}

/* ==========================
   SLIDER STYLING
   ========================== */
.slider-container {
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  flex: 0 0 250px;
  margin: 0 10px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease;
}

.slider-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.slider-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.slider-item h3 {
  color: #004080;
}

/* ==========================
   SLIDER BUTTONS
   ========================== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

/* ==========================
   PRODUCTS GRID
   ========================== */
.products-grid,
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
}

.products-grid .product,
.product-cards .card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease;
}

.products-grid .product:hover,
.product-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.products-grid .product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.products-grid .product h3,
.product-cards .card h4 {
  color: #004080;
}

/* ==========================
   GENERIC SECTIONS
   ========================== */
.section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
}

.section h3 {
  color: #004080;
  font-size: 24px;
  margin-bottom: 15px;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ==========================
   VALUES LIST
   ========================== */
.values ul {
  list-style: none;
  padding: 0;
}

.values ul li {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.values ul li i {
  color: #004080;
  margin-right: 10px;
  min-width: 20px;
}

/* ==========================
   CONTACT FORM
   ========================== */
.contact-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 15px;
}

.contact-section input, 
.contact-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-section button {
  background: #004080;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-section button:hover {
  background: #002050;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background-color: #004080;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media(max-width: 768px) {
  .hero {
    height: 400px;
    min-height: 400px;
  }
  .hero-content h2 { font-size: 36px; }
  .slider-item { flex: 0 0 200px; }
}

@media(max-width: 480px) {
  .hero {
    height: 300px;
    min-height: 300px;
  }
  .hero-content h2 { font-size: 28px; }
  .slider-item { flex: 0 0 150px; }
}
