:root {
  --primary-blue: #5A7B9C;
  --text-dark: #5A7B9C;
  --text-light: #5A7B9C;
  --white: #ffffff;
  --light-bg: #F4F7F9;
  --vr-filter-bg: #CFF4FC;
  --vr-filter-color: #2C4A6B;
  --footer-fg: #203a64; /* #5A7B9C; #e0e0e0; #e0e0e0; */
  --footer-bg: #9cacc7; /* #9cacc7; #1F354D; #008daf; */
}

ul{
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark) !important;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--text-dark) !important;
  font-size: 32px;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark) !important;
}

nav a:hover {
  color: var(--text-dark) !important;
}

@media (max-width: 480px) {
  nav a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  nav a {
    font-size: 14px;
  }
}


.btn-contact {
  background-color: var(--primary-blue) !important;
  color: var(--white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
}

.btn-contact:hover {
  background-color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background-image: url('../media/img/hero-bg.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.hero-text {
  max-width: 600px;
  position: absolute;
  top: 25%;
  left: 8%;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

/* --- Product Categories --- */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.product-section-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.product-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img-placeholder {
  width: 100%;
  background: #f0f4f8;
  ;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 40px;
  padding: 20px;
  box-sizing: border-box;
}

.product-img-placeholder img {
  max-width: 150%;
  max-height: 150%;
  object-fit: contain;
}

.product-section-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.product-card {
  /*height: 100%;*/
  transition: transform 0.3s ease;
  border-radius: 50%;
  background-image: radial-gradient(circle at center, #FEFEFE 0%, #E1F1FE 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.product-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.product-card-div{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-card-div h3{
  font-size: 25px;
}

/* --- About Section --- */
.about-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item i {
  font-size: 24px;
  color: #d4a373; /* Gold/Orange accent seen in image */
}

.stat-text strong {
  display: block;
  font-size: 18px;
  color: var(--text-dark);
}

.stat-text span {
  font-size: 12px;
  color: var(--text-light);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Vision & Mission --- */
.vm-section {
  padding: 80px 0;
  background: var(--white);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.vm-icon i {
  color: var(--text-dark) !important;
  font-size: 24px;
}

.vm-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.vm-card ul {
  text-align: left;
  padding-left: 20px;
}

.vm-card li {
  list-style-type: disc;
  margin-bottom: 10px;
  color: var(--text-light);
}

/* --- Footer --- */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-fg) !important;
  padding: 60px 0 20px;
  background-image: linear-gradient(rgba(31, 53, 77, 0.95), rgba(31, 53, 77, 0.95)), url('https://www.transparenttextures.com/patterns/cubes.png');
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--footer-fg) !important;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  /*text-align: center;*/
}

/*
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue) !important;
}
*/

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  flex-grow: 1;
}

.newsletter-form button {
  padding: 10px 15px;
  background: var(--primary-blue) !important;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  /*  justify-content: center;
    align-items: center;*/
}

.social-icons a {
  font-size: 20px;
  color: #ccc;
}

.social-icons a:hover {
  color: var(--white);
}

.copyright {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .about-grid, .vm-grid {
    grid-template-columns: 1fr;
  }
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.responsive-square {
  /* Scales to fill available width */
  width: 100%;
  border-radius: 50%;

  /* Prevents it from getting too large on desktop */
  max-width: 400px; /* Adjust as needed */

  /* Enforces a perfect 1:1 square ratio regardless of width */
  aspect-ratio: 1 / 1;

  /* Your exact radial gradient */
  background-image: radial-gradient(circle at center, #FEFEFE 0%, #E1F1FE 100%);

  /* Centers the div horizontally */
  margin: 0 auto;
}

/* Contact Page */
/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--text-dark));
  color: var(--white);
  padding: 22% 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 15px;
}

.breadcrumb {
  color: rgba(255,255,255,0.8);
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
  color: var(--white);
}

.text-separated{
  font-weight: bold;
  letter-spacing: 15px;
}

/* Products Grid */
.products-section {
  padding: 40px 0 80px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.product-info {
  padding: 25px;
}

.product-category {
  color: var(--primary-blue) !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-name {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  padding: 5px 0;
  color: var(--text-light);
  font-size: 14px;
}

.product-features li:before {
  content: "✓";
  color: var(--primary-blue) !important;
  margin-right: 8px;
  font-weight: bold;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.btn-inquiry {
  background: var(--primary-blue) !important;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
}

.btn-inquiry:hover {
  background: var(--text-dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--text-dark));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue) !important;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  nav ul {
    gap: 15px;
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--light-bg);
  padding: 50px 30px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue) !important;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* Contact Form */
.contact-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-blue) !important;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--primary-blue) !important;
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--text-dark);
}

/* Map Section */
.map-section {
  margin-bottom: 60px;
}

.map-container {
  background: var(--light-bg);
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--text-light);
}

.map-placeholder i {
  font-size: 60px;
  color: var(--primary-blue) !important;
  margin-bottom: 15px;
}

/* Business Hours */
.hours-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--text-dark));
  color: var(--white);
  padding: 60px 0;
  border-radius: 15px;
  margin-bottom: 60px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.hours-card {
  text-align: center;
}

.hours-card i {
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hours-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 15px;
}

.hours-card p {
  opacity: 0.9;
  line-height: 1.8;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 60px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.faq-item {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 16px;
}

.faq-answer {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 60px 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  /*text-align: center;*/
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 15px;
    font-size: 14px;
  }
}

.contact-header{
  background-image: url('../media/img/head-contact-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  text-align: left;
  position: relative;
}

.contact-header div h1{
  color: var(--white);
  font-size: 42px;
}

.contact-header div p{
  color: var(--white);
  font-size: 25px;
  text-shadow: 1px 1px 1px black, -1px -1px 1px white;
}

.about-header{
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background-image: url('../media/img/head-about-00.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.about-header div h1{
  color: var(--white);
  font-size: 42px;
  text-shadow: 1px 1px 1px black, -1px -1px 1px white;
}

.container h1{
  text-shadow: 2px 2px 2px black, -1px -1px 2px white;
}

.prod-header{
  background-image: url('../media/img/head-products-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  text-align: left;
  position: relative;
}

.prod-header div h1{
  color: var(--white);
  font-size: 42px;
}

.single-product-section .container h1 {
  text-shadow: none;
}

/* ===== تحسين عرض كرات المنتجات ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 كرات في كل سطر على اللابتوب */
  gap: 30px;
  margin-bottom: 80px;
}

.product-card-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.product-card-div:hover {
  transform: translateY(-5px);
}

.product-card-div h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

/* تنسيق الكرة نفسها */
.product-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: radial-gradient(circle at center, #FEFEFE 0%, #E1F1FE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  max-width: 250px; /* الحد الأقصى للكرة */
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== للشاشات المتوسطة (تابلت) ===== */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 كرات في كل سطر */
    gap: 25px;
  }
}

/* ===== للشاشات الصغيرة (موبايل) ===== */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 كرات في كل سطر */
    gap: 20px;
  }

  .product-card {
    max-width: 200px; /* تصغير حجم الكرة قليلاً على الموبايل */
    padding: 15px;
  }

  .product-card-div h3 {
    font-size: 16px;
  }
}

/* ===== للشاشات الصغيرة جداً ===== */
@media (max-width: 480px) {
  .products-grid {
    gap: 15px;
  }

  .product-card {
    max-width: 160px;
    padding: 12px;
  }

  .product-card-div h3 {
    font-size: 14px;
  }
}
/*===========================================================*/
.filter-section {
  background: var(--light-bg);
  padding: 15px 15px;
  position: sticky;
  top: 80px;
  z-index: 999;
  border-bottom: 1px solid rgba(90, 123, 156, 0.1);
}

@media (max-width: 480px) {
  .filter-section {
    top: 115px;
  }
}
@media (max-width: 768px) {
  .filter-section {
    top: 115px;
  }
}
@media (max-width: 1024px) {
  .filter-section {
    top: 115px;
  }
}

.cat, [id] {
  scroll-margin-top: 150px; /* Adjust this value to match your header height or desired gap */
}

.filter-btn {
  flex: 0 0 auto;
  padding: 10px 24px;
  border: 2px solid var(--primary-blue);
  background: var(--white);
  color: var(--primary-blue);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin: 0 2px;
  text-decoration: none;
}

.filter-btn:hover {
  background: var(--primary-blue);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(90, 123, 156, 0.3);
}

.filter-btn.active {
  background: var(--primary-blue);
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(90, 123, 156, 0.4);
}

.slider-container {
  position: relative;
  /*width: 90%;*/
  /*max-width: 1200px;*/
  /*margin: 50px auto;*/
  display: flex;
  align-items: center;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 10px;
}

.slider-track {
  display: flex;
  /* Smooth transition for sliding effect */
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.slide {
  flex-shrink: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
}

/* Navigation Buttons */
.nav-btn {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-btn:hover {
  background-color: white;
  color: black;
  border: 2px solid var(--primary-blue);
}
