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

    body {
      font-family: 'Montserrat', sans-serif;

      overflow-x: hidden;
    }

    /* nav section */

    header {
      background-color: rgb(56, 62, 68);
      padding: 15px 30px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f5f5dc;
      /* Brighter beige */
      user-select: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo::before {
      content: "💻";
      font-size: 1.5rem;
    }

    #menu-toggle {
      display: none;
    }

    .menu-icon {
      display: none;
      cursor: pointer;
      font-size: 1.8rem;
      color: #f5f5dc;
      user-select: none;
      transition: transform 0.3s;
    }

    #menu-toggle:checked~.menu-icon {
      transform: rotate(90deg);
    }

    ul.nav-links {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    ul.nav-links li a {
      color: beige;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 12px;
      border-radius: 4px;
    }

    ul.nav-links li a:hover {
      color: #f5f5dc;
      background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-links li {
      position: relative;
    }

    .nav-links li ul.dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: cadetblue;
      list-style: none;
      padding: 10px 0;
      min-width: 200px;
      border-radius: 6px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .nav-links li ul.dropdown li a {
      padding: 10px 20px;
      display: block;
      color: white;
      white-space: nowrap;
      transition: all 0.3s;
    }

    .nav-links li ul.dropdown li a:hover {
      background-color: beige;
      color: #000;
      padding-left: 25px;
    }

    .nav-links li:hover>ul.dropdown {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* Mobile styles */
    @media (max-width: 768px) {
      header {
        padding: 12px 20px;
      }

      .menu-icon {
        display: block;
      }

      ul.nav-links {
        flex-direction: column;
        background-color: cadetblue;
        position: absolute;
        top: 100%;
        right: 20px;
        width: 250px;
        display: none;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        gap: 10px;
      }

      #menu-toggle:checked~ul.nav-links {
        display: flex;
        animation: fadeIn 0.3s ease-out;
      }

      .nav-links li ul.dropdown {
        position: static;
        box-shadow: none;
        padding-left: 15px;
        margin-top: 5px;
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
        opacity: 1;
        transform: none;
      }

      .nav-links li:hover>ul.dropdown {
        display: none;
      }

      .nav-links li:active>ul.dropdown,
      .nav-links li:focus-within>ul.dropdown {
        display: block;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Container1 section */

    .container1 {
      width: 100%;
      height: 100vh;
    }

    .vid video {
      object-fit: cover;
      width: 100%;
      height: 96vh;
      opacity: 0.5;
    }


    .content {
      position: relative;
      bottom: 90%;
      text-align: center;
      color: white;

    }

    .content h1 {
      color:rgb(36, 114, 116);
      font-size: 3rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .content img {
      max-width: 100%;
      max-height: 50vh;
      object-fit: cover;
    }

    .content button {
      width: 200px;
      height: 50px;
      cursor: pointer;
      color: black;
      background-color: beige;
      padding: 7px;
      font-size: 20px;
      border-radius: 3px;
      border: none;
      margin-top: 10px;
      font-weight: 600;
      margin-bottom: 20px
    }

    @media (max-width: 768px) {
      .content h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 340px) {
      .content h1 {
        font-size: 1.9rem;
      }
    }

    /* ===== Features Section ===== */
    .features {
      padding: 50px 3%;
      text-align: center;
      color: white;
    }


    .features h2 {
      font-size: 2.5rem;
      margin-bottom: 50px;
      background: var(--gradient);
      -webkit-text-fill-color: cadetblue;
      font-weight: bold;
    }

    .feature-cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .feature-card {
      background: cadetblue;
      border-radius: 20px;
      padding: 30px;
      width: 300px;
      transition: 0.3s;
      backdrop-filter: blur(10px);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(8, 1, 1, 0.40);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      background: var(--gradient);
      -webkit-text-fill-color: beige;

    }


    /* ===== Responsive Design ===== */
    @media (max-width: 768px) {


      .feature-cards {
        flex-direction: column;
        align-items: center;
      }
    }


    /* history section */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;

    }

    /* Hero Section */
    .about-hero {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 30px;


    }

    .title {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 30px;
      font-size: 40px;
      color: cadetblue;
      padding-top: 20px;
    }

    .about-image {
      flex: 1;
      min-width: 300px;

    }

    .about-image video {
      width: 100%;
      height: 75%;
      border-radius: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .about-content {
      flex: 1;
    }



    .about-content p {
      font-size: 1.1rem;
      line-height: 2.6;
      color: cadetblue;

      margin-bottom: 20px;
    }


    @media (max-width: 768px) {
      .about-hero {
        flex-direction: column;
      }

      .about-image,
      .about-content {
        width: 100%;
      }
    }


    /* End feature section */
    .feature1 {
      background: cadetblue;
      width: 100%;
      height: auto;
      margin-bottom: 20px;
    }

    .feature1 ul {
      width: 100%;
      max-width: 85%;
      align-items: center;
      list-style: none;
      margin: auto;
      padding: 30px;
    }

    .feature1 h1 {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 30px;
      font-size: 40px;
      color: beige;
      padding-top: 20px;
    }

    .feature1 li {
      background: beige;
      margin-bottom: 1rem;
      padding: 1rem;
      border-left: 5px solid black;
    }


    /* footer */



    .footer {
      background-color: rgb(56, 62, 68);
      color: whitesmoke;
      padding: 3rem 2rem 2rem;
      position: relative;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .footer-logo h2 {
      color: beige;
    }

    .footer-links ul,
    .footer-newsletter form {
      list-style: none;
      padding: 0;
    }

    .footer-links a {
      color: beige;
      text-decoration: none;
      display: block;
      margin-bottom: 0.5rem;
    }

    .footer-links a:hover {
      color: cadetblue;
    }

    .footer-newsletter input {
      padding: 0.6rem;
      width: 70%;
      margin-right: 0.5rem;
      border-radius: 5px;
      border: none;
    }

    .footer-newsletter button {
      padding: 0.6rem 1rem;
      background-color: beige;
      border: none;
      border-radius: 5px;
      color: #000;
      font-weight: bold;
    }

    .footer-socials {
      margin-top: 2rem;
      text-align: center;
    }

    .footer-socials a {
      margin: 0 0.5rem;
      display: inline-block;
      color: beige;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    .footer-socials a:hover {
      color:cadetblue;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 1rem;
      margin-top: 2rem;
      border-top: 1px solid beige;
    }

    .footer h4 {
      margin-bottom: 7px;
    }

    /* laptop collection */

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .header {

      align-items: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 10;
    }

    .cart-icon {
      position: relative;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 100;
    }

    .cart-count {
      position: absolute;
      top: -10px;
      right: -10px;
      background-color: rgb(230, 75, 18);
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 0.8rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      background: linear-gradient(to right, cadetblue, rgb(221, 221, 179));
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      text-align: center;
    }



    .section-title h2::after {
      content: '';
      position: absolute;
      width: 70%;
      height: 3px;
      background: linear-gradient(to right, cadetblue, beige);
      bottom: -10px;
      left: 15%;
    }

    .section-title p {
      color: #666;
      font-size: 1.1rem;
    }

    .laptops-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
    }

    .laptop-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .laptop-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .laptop-image {
      height: 200px;
      overflow: hidden;
    }

    .laptop-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .laptop-card:hover .laptop-image img {
      transform: scale(1.05);
    }

    .laptop-info {
      padding: 20px;
    }

    .laptop-brand {
      color: #3498db;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .laptop-name {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #222;
    }

    .laptop-specs {
      margin-bottom: 15px;
      color: #666;
      font-size: 0.9rem;
    }

    .laptop-specs span {
      display: block;
      margin-bottom: 3px;
    }

    .laptop-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: cadetblue;
      margin-bottom: 15px;
    }

    .laptop-actions {
      display: flex;
      gap: 10px;
    }

    .btn {
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      text-align: center;
      text-decoration: none;
      display: inline-block;
    }


    .btn-cart {
      background-color: beige;
      color: black;
    }

    .btn-cart:hover {
      background-color:cadetblue;
      color: white;
    }

    .badge {
      position: absolute;
      top: 8px;
      right: -26px;
      background-color: #e74c3c;
      color: white;
      padding: 8px 24px;
      transform: rotate(42deg);
      border-radius: 3px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .laptop-card {
      position: relative;
    }

    .notification {
      position: fixed;
      top: 70px;
      right: 20px;
      background-color: #2ecc71;
      color: white;
      padding: 15px 25px;
      border-radius: 5px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transform: translateX(200%);
      transition: transform 0.3s ease;
      z-index: 1000;
    }

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

    /* Cart Sidebar Styles */
    .cart-sidebar {
      position: fixed;
      top: 66px;
      right: -400px;
      width: 400px;
      height: 100vh;
      background-color: white;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      z-index: 99;
      padding: 20px;
      overflow-y: auto;
    }

    .cart-sidebar.active {
      right: 0;
    }

    .cart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #eee;
    }

    .cart-title {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .close-cart {
      font-size: 1.5rem;
      cursor: pointer;
      background: none;
      border: none;
    }

    .cart-items {
      margin-bottom: 20px;
    }

    .cart-item {
      display: flex;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #f5f5f5;
    }

    .cart-item-image {
      width: 80px;
      height: 80px;
      overflow: hidden;
      border-radius: 5px;
      margin-right: 15px;
    }

    .cart-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cart-item-details {
      flex: 1;
    }

    .cart-item-name {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .cart-item-price {
      color: cadetblue;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
    }

    .quantity-btn {
      width: 25px;
      height: 25px;
      background-color: #f5f5f5;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .quantity-input {
      width: 40px;
      text-align: center;
      margin: 0 5px;
    }

    .remove-item {
      color: #e74c3c;
      background: none;
      border: none;
      cursor: pointer;
      margin-left: auto;
      align-self: flex-start;
    }

    .cart-summary {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

    .subtotal,
    .total {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .total {
      font-weight: 700;
      font-size: 1.2rem;
    }

    .checkout-btn {
      width: 100%;
      padding: 12px;
      background-color: cadetblue;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 15px;
      transition: background-color 0.3s;
    }

    .checkout-btn:hover {
      background-color: rgb(56, 62, 68);
    }

    .empty-cart {
      text-align: center;
      padding: 40px 0;
      color: #666;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 90;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 768px) {
      .laptops-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }

      .cart-sidebar {
        width: 320px;
      }
    }

    @media (max-width: 480px) {
      .section-title h2 {
        font-size: 2rem;
      }

      .laptops-grid {
        grid-template-columns: 1fr;
      }

      .cart-sidebar {
        width: 100%;
        right: -100%;
      }

      .cart-sidebar.active {
        right: 0;
      }
    }



    /* About us Section */

    #abt-our {
      padding: 35px;
    }

    /* our story */

    .abt1 h1 {
      text-align: center;
      color: rgb(56, 62, 68);
      margin: 50px;
      font-size: 2.5rem;
    }

    .about-image img {
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .story h1 {
      padding: 40px;
      color: rgb(56, 62, 68);
      font-size: 2rem;
      text-decoration: underline;
    }

    .story {
      border-bottom: 2px solid rgb(56, 62, 68);
    }


    /* our mission*/

    .story1 {
      border-bottom: 2px solid rgb(56, 62, 68);
    }

    .story1 h1 {
      text-align: right;
      padding: 50px;
      color: rgb(56, 62, 68);
      font-size: 2rem;
      text-decoration: underline;
    }

    .about-hero1 {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      gap: 40px;
      margin: 40px 0;
      padding: 20px;
    }

    .about-image1 {
      flex: 1;
    }

    .about-content1 {
      flex: 1;
      font-size: 1.1rem;
      line-height: 2.6;
      color:cadetblue;
    }

    .about-image1 img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }


    /* our vision */
    .story2 h1 {

      padding: 50px;
      color:rgb(56, 62, 68);
      font-size: 2rem;
      text-decoration: underline;
    }

    .about-content ul {
      line-height: 3rem;
      color: cadetblue;
    }

    .story2 {
      border-bottom: 2px solid rgb(56, 62, 68);

    }


    /* Our Team Section */
    .our-team {
      padding: 4rem 0;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .team-member {
      text-align: center;
    }

    .team-member img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      margin-bottom: 1rem;
      object-fit: cover;
    }

    .team-member h3 {
      color: cadetblue;
      margin-bottom: 0.5rem;
    }

    .team-member p {
      color: #7f8c8d;
    }

    /* Responsive design for smaller screens */
    @media (max-width: 768px) {
      .about-hero1 {
        flex-direction: column;
      }

      .about-image1,
      .about-content1 {
        flex: none;
        width: 100%;
      }
    }

    @media(max-width:425px) {
      .story h1 {
        text-align: center;
      }
    }

    /* Contact section  */

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Title */
.abt1 h1 {
  text-align: center;
  font-size: 2.5rem;
  color: cadetblue;
  margin-bottom: 30px;
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Form Styling */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  background-color: #fff;
  transition: border 0.3s;
}

.form-group label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: #fff;
  padding: 0 5px;
  font-size: 0.9rem;
  color: #555;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: cadetblue;
}

/* Button */
button.btn {
  background-color: cadetblue;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button.btn:hover {
  background-color: #2f5f63;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-left: 5px solid cadetblue;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card i {
  color: cadetblue;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-card h3 {
  margin: 5px 0;
  font-size: 1.2rem;
  color: #444;
}

/* Map */
.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Social Media Section */
.news-section {
  background-color: #e8f1f3;
  padding: 40px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #2f5f63;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icons a {
  font-size: 1.8rem;
  color: #2f5f63;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: cadetblue;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .abt1 h1 {
    font-size: 2rem;
  }
}



    

    /* News Section */
    .news-section {
      padding: 50px 0;
    }

    .social {
      padding: 80px 0;
      background-color: rgba(243, 244, 246, 0.5);
    }

    .dark .social {
      background-color: rgba(31, 41, 55, 0.5);
    }

    .social-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
    }

    .social-icons a {
      color: var(--text-color);
      font-size: 4.5rem;
      transition: color 0.2s;
    }

    .s1 i {
      color: red;
    }

    .s2 i {
      background: radial-gradient(circle at 30% 107%,
          #fdf497 0%,
          #fdf497 5%,
          #fd5949 45%,
          #d6249f 60%,
          #285AEB 90%);
      color: white;
      padding: 0px 3px 0px 3px;
      border-radius: 11px
    }

    .s3 i {
      color: #1877F2;

    }

    .s4 i {

      color: #25D366;
    }

    .s5 i {
      color: black;
    }

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


    /*  Products page */

    .values-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-header h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .page-header p {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(10, 10, 10, 0.3);
        }

        .value-icon {
            font-size: 2.5rem;
            color: cadetblue;
            margin-bottom: 20px;
        }

        .value-card h2 {
            color: #2c3e50;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .value-card p {
            color: #7f8c8d;
            margin: 0;
        }


        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
/* Event Categories Section */
.categories {
    background-color: #f9f9f9;
    padding: 30px;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.category-info p {
    color: #2c3e50;
    margin-bottom: 15px;
}

.category-info a {
    color: cadetblue;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.category-info a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.category-info a:hover i {
    transform: translateX(5px);
}

.exbtn{
  padding: 10px;
  background-color: cadetblue;
  border-radius: 40px;
  color: bisque;
  font-size: 1.2rem;
  border: none;
}
.exbtn:hover{
  background-color: white;
  color: cadetblue;
  border: 1px solid cadetblue;
}





/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
   
}

.modal-content.confirmation {
    text-align: center;
}

.modal-content.confirmation i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #555;
}

/* Payment Options */
.payment-options {
    margin: 20px 0;
}

.payment-method {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
 color: black;
}

.payment-method input {
    margin-right: 10px;
color: black;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group-row {
    display: flex;
    gap: 15px;
}

.form-group-row .form-group {
    flex: 1;
}


/* Animation */

/* Add these to your existing style.css file */

/* ===== Enhanced Animations & Transitions ===== */
/* General hover transitions */
.btn, .laptop-card, .feature-card, .info-card, .category-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Cart container animations */
.cart-sidebar {
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Notification animation */
.notification {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Cart item animations */
.cart-item {
  transition: all 0.3s ease;
  transform-origin: top;
}

.cart-item-enter {
  opacity: 0;
  transform: scale(0.8) translateX(20px);
}

.cart-item-enter-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  transition: all 0.3s ease-out;
}

.cart-item-exit {
  opacity: 1;
  transform: scale(1);
}

.cart-item-exit-active {
  opacity: 0;
  transform: scale(0.8) translateX(20px);
  transition: all 0.3s ease-in;
}

/* Button pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-cart:hover, .checkout-btn:hover {
  animation: pulse 1.5s infinite;
}

/* Badge animation */
.badge {
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(42deg);
  }
  50% {
    transform: rotate(38deg);
  }
}

/* Cart count animation */
.cart-count {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cart-icon:hover .cart-count {
  transform: scale(1.2);
  background-color: #ff4757;
}

/* Form input focus animation */
.form-group input:focus, .form-group textarea:focus {
  box-shadow: 0 2px 10px rgba(95, 191, 247, 0.3);
}

/* Enhanced dropdown animation */
.nav-links li ul.dropdown {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Loading spinner for cart */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cart-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

/* Checkout button loading state */
.checkout-btn.loading {
  position: relative;
  color: transparent;
}

.checkout-btn.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

/* Modal animation */
.modal {
  transition: opacity 0.3s ease;
}

.modal-content {
  animation: modalOpen 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Confirmation checkmark animation */
@keyframes checkmark {
  from {
    stroke-dashoffset: 50;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.checkmark {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkmark 0.6s ease-in-out forwards;
  animation-delay: 0.2s;
}

/* ===== Enhanced Cart Container Styles ===== */
.cart-sidebar {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-header {
  background: linear-gradient(to right, slategray, cadetblue);
  color: white;
  padding: 15px 20px;
  margin: -20px -20px 20px -20px;
  border-radius: 0 0 10px 10px;
}

.cart-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.cart-summary {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-btn {
  background: linear-gradient(to right, slategray, cadetblue);
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.3);
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  box-shadow: 0 6px 20px rgba(47, 79, 79, 0.4);
  transform: translateY(-2px);
}

/* Quantity controls animation */
.quantity-btn {
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: #e0e0e0;
  transform: scale(1.1);
}

/* Remove button animation */
.remove-item {
  transition: all 0.3s ease;
}

.remove-item:hover {
  transform: rotate(90deg) scale(1.2);
}

/* Empty cart animation */
.empty-cart {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
  .cart-sidebar {
    transition: right 0.3s ease;
  }
  
  .laptop-card:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-cart:hover, .checkout-btn:hover {
    animation: none;
  }
}