/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fbfd;
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1616627980736-529dfb6bcb00') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 70, 140, 0.7); /* Ice blue overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #00b4ff;
  color: #fff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0088cc;
}
/* Reusable Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* About Section */
.about {
  background-color: #ffffff;
  color: #333;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #004a99;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
/* Products Section */
.products {
  background-color: #f0f8ff;
  padding: 60px 0;
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #004a99;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #333;
}
/* Why Choose Us Section */
.why-choose-us {
  background-color: #ffffff;
  padding: 60px 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #004a99;
  margin-bottom: 40px;
  font-weight: 700;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.reason-card {
  background-color: #f0f8ff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card img {
  width: 60px;
  margin-bottom: 20px;
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #002e66;
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
/* Contact Section */
.contact {
  background-color: #f0f8ff;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #004a99;
  font-weight: 700;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  color: #222;
}

.contact-details a {
  color: #004a99;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #002e66;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
}
footer {
  text-align: center;
  padding: 2rem;
  background-color: rgba(224, 210, 210, 0.8);
}

.social-icons a {
  color: rgb(255, 255, 255);
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1da1f2; /* Example hover color */
}
.products-page {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.products-page h2 {
  font-size: 2.5rem;
  color: #004a99;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.products-page p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #222;
}

.product-card p {
  font-size: 1rem;
  font-weight: bold;
  color: #004a99;
}
.header {
  background-color: #004a99;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar {
  display: flex;
  gap: 25px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ffcc00;
}
/* Cart Styles */
.open-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #004a99;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  z-index: 1100;
}

.cart {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  box-sizing: border-box;
  transition: right 0.3s ease-in-out;
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.cart.open {
  right: 0;
}

.cart h3 {
  margin-bottom: 15px;
  color: #004a99;
}

#cart-items {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 15px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.cart-item-name {
  font-weight: 600;
  flex: 1;
}

.cart-item-qty {
  width: 50px;
  text-align: center;
  margin: 0 10px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #d9534f;
  font-weight: bold;
  cursor: pointer;
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #004a99;
}

#checkout-btn {
  background-color: #ffcc00;
  border: none;
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 10px;
}

#close-cart {
  background-color: #004a99;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
}
.highlight-btn {
  background: linear-gradient(to right, #00b4db, #0083b0);
  color: white;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 132, 180, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.highlight-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 132, 180, 0.5);
}
.btn {
  background-color: #004a99;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #003366;
}

