/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f4f6f9, #d9e4f5);
    color: #333;
    line-height: 1.6;
    padding: 10px;
}

/* Header and Mobile .........*/
.header, .mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #023047;
    padding: 15px 20px;
    color: white;
    flex-wrap: wrap;
}

.header img, .mobile img {
    height: 60px;
}

.header ul, .mobile ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.header ul li a, .mobile ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.mobile input[type="search"] {
    padding: 5px;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* Content Section */
.contents {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

#intro h1, .intro-1 h1 {
    color: #023047;
    font-size: 28px;
}

#intro ul {
    list-style: disc;
    padding-left: 20px;
}

/* Image Grid Sections */
.sod, .lsv, .bdc {
    margin-bottom: 20px;
}

.sod img, .lsv img, .bdc img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
}
p{
    color: blue;
    text-align: center;
}
li{
    list-style: none;
    text-align: center;
    color: purple;
    font-size: 20px;
}

/* Announcements Section */
.announcements {
    background: #ffffffbb;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.announcements h2 {
    color: #219ebc;
    margin-bottom: 10px;
}

/* Footer Styling */
.footer {
    background-color: #023047;
    color: white;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
    width:100%;
}

.footer a, .footer p {
    color: white;
    text-decoration: none;
}

.footer img {
    height: 40px;
    margin: 5px;
}

/* Utility Layout */
#centre, #left {
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header ul, .mobile ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .sod img, .lsv img, .bdc img {
        max-width: 100%;
    }

    .header img, .mobile img {
        height: 40px;
    }

    .footer {
        font-size: 14px;
    }

    #intro h1, .intro-1 h1 {
        font-size: 20px;
    }
}



/*------markek-------------*/
 .product-card {
      width: 250PX;
      transform: translateX(-100px);
      transition: width 0.2s;
    }


    .product-image {
      padding-top: 5px;
      height: 150px;
      object-fit: cover;
      mix-blend-mode: normal;
    }

    .cart {
      position: fixed;
      top: 64px;
      right: 0;
      width: 210px;
      background: #fff;
      border-left: 1px solid #ccc;
      height: 100vh;
      overflow-y: auto;
      padding: 1rem;
      box-shadow: -2px 0 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease-in-out;
      z-index: 1050;
      margin-left: 10px;
      color: blue;
    }
    .cart div{
     z-index: 945969;
    }

    .cart-item {
      border-bottom: 1px solid #ddd;
      padding: 0.5rem 0;

    }

    .payment-options i {
      font-size: 24px;
      margin: 0 10px;
      cursor: pointer;
    }

    #cart-toggle-btn {
      display: none;
      margin-top: 80px;
      position: fixed;
      top: 15px;
      left: 5px;
      z-index: 1100;
      color: black;
      border: none;
      /*padding: 10px 15px;*/
      border-radius: 5px;
      font-size: 18px;
      width: 40px;
      transition: background 0.3s ease;
      /*transform: translateY(100px);*/
    }

    #cart-toggle-btn:hover {
      background: #0056b3;
    }

    .cart-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #888;
    }

    .cart-close:hover {
      color: #000;
    }

    @media (max-width: 768px) {
      .cart {
        transform: translateX(100%);
        width: 100%;
        max-width: 300px;
      }

      .cart.show {
        transform: translateX(0);
      }

      #cart-toggle-btn {
        
        position: fixed;
        display: block;
        left: 6px;
        color: #fff;
        background-color: blue;
        border-radius: 10px;
        transform: scale(0.8);
        transform: translateX(-8px);
      }

      .product-card {
     transform: translateX(20px);
      
    }
    }
    /* Navbar Customization */
    .container-fluid px-4{
        z-index: 999999999999999999999999999999;
    }
.navbar {
    backdrop-filter: blur(10px);
  }
  
  .navbar .nav-link {
    color: #f0f0f0 !important;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    transform: translateX(-100);
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: #00d1b2 !important;
    text-align: center;
  }
  
  .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0%;
    height: 2px;
    background-color: #00d1b2;
    transition: width 0.3s ease;
  }
  
  .navbar .nav-link:hover::after {
    width: 100%;
  }
  