.reviews-section {
  background: linear-gradient(to bottom right, #e0f4ff, #f9ffff);
  padding: 4rem 1rem;
  text-align: center;
}
.reviews-section h2 {
  color: #004080;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.reviews-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.review-card {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 64, 128, 0.15);
  text-align: center;
  min-width: 300px;
  max-width: 90%;
  transition: all 0.5s ease-in-out;
}
.review-card.active {
  display: flex;
  animation: fadeIn 0.6s ease-in;
}
.review-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.review-card h3 {
  margin: 0.5rem 0 0.2rem;
  color: #004080;
}
.review-card .stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.review-card .text {
  font-style: italic;
  color: #333;
  margin-bottom: 0.5rem;
}
.review-card .role {
  font-size: 0.85rem;
  color: #777;
}
.slider-buttons {
  margin-top: 1.5rem;
}
.slider-buttons button {
  background-color: #004080;
  color: white;
  border: none;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}
.slider-buttons button:hover {
  background-color: #0066cc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .review-card {
    padding: 1.5rem;
  }
}
.card-link {
  text-decoration: none;
  color: inherit;
}

.hover-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* Keep this inside css/styles.css */

body {
  font-family: sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  background-color: #004466;
  padding: 1rem 0;
}

nav .logo {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.info-section {
  background-color: #fff;
  padding: 4rem 0;
}

.product-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 8px;
}

.btn-primary {
  background-color: #004466;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
}

footer {
  background-color: #004466;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Navigation */
nav {
  background-color: #003366;
  padding: 10px 0;
}

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

nav .logo {
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background-color: #0059b3;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* Sections */
.info-section,
.products-section,
.contact-section,
.reviews-section {
  background: white;
  margin-top: 30px;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Product Cards */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.card h3 {
  margin: 10px 0;
}

.card:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

/* Reviews Section */
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.review {
  background-color: #eef1f5;
  padding: 20px;
  border-left: 5px solid #0059b3;
  border-radius: 6px;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}

/* Contact Form */
form label {
  display: block;
  margin: 10px 0 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Buttons */
.btn-primary {
  background-color: #0059b3;
  color: white;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #003f80;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
.contact-section {
  background-color: #e0f7f5; /* soft aqua background */
  padding: 3rem 1rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 198, 174, 0.25);
  margin-top: 3rem;
}

.contact-section h2 {
  color: #004080;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 3px solid #00c6ae;
  padding-bottom: 0.5rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #004080;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #00c6ae;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #004080;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 2px solid #004080;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00c6ae;
  box-shadow: 0 0 8px rgba(0, 198, 174, 0.5);
}

.btn-primary {
  background-color: #00c6ae;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #009a84;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: #004080;
}
.contact-section {
  background-color: #e0f7f5; /* soft aqua background */
  padding: 3rem 1rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 198, 174, 0.25);
  margin-top: 3rem;
}

.contact-section h2 {
  color: #004080;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 3px solid #00c6ae;
  padding-bottom: 0.5rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #004080;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #00c6ae;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #004080;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 2px solid #004080;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00c6ae;
  box-shadow: 0 0 8px rgba(0, 198, 174, 0.5);
}

.btn-primary {
  background-color: #00c6ae;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #009a84;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: #004080;
}
