*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
/* ---------- Navbar Base ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 3em;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
}

/* ---------- Logo ---------- */
.logo {
  font-weight: 800;
  font-size: 1.8em;
  color: #2c57d7;
  letter-spacing: 1px;
}

.logo span {
  color: #00b4db;
}

/* ---------- Links ---------- */
nav ul {
  display: flex;
  list-style: none;
  gap: 8em;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1.05em;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline hover effect */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #2c57d7, #00b4db);
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #2c57d7;
}

nav ul li a:hover::after {
  width: 100%;
}

/* ---------- Cart ---------- */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.nav-icons i{
  font-size: 1.5em;
  color: #2c57d7;
  cursor: pointer;
  transition: color 0.3s ease;
}

.carticon {
  position: relative;
  cursor: pointer;
}

.carticon::after {
  content: attr(data-count);
  position: absolute;
  top: -8px;
  right: -8px;
  background: #00b4db;
  color: white;
  font-size: 0.75em;
  padding: 0.2em 0.5em;
  border-radius: 50%;
  font-weight: bold;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #2c57d7;
  border-radius: 4px;
  transition: all 0.4s ease;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ---------- Mobile Menu ---------- */
@media (max-width: 900px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 60%;
    background: linear-gradient(135deg, #2c57d7, #00b4db);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5em;
    transition: right 0.4s ease;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li a {
    color: white;
    font-size: 1.3em;
  }

  nav ul li a::after {
    background: white;
  }

  .hamburger {
    display: flex;
  }


}

/* ---------- On Scroll Shadow ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---------- HERO SECTION ---------- */
.introduction {
  position: relative;
  background-image: url('/Assets/images/banner-5.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
  margin: 2em;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: fadeInHero 1.5s ease-in-out;
}

/* Overlay for contrast */
.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(69, 69, 69, 0.4);
  backdrop-filter: blur(1px);
  z-index: 1;
}

/* Content Layer */
.intro-content {
  position: relative;
  z-index: 2;
  color: white;
  animation: slideUp 1.2s ease forwards;
}

.intro-content h1 {
  font-size: 3.5em;
  line-height: 1.3em;
  font-weight: 800;
  color: #2c57d7;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5em;
  letter-spacing: 2px;
}

/* Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  flex-wrap: wrap;
}

.btn1, .btn2 {
  padding: 1em 3em;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1em;
}

/* Primary button with glow */
.btn1 {
  background: linear-gradient(90deg, #4b7bec, #2c57d7);
  color: white;
  box-shadow: 0 0 15px rgba(76, 142, 250, 0.6);
}
.btn1:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(76, 142, 250, 0.9);
}

/* Outline button with hover effect */
.btn2 {
  background: transparent;
  border: 2px solid #fff;
  color: white;
}
.btn2:hover {
  background: white;
  color: #2c57d7;
  transform: translateY(-3px) scale(1.05);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

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

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets */
@media (max-width: 992px) {
  .intro-content h1 {
    font-size: 3em;
  }
  .btn1, .btn2 {
    padding: 0.9em 2.4em;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .introduction {
    margin: 1em;
    border-radius: 20px;
    min-height: 70vh;
  }

  .intro-overlay {
    border-radius: 20px;
  }

  .intro-content h1 {
    font-size: 2.2em;
    padding: 0 1em;
  }

  .btn-group {
    flex-direction: column;
    gap: 1em;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .intro-content h1 {
    font-size: 1.6em;
  }

  .btn1, .btn2 {
    padding: 0.8em 1.8em;
  }
}

/* ---------- PRODUCTS SECTION ---------- */
.products {
  margin: 4em 2em;
  text-align: center;
  background: linear-gradient(180deg, #f7faff 0%, #eaf3ff 100%);
  border-radius: 20px;
  padding: 3em 1em;
}

.products h2 {
  font-size: 2.5em;
  color: #2c57d7;
  font-weight: 800;
  margin-bottom: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.products h2::after {
  content: "";
  display: block;
  width: 800px;
  height: 4px;
  background: #2c57d7;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5em;
  justify-items: center;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(44, 87, 215, 0.15);
}

/* Image Box */
.img-box {
  overflow: hidden;
  border-bottom: 1px solid #eee;
  background: #f9faff;
}

.img-box img {
  width: 80%;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}
.product-card h4{
   font-size: 1em;
   text-align: center;
   color: #007aff;
}

/* Product Info */
.product-info {
  padding: 2em;
}

.product-info data {
  display: block;
  font-size: 1em;
  font-weight: bold;
  color: #2c57d7;
  margin-bottom: 0.5em;
}

.product-info del {
  color: gray;
  font-size: 1em;
  margin-bottom: 1.5em;
  display: block;
}

/* Add to Cart Button */
.product-info button {
  padding: 0.8em 2em;
  border-radius: 30px;
  background: linear-gradient(90deg, #4b7bec, #2c57d7);
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(76, 142, 250, 0.3);
}

.product-info button:hover {
  background: linear-gradient(90deg, #2c57d7, #4b7bec);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 87, 215, 0.4);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .products h2 {
    font-size: 2em;
  }
.products h2::after{
  display: none;
}
  .product-info data {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 2em 1em;
  }
.products h2::after{
  display: none;
}
  .products h2 {
    font-size: 1.8em;
  }

  .product-info {
    padding: 1.5em;
  }
}

@media (max-width: 480px) {
  .products h2 {
    font-size: 1.5em;
  }

  .products h2::after{
    display: none;
  }
  .product-info button {
    padding: 0.6em 1.6em;
    font-size: 0.9em;
  }
}

/* ---------- MODAL POPUP ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 2em;
  max-width: 900px;
  width: 90%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* --- FLEX LAYOUT --- */
.modal-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  flex-wrap: wrap;
}

.modal-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.modal-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.modal-details {
  flex: 1 1 50%;
  text-align: left;
}

.modal-details h3 {
  color: #2c57d7;
  font-size: 2em;
  margin-bottom: 0.5em;
}

.modal-details p {
  color: #444;
  line-height: 1.5;
  font-size: 1em;
  margin-bottom: 1em;
}

.price {
  margin-bottom: 1.2em;
}

.price data {
  font-size: 1.6em;
  font-weight: bold;
  color: #2c57d7;
}

.price del {
  color: gray;
  margin-left: 0.8em;
  font-size: 1.1em;
}

.addCartBtn {
  padding: 0.9em 2.2em;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #2c57d7, #4b7bec);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.addCartBtn:hover {
  background: linear-gradient(90deg, #4b7bec, #2c57d7);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 87, 215, 0.4);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8em;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #2c57d7;
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    text-align: center;
  }

  .modal-details {
    text-align: center;
  }

  .modal-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.5em;
  }

  .modal-details h3 {
    font-size: 1.5em;
  }

  .addCartBtn {
    width: 100%;
  }
}



.banner {
  position: relative;
  background-image: url(/Assets/images/banner-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40em;
  margin: 2em;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(44, 87, 215, 0.7), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: white;
  animation: fadeInUp 1.2s ease-out;
}

.banner-content h2 {
  font-size: 5em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 0.4em;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.6);
}

.banner-content h2 span {
  color: #ffeb3b;
  text-shadow: 0 0 20px rgba(255, 235, 59, 0.8);
}

.banner-content p {
  font-size: 1.5em;
  margin-bottom: 1.5em;
  opacity: 0.9;
  letter-spacing: 1px;
}

.shop-btn {
  background: linear-gradient(90deg, #ff6b6b, #f06595, #845ef7);
  color: #fff;
  border: none;
  padding: 0.8em 2.5em;
  border-radius: 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.shop-btn:hover {
  background: linear-gradient(90deg, #845ef7, #f06595, #ff6b6b);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.5);
}

/* ✨ Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE DESIGN ---------- */

@media (max-width: 992px) {
  .banner {
    min-height: 30em;
    margin: 1.5em;
    border-radius: 25px;
  }
  .banner-content h2 {
    font-size: 3.5em;
  }
  .banner-content p {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 25em;
    margin: 1em;
    border-radius: 20px;
  }
  .banner-content h2 {
    font-size: 2.3em;
    padding: 0 1em;
  }
  .shop-btn {
    font-size: 1em;
    padding: 0.6em 1.8em;
  }
}

@media (max-width: 480px) {
  .banner {
    min-height: 20em;
    border-radius: 15px;
  }
  .banner-content h2 {
    font-size: 1.8em;
  }
  .banner-content p {
    font-size: 1em;
  }
}


.Gallery {
  margin: 4em 2em;
  text-align: center;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  padding: 3em 1em;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.Gallery h2 {
  font-size: 3em;
  color: #2c57d7;
  letter-spacing: 1px;
  margin-bottom: 0.5em;
}

.gallery-subtitle {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 2.5em;
  font-style: italic;
}

/* Masonry Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 1.5em;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 20px;
}

/* Fancy hover effect */
.gallery-item::after {
  content: "View Image";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 87, 215, 0.85);
  color: #fff;
  font-weight: bold;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  padding: 1em 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-item:hover {
  box-shadow: 0 10px 25px rgba(44, 87, 215, 0.2);
  transform: translateY(-5px);
}

/* Size variations for dynamic layout */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* ---------- Responsive Design ---------- */

/* Tablets */
@media (max-width: 992px) {
  .Gallery h2 {
    font-size: 2.5em;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 200px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .Gallery {
    margin: 2em 1em;
    padding: 2em 1em;
  }

  .Gallery h2 {
    font-size: 2em;
  }

  .gallery-subtitle {
    font-size: 1em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .Gallery h2 {
    font-size: 1.7em;
  }

  .gallery-subtitle {
    font-size: 0.9em;
  }
}

/* === Stunning Description Section === */
.description {
  margin: 4em 2em;
  position: relative;
  background: radial-gradient(circle at top right, #e6f7ff 0%, #ffffff 70%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.description-wrapper {
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 4em 3em;
}

.description-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  flex-wrap: wrap;
}

.desc-text {
  flex: 1;
  min-width: 320px;
}

.desc-text h3 {
  font-size: 2.8em;
  line-height: 1.2;
  color: #0a2540;
  margin-bottom: 1em;
  font-weight: 800;
  letter-spacing: -1px;
}

.desc-text h3 span {
  color: #007aff;
  text-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
}

.desc-text p {
  color: #4a4a4a;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 1em;
}

.desc-btn {
  background: linear-gradient(135deg, #007aff, #00c6ff);
  color: white;
  padding: 1em 4em;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
}

.desc-btn:hover {
  background: linear-gradient(135deg, #00c6ff, #007aff);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 122, 255, 0.4);
}

/* === Image Side === */
.desc-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.desc-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

.image-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,122,255,0.25), transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: pulse 4s infinite alternate;
}

/* === Animations === */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

/* === Responsiveness === */
@media (max-width: 1024px) {
  .description-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .desc-image img {
    max-width: 400px;
  }

  .desc-text h3 {
    font-size: 2.3em;
  }
}

@media (max-width: 600px) {
  .description {
    margin: 2em 1em;
  }

  .desc-text h3 {
    font-size: 1.9em;
  }

  .desc-text p {
    font-size: 1em;
  }

  .desc-btn {
    width: 100%;
    padding: 1em 0;
  }

  .desc-image img {
    max-width: 90%;
  }
}

/* === STUNNING TESTIMONIAL SECTION === */
.testimonial {
  position: relative;
  margin: 5em 2em;
  padding: 4em 2em 6em;
  background: linear-gradient(135deg, #e8f0ff, #f7fbff);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.testimonial-header h2 {
  font-size: 2.8em;
  color: #0a2540;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.testimonial-header p {
  font-size: 1.1em;
  color: #555;
  margin-top: 0.5em;
  margin-bottom: 2.5em;
}

/* TESTIMONIAL CONTENT */
.testimonial-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 2em;
  width: 320px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  animation: fadeIn 1.2s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}

.testimonial-card p {
  font-size: 1.05em;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5em;
  position: relative;
}

.testimonial-card p::before {
  content: "“";
  font-size: 2.5em;
  color: #007aff;
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -5px;
}

/* CUSTOMER INFO */
.customer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.customer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #007aff;
  box-shadow: 0 5px 10px rgba(0, 122, 255, 0.2);
}

.customer-info h4 {
  margin: 0;
  color: #0a2540;
  font-size: 1.1em;
}

.customer-info span {
  font-size: 0.9em;
  color: #777;
}

/* FLOATING IMAGE SIDE */
.testimonial-image {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 1;
}

.testimonial-image img {
  width: 420px;
  border-radius: 30px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0, 122, 255, 0.2));
}

.glow-circle {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,122,255,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: pulse 4s infinite alternate;
}

/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 0.9; transform: scale(1.15); }
}

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

/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
  .testimonial {
    padding: 4em 1.5em;
  }

  .testimonial-image {
    position: static;
    margin-top: 2em;
  }

  .testimonial-image img {
    width: 300px;
  }

  .testimonial-content {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .testimonial {
    margin: 3em 1em;
    padding: 3em 1em;
  }

  .testimonial-header h2 {
    font-size: 2em;
  }

  .testimonial-card {
    width: 100%;
  }

  .testimonial-image img {
    width: 250px;
  }
}

/* --- Overall Styling --- */
.footer {
  background: linear-gradient(135deg, #0a0a0a, #1b1b1b);
  color: #e0e0e0;
  padding: 4em 2em;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* --- Footer Content Layout --- */
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 2em;
  z-index: 2;
  position: relative;
}

/* --- Brand Section --- */
.content-footer.brand h4 {
  font-size: 1.8em;
  color: #00b4db;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.content-footer.brand p {
  color: #ccc;
  font-size: 1em;
  margin-bottom: 1.5em;
}

/* --- Social Icons --- */
.social-icons a {
  color: #00b4db;
  font-size: 1.2em;
  margin: 0 8px;
  transition: all 0.4s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.3);
}

/* --- Other Footer Sections --- */
.content-footer h4 {
  font-size: 1.3em;
  color: #00b4db;
  margin-bottom: 1em;
  position: relative;
}

.content-footer h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #00b4db;
  display: block;
  margin: 0.5em auto;
  border-radius: 2px;
}

.content-footer ul {
  list-style: none;
  padding: 0;
}

.content-footer ul li {
  margin: 0.6em 0;
}

.content-footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.content-footer ul li a:hover {
  color: #00b4db;
  letter-spacing: 1px;
}

/* --- Contact Section --- */
.contact p {
  margin: 0.5em 0;
  font-size: 1em;
  color: #bbb;
}

/* --- Divider and Bottom Text --- */
.footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2em auto;
  width: 80%;
}

.footer-bottom {
  color: #999;
  font-size: 0.9em;
}

/* --- Glowing Light Animation --- */
.footer::before {
  content: "";
  position: absolute;
  width: 250%;
  height: 250%;
  top: -75%;
  left: -75%;
  background: radial-gradient(circle at center, rgba(0, 180, 219, 0.15), transparent 70%);
  animation: rotateGlow 10s linear infinite;
  z-index: 1;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content-footer {
    margin: 1.5em 0;
  }

  .content-footer h4 {
    font-size: 1.4em;
  }
}



/*==================================cart section========================*/
.cart-container{
  max-width: 800px;
  margin-top: 80px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.cart-item { 
      display: flex;
      justify-content: space-between; 
      margin: 10px 0;
      padding: 10px;
      border-bottom: 1px solid #ccc; 
}
.cart-item-details {
        flex: 1;
        min-width: 150px;
}
.cart-item button{
    background: skyblue;
    border: none;
    padding: 0.25em 1em;
    border-radius: 10px;
    color: white;
}
.cart-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-right: 15px; 
}
.cart-total{
      font-size: 20px;
      margin-top: 20px;
      text-align: right;
      font-weight: bold;
}
.submitBtn{
      padding: 1em 8em; 
      background: skyblue;
      color: #fff;
      border: none;
      cursor: pointer;
      margin-top: 20px;
      border-radius: 10px;
      margin: auto;
      display: block;
    
}


.cart-container h1{
  margin-bottom: 20px;
  text-align: center;
  color: rgb(89, 194, 236);
  
}
.cartItems{
    display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/*==========================================popup style==============================*/
/* Overlay background */
#customAlert {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Alert box */
#customAlert .alert-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 300px;
  animation: fadeIn 0.3s ease-in-out;
}

#customAlert .alert-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

#customAlert .alert-box button {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: #007BFF;
  color: #fff;
  cursor: pointer;
}

#customAlert .alert-box button:hover {
  background: #0056b3;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}