
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
   :root {
      --primary-color: #8B0000;
      --primary-gradient: linear-gradient(90deg, #8B0000, #a61919);
      --accent-color: #1c1c1c;
      --light-bg: #f5f5f5;
      --text-color: #2b2b2b;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      /* background-color: var(--light-bg); */
      color: var(--text-color);
    }

    /* Navbar Styling */
    header {
      background: var(--primary-gradient);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .navbar {
      background: transparent;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      font-family: "Montserrat", sans-serif;
    }

    .navbar-brand {
      font-size: 1.25rem;
      font-weight: 600;
      color: #fff !important;
      text-transform: uppercase;
    }

    .navbar-nav .nav-link {
      color: #ffffff !important;
      font-weight: 500;
      padding: 0.5rem 1rem;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      background-color: #ffcccc;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
      width: 80%;
    }

    .navbar-nav .nav-link:hover {
      color: #ffcccc !important;
    }

    .navbar-nav .nav-link.active {
      color: #ffcccc !important;
      /* font-weight: 600; */
    }

/* ===== Mobile View: Up to 576px ===== */
@media (max-width: 576px) {
  .navbar-collapse {
    background: var(--primary-gradient);
    border-radius: 0 0 10px 10px;
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ===== Tablet View: 577px to 991px ===== */
@media (min-width: 577px) and (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary-gradient);
    padding: 0.5rem 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
    text-align: center;
  }

  .navbar-nav {
    gap: 0.5rem;
  }
}

    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.6);
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28 255, 255, 255, 0.8 %29)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3e%3c/svg%3e");
    }
    


    .hero h2 {
      font-size: 3rem;
      font-family: 'Playfair Display', serif;
      color: #fff;

    }

    .hero .btn {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 12px 25px;
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 25px;
      position: relative;
      overflow: hidden;
      transition: color 0.4s ease-in-out;
      z-index: 1;
    }

    .hero .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, var(--primary-color), #a61919);
      z-index: -1;
      transition: left 0.4s ease-in-out;
    }

    .hero .btn:hover::before {
      left: 0;
    }

    .hero .btn:hover {
      color: white;
      border-color: transparent;
    }

    .mission-card {
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      font-family: "Montserrat", sans-serif;
    }

    .mission-card:hover {
      background-color: #f1f9ff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .icon-wrapper {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      transition: background-color 0.3s ease;
    }

    /* Base icon color and hover background for each variant */
    .icon-blue {
      color: #0d6efd;
    }

    .mission-card:hover .icon-wrapper.icon-blue {
      background-color: #0d6efd;
    }

    .mission-card:hover .icon-blue {
      color: #fff;
    }

    .icon-pink {
      color: #d63384;
    }

    .mission-card:hover .icon-wrapper.icon-pink {
      background-color: #d63384;
    }

    .mission-card:hover .icon-pink {
      color: #fff;
    }

    .icon-purple {
      color: #6f42c1;
    }

    .mission-card:hover .icon-wrapper.icon-purple {
      background-color: #6f42c1;
    }

    .mission-card:hover .icon-purple {
      color: #fff;
    }

    .icon-green {
      color: #198754;
    }

    .mission-card:hover .icon-wrapper.icon-green {
      background-color: #198754;
    }

    .mission-card:hover .icon-green {
      color: #fff;
    }

    .icon-orange {
      color: #fd7e14;
    }

    .mission-card:hover .icon-wrapper.icon-orange {
      background-color: #fd7e14;
    }

    .mission-card:hover .icon-orange {
      color: #fff;
    }


    .featured-products {
      padding: 60px 20px;
      /* text-align: center; */
      background-color: #ffffff;
    }

    .featured-products h3,
    .content-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--primary-color);
    }

    /* Featured Product Cards */
    /* General product card styling */
    .product-card {
      width: 100%;
      max-width: 300px;
      border: 1px solid #eee;
      border-radius: 1rem;
      overflow: hidden;
      /* background-color: #b6b1b1; */
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      /* transform: translateY(-6px); */
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    /* Image styling */
    .product-card img {
      width: 100%;
      height: 300px;
      border-radius: 0.75rem;
      object-fit: cover;

      max-height: 350px;
    }

    /* Buttons in top-right */
    .product-card .position-absolute {
      z-index: 1;
    }

    .product-card .btn-light {
      background-color: #f8f9fa;
      border: 1px solid #ddd;
    }

    /* Card body */
    .product-card .card-body {
      padding: 1rem;
    }

    /* Title */
    .product-card .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    /* Description */
    .product-card .card-text {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 1rem;
    }

    /* Price styling */
    .product-card .text-danger {
      font-size: 1.3rem;
      font-weight: 600;
    }

    .product-card .text-decoration-line-through {
      font-size: 1rem;
    }

    /* Stars */
    .product-card .bi-star-fill,
    .product-card .bi-star-half,
    .product-card .bi-star {
      font-size: 1rem;
    }

    /* Buttons */
    .product-card .btn {
      /* background-color: #2b2b2b; */
      font-size: 0.9rem;
      padding: 5px 8px;
      color: #fff;
    }

    .team-card {
      text-align: center;
      background-color: #fff;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
      transition: background-color 0.3s ease;
    }

    .team-card:hover {
      background-color: #f7e8e8;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .team-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #dee2e6;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    

    footer a:hover {
      color: #ffc107;
      text-decoration: underline;
    }
    

    ul li::marker {
      color: var(--primary-color);
    }

    hr {
      border-color: var(--primary-color);
      opacity: 0.6;
    }
