#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3); /* Soft elegant background */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader {
  text-align: center;
}

.loader img {
  width: 90px;
  margin: 20px auto 10px;
  animation: fadeIn 2s ease-in-out;
}

.loader p {
  font-family: 'Playfair Display', serif;
  color: #555;
  font-size: 1.1rem;
  animation: fadeIn 2.5s ease-in-out;
}

.circle-animation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.circle-animation .dot {
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  animation: mist 1.5s infinite ease-in-out;
}

.circle-animation .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.circle-animation .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes mist {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
  .navbar.scrolled {
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    background: #f8fafd;
  }
    transform: scale(1.3);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .loader img {
    width: 70px;
  }

  .loader p {
    font-size: 1rem;
  }

  .circle-animation .dot {
    width: 10px;
    height: 10px;
  }
}

/* ticker */
.ticker-wrapper {
  background: #ffffff; /* light silver background */
  color: #222; /* dark text for contrast */
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif; /* clean modern font */
  font-size: 1.1rem;
  font-weight: 300; /* light / thin style */
  padding: 12px 0;
  position: relative;
  margin-bottom: 2px;
  border-top: 2px solid #b3b3b3; /* silver tone line */
  border-bottom: 2px solid #b3b3b3;
  text-transform: uppercase; /* all letters capital */
}


.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}

.ticker-text {
  padding: 0 80px;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .ticker-wrapper {
    font-size: 1rem;
    padding: 10px 0;
  }

  .ticker-text {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .ticker-wrapper {
    font-size: 0.95rem;
    padding: 8px 0;
  }

  .ticker-text {
    padding: 0 30px;
  }
}

@media (max-width: 360px) {
  .ticker-wrapper {
    font-size: 0.9rem;
    padding: 6px 0;
  }

  .ticker-text {
    padding: 0 20px;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #000;
}

/* Top Header */
.top-header {
  text-transform: uppercase; /* all letters capital */
  width: 100%;
  background: #fff;
  padding: 15px 0;
  display: flex;
  justify-content: center;  /* Center horizontally */
  align-items: center;
  border-bottom: 1px solid #eee;
}

.top-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-header .logo img {
  height: 45px;
}

.top-header .brand-name {
  color: #000;
  font-size: 2rem;
  font-weight: 300;               /* light but readable */
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 12px;           /* wide spacing */
  text-transform: uppercase;      /* all caps */
 /* border-bottom: 2px solid #cc8a54;   line under text 
  padding-bottom: 5px;             little spacing before line */
}

/* Navigation */
.main-nav {
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase; /* all letters capital */
  overflow-x: auto; /* allow horizontal scroll if needed */
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 12px 0;
  white-space: nowrap; /* keep in one line */
}

.main-nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f0c000;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover {
  color: #f0c000;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Responsive (equal gap between options, single line) */
@media (max-width: 768px) {
  .main-nav ul {
    display: flex;
    justify-content: space-evenly;   /* equal gap between items */
    align-items: center;
    padding: 10px 0;
    gap: 0;                          /* disable manual gap */
    flex-wrap: nowrap;               /* force one line */
  }

  .main-nav ul li {
    flex: unset;                     /* don't force equal width */
    text-align: center;
  }

  .main-nav ul li a {
    display: block;
    font-size: 0.9rem;               /* auto smaller font */
    padding: 6px 8px;                /* balanced padding */
    white-space: nowrap;             /* prevent wrapping */
  }
}

/* spray appear */

/* Advertisement Banner Section */
.ad-banner {
  margin-top: 3px;
  width: 100%;
  overflow: hidden;
}

/* ================= Hero Banner ================= */
.hero-banner {
  height: 70vh;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), /* dark overlay for readability */
    url('images/background.jpg') center/cover no-repeat; /* replace 'your-image.jpg' with your image path */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  position: relative;
  overflow: hidden;
  text-transform: uppercase; /* all letters capital */
}

/* ================= Hero Content ================= */
.hero-content {
  max-width: 500px;
  z-index: 10;
}

.hero-content h1 {
  font-family: 'Mehr Nastaleeq', serif;
  font-size: 4rem; /* default large size */
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ffffff, #e0e0e0); /* white to light grey gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.144), 0 0 8px rgba(255, 255, 255, 0.349); /* soft glow */
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.3s;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem; /* medium screens */
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem; /* mobile */
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem; /* very small screens */
  }
}


.hero-content p {
  font-size: 1.2rem;
  color: #fff;
  font-style: italic;
  line-height: 1.8;
  margin: 15px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.6s;
}

.hero-content .btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #dbb569);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.9s;
}

.hero-content .btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 18px 28px rgba(0,0,0,0.35);
}

.hero-content .sale-note {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  text-shadow: 0 1px 3px rgba(204, 172, 65, 0.473);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 1.2s;
}

/* ================= Floating Shapes ================= */
.shape {
  position: absolute;
  background: rgba(141, 134, 134, 0.164);
  border-radius: 50%;
  z-index: 5;
  filter: blur(20px);
  animation: floatShape 6s ease-in-out infinite;
}

.shape.circle {
  width: 220px;
  height: 220px;
  top: 10%;
  right: -60px;
}

.shape.ellipse {
  width: 300px;
  height: 150px;
  top: 50%;
  right: -120px;
  transform: rotate(30deg);
}

.shape.small-circle {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: -40px;
}

.shape.blob {
  width: 250px;
  height: 250px;
  top: 20%;
  right: -100px;
  border-radius: 50% 40% 60% 50%;
  filter: blur(35px);
  animation: floatShape 8s ease-in-out infinite;
}

/* ================= Animations ================= */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatShape {
  0% { transform: translateY(0) }
  50% { transform: translateY(-12px) }
  100% { transform: translateY(0) }
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .hero-banner {
    height: 45vh;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding: 0 5%;
  }

  .hero-content {
    max-width: 90%;
    text-align: center;
  }

  .hero-content h1 { font-size: 2.4rem; letter-spacing: 4px; }
  .hero-content p { font-size: 1rem; }
  .hero-content .btn { padding: 14px 32px; font-size: 1rem; }
}



/* new ariivals*/
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .heading {
      text-align: center;
      font-size: 2rem;
      letter-spacing: 0.15em;
      margin-bottom: 40px;
      color: #222;
    }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px 24px;
    }

    .product-card {
      background: #ffffff;
      text-align: center;
      position: relative;
      padding-bottom: 16px;
      transition: transform 0.3s;
      overflow: hidden; /* overlay ke liye */
    }
    .product-card:hover {
      transform: translateY(-5px);
    }

    /* clickable area */
    .product-card a {
      text-decoration: none;
      color: inherit;
      display: block;
      cursor: pointer;
      position: relative;
      z-index: 2;
    }

    .product-card img {
      width: 220px;
      height: 160px;
      object-fit: contain;
      transition: transform 0.3s;
    }
    .product-card:hover img {
      transform: scale(1.05);
    }

    .sale-badge {
      position: absolute;
      top: 8px;
      left: 12px;
      background: #2d2112;
      color: #fff;
      font-size: 0.85rem;
      padding: 2px 10px;
      border-radius: 2px;
      font-weight: 500;
      letter-spacing: 0.05em;
      z-index: 3;
    }

    /* Quick View between image & text */
    .quick-view {
      display: none;
      margin: 12px auto;
      padding: 6px 14px;
      font-size: 0.9rem;
      background: #2d2112;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
      z-index: 3;
      position: relative;
    }
    .quick-view:hover {
      background: #444;
    }
    .product-card:hover .quick-view {
      display: inline-block;
    }

    .product-name {
      font-size: 1rem;
      letter-spacing: 0.1em;
      margin: 8px 0 6px 0;
      color: #222;
    }
     .inspired {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      margin: 8px 0 6px 0;
      color: #686363;
    }
    .product-prices {
      font-size: 0.95rem;
      margin-top: 4px;
    }
    .old-price {
      text-decoration: line-through;
      color: #888;
      margin-right: 6px;
      font-size: 0.9em;
    }
    .new-price {
      color: #222;
      font-weight: 600;
      margin-right: 6px;
    }
    .save {
      color: #c00;
      font-size: 0.9em;
    }

    /* Responsive */
    @media (max-width: 1000px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 600px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr); /* official style mai 2 per row */
      }
      .product-card img {
        width: 160px;
        height: 120px;
      }
    }
/* Responsive */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Mobile view: slider === */
@media (max-width: 600px) {
  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scrollbar-width: none; /* hide scrollbar in Firefox */
  }
  .product-grid::-webkit-scrollbar {
    display: none; /* hide scrollbar in Chrome/Safari */
  }

  .product-card {
    flex: 0 0 75%; /* har slide ki width */
    scroll-snap-align: start;
  }

  .product-card img {
    width: 160px;
    height: 120px;
  }
}
/* Responsive */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Mobile view: slider + heading + quick view === */
@media (max-width: 600px) {
  .heading {
    font-size: 1.3rem; /* smaller heading on mobile */
    letter-spacing: 0.08em;
  }

  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scrollbar-width: none; /* hide scrollbar (Firefox) */
  }
  .product-grid::-webkit-scrollbar {
    display: none; /* hide scrollbar (Chrome/Safari) */
  }

  .product-card {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  .product-card img {
    width: 160px;
    height: 120px;
  }

  /* Quick View button visible by default on mobile */
  .quick-view {
    display: inline-block !important;
    margin-top: 10px;
  }
}





/* Product Detail Page */
.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  background: #fff;
  color: #111;
  align-items: flex-start;
   margin-top: 10px; /* Space below navbar */
}

.product-images {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.product-images #main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-images .thumbs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-images .thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.product-images .thumbs img:hover {
  border-color: #f0c000;
}

.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-info .notes {
  font-size: 1rem;
  margin-bottom: 15px;
}

.product-info .desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.order-btn {
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.order-btn:hover {
  background-color: #f0c000;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    align-items: center;
  }
}


/* Container for Men's and Women's Fragrances */
/* Section Title */
.fragrance-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;               /* light but readable */
  font-family: 'Montserrat', sans-serif;
  color: #000; /* black text */
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 6px; /* space for the line */
  text-transform: uppercase; /* all letters capital */
}

.fragrance-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* line width */
  height: 2px; /* thin line */
  background: #000; /* black line */
  border-radius: 1px;
}



.fragrance-section {
  text-align: center; 
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}


/* Grid container unique for fragrance items */
.fragrance-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Single perfume item card */
.fragrance-item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.fragrance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}


.fragrance-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.fragrance-item h3 {
  font-size: 1.2rem;
  margin: 8px 0 4px;
  font-weight: 600;
  color: #222;
}

.fragrance-item p {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
}

.subtitle {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-bottom: 4px;
}

.price {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-weight: 400;
  font-size: 0.95rem;
}

/* Shop Now Button unique class */
.fragrance-shop-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.fragrance-shop-btn i {
  margin-right: 6px;
}

.fragrance-shop-btn:hover {
  background-color: #444;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .fragrance-title {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .fragrance-products {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .fragrance-shop-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .fragrance-products {
    grid-template-columns: 1fr;
  }
}


/* Responsive */


@media (max-width: 1024px) {
  .perfume-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .perfume-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu {
    position: absolute;
    top: 70px;
    right: 30px;
    background: #111;
    width: 200px;
    display: none;
    border-radius: 10px;
  }

  .menu ul {
    flex-direction: column;
    padding: 15px 0;
    gap: 15px;
  }

  .menu.show {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}


.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 30px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 220px;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer p,
.footer li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #aaa;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

/* whatapp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-label {
    position: absolute;
    right: 70px;
    background-color: #25D366;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 0.5s ease-in-out;
  }

  .whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

/* About us */
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant', serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222222;
}

.about-text {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.8;
  color: #555555;
}

/* contact us*/
.contact-order-section {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #fdfdfd;
  border-top: 1px solid #eee;
  justify-content: center;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  justify-content: space-around;
}

.form-box {
  flex: 1 1 400px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-box h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  color: #222;
  font-size: 1.4rem;
  text-align: center;
}

.input-group {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.input-group textarea {
  height: 100px;
}

.order-now-logo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1rem 0;
}

.order-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}




button[type="submit"] {
  background: #222;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #444;
}

.popup-message {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #6ada5c;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(56, 68, 11, 0.829);
  z-index: 1000;
  animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}


/*review section*/
.review-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}
.review-heading {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}
.review-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.review-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.review-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}
.rating {
  color: gold;
  margin-bottom: 10px;
}
.review-dots {
  margin-top: 20px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .review-carousel {
    flex-direction: column;
    align-items: center;
  }
}


