:root {
  --primary: #09162d;
  --secondary: #76777a;
  --dark: #2e353e;
  --light: #f7f7f7;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #777;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-weight: 700;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.text-primary {
  color: var(--primary) !important;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s;
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
}

.logo-header {
  border-radius: 7.5px;
  width: 175px;
  height: auto;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/2.jpg");
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
  color: white;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-top: 15px;
}

.section-title.text-center:after {
  margin-left: auto;
  margin-right: auto;
}

.service-box {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.service-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial {
  background-color: var(--light);
  padding: 5rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

footer {
  background-color: var(--dark);
  color: #aaa;
  padding: 5rem 0 2rem;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: white;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #444;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 5px;
}

.social-icons a:hover {
  background: var(--primary);
}

.bg-secondary-light {
  background-color: rgba(118, 119, 122, 0.1);
}

.product-image {
  height: 300px;
  object-fit: cover;
}

/* Educational Section Styles */
.educational-section {
  background-color: var(--light);
  padding: 5rem 0;
}

.fact-box {
  background: white;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.fact-box:hover {
  transform: translateY(-5px);
}

.fact-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.fact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
}

/* Offers Section Styles */
.offers-section {
  padding: 5rem 0;
}

.offer-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-header {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.offer-body {
  padding: 2rem;
}

.offer-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.offer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Shop Now Button Styles */
.btn-shop-now {
  background-color: var(--primary);
  color: white !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-shop-now:hover {
  background-color: var(--dark);
  color: white !important;
  transform: translateY(-2px);
}

.btn-shop-now:active {
  transform: translateY(0);
}

.btn-shop-now i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}
