/* about */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff0f5;
  color: #333;
}

.navbar-brand {
  font-family: "Lobster", sans-serif;
  font-size: 2rem;
  color: #d63384;
}
.navbar-brand:hover {
  color: rgba(248, 26, 93, 0.534);
  transition-duration: 0.5s;
}

.nav-link {
  margin-right: 10px;
  margin-left: 10px;
  color: #d63384;
  font-weight: 500;
  text-transform: uppercase;
}
.nav-link:hover {
  color: rgba(248, 26, 93, 0.534);
  transition-duration: 0.5s;
}

.search {
  height: 40px;
  width: 80%;
  border-radius: 60px;
  outline: none;
  margin-right: -35px;
  color: #d63384;
}

.btn0 {
  height: 40px;
  width: 40%;
  outline: none;
  border: none;
  background-color: #9c1c66;
  color: white;
  font-weight: 700;
  border-radius: 60px;
}

.main {
  position: relative;
  background: url(assets/aboutwallpap.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.144);
  z-index: -1;
}

.main h1 {
  color: #9c1c66;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Lobster", sans-serif;
}

.iframe-section {
  height: 100vh;
  background: linear-gradient(to bottom right, #f36795, #e6f0ff);
  padding: 40px 20px;
}

.content-box {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(to bottom right, #e6f0ff, #f36795);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.iframe-wrapper:hover {
  transform: scale(1.01);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

h2 {
  color: #d63384;
  font-family: "Lobster", sans-serif;
}
h2:hover {
  color: rgba(248, 26, 93, 0.534);
  transition-duration: 0.5s;
}

.shadow-img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shadow-img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.shadow-box {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.transition-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: linear-gradient(to right, #ffb6c1, #fce4ec);
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.pink-title {
  color: #d63384;
}

.footer-text {
  color: #5a5a5a;
  font-size: 0.95rem;
}

.footer-link {
  color: #d63384;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #9c1c66;
  text-decoration: underline;
}

.social-icon {
  color: #d63384;
  font-size: 1.4rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  color: #9c1c66;
  transform: scale(1.2);
}

.footer-copy {
  color: #6c757d;
}

.fw-semibold {
  color: #9c1c66;
  font-weight: 700;
}

.cart-header {
  background: linear-gradient(to right, #ffafcc, #ffc8dd);
  padding: 4rem 1rem;
  text-align: center;
  color: white;
}

.cart-header h1 {
  font-weight: bold;
  font-size: 2.5rem;
}

.summary-box {
  background-color: #ffe5ec;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(255, 192, 203, 0.3);
}

.checkout-btn {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 2rem;
  transition: 0.3s;
}

.checkout-btn:hover {
  background-color: #ff1493;
}

  .cart-item {
    background-color: #ffe5ec;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(255, 192, 203, 0.3);
  }

  .cart-item-details h5 {
    color: #c9184a;
  }

  .btn-outline-danger {
    border-color: #ff5c8a;
    color: #ff5c8a;
  }

  .btn-outline-danger:hover {
    background-color: #ff5c8a;
    color: white;
  }
  
    .card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .card-img-top {
      border-radius: 20px 20px 0 0;
      height: 200px;
      object-fit: cover;
    }
    .heading {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 2rem;
      color: #d63384;
    }