*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


/* Hamburger Menu Start */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0a2540;
    transition: all 0.6s ease;
  }
  
  /* Mobile View */
  @media (max-width: 900px) {
    .nav-bar{
      justify-content: space-between !important;
      padding-inline: 30px;
    }
    .nav-link {
        display: none; /* Hide navigation links by default */
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        background-color: #fafafa;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .nav-link ul {
        flex-direction: column; /* Stack links vertically */
        gap: 1rem;
        align-items: center;
    }
  
    .nav-link ul li {
        width: 100%; /* Full width for each item */
        text-align: center;
    }
  
    .button {
      display: none;
      margin: 10px auto;
    }
  
    .hamburger {
        display: flex; /* Show hamburger menu */
    }
  
    /* Toggle Hamburger Menu */
    .nav-bar.active .nav-link{
        display: flex; /* Show navigation links when active */
    }
  }
  
  /* Hamburger Menu End */
  
  .nav-bar{
      background-color: #fafafa;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
  }
  
  .activ{
    color: red;
  }
  
  .nav-link ul{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2.4rem;
  }
  
  .nav-link ul li{
      list-style: none;
      position: relative;
  }
  
  .nav-link ul li a{
      text-decoration: none;
      color: #0a2540;
  }
  
  ul li:after {
      content: "";
      position: absolute;
      background-color: #0a2540;
      height: 3px;
      width: 0;
      left: 0;
      top: 22px;
      transition: all ease-in-out .3s;
   }
   
   ul li:hover:after{
      width: 100%;
   }
  
  .nav-link ul li a:hover{
      color: #084179;
  }

  .disabled{
    pointer-events: none;
    cursor: not-allowed;
  }
  
  nav > .button{
    padding-inline: 20px;
      padding-block: 6px;
      border: 2px solid #0a2540;
      border-radius: 18px;
      background-color: transparent;
      color: #0a2540;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
  }
  
  nav > .button:hover{
    background-color: #0a2540;
    color: #fafafa;
  }
  


.celebration{
    display: grid;
    place-items: center;
    height: 50dvh;
    font-size: 1.5rem;
    color: #fafafa;
    background-image: url(../product/images/background.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-transform: uppercase;
    position: relative;
}

.blend-mode-about-overlay{
  height: 50dvh;
  width: 100%;
  background-color: #252525;
  mix-blend-mode: multiply;
  opacity: 0.7;
  position: absolute;
}

  /* About Section Styles */
  .about-section {
    padding: 50px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 1200px;
    margin: 0 auto; */
    gap: 20px;
  }
  
  /* Left Column: Image and Label */
  .about-image {
    /* flex: 1; */
    position: relative;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .about-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #003366;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
  
  /* Right Column: Content */
  .about-content {
    /* flex: 2; */
    padding: 20px;
  }
  
  .about-content h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 10px;
  }
  
  .about-content blockquote {
    font-size: 20px;
    color: #005599;
    font-style: italic;
    margin: 10px 0 20px;
    border-left: 4px solid #003366;
    padding-left: 10px;
  }
  
  .about-content p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .about-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #003366;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
  }
  
  .about-content .btn:hover {
    background: #005599;
  }
  