* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Colors */
:root {
  --primary: #c2185b;      /* Dark pink / maroon */
  --primary-dark: #880e4f;
  --accent: #ffb300;       /* Gold-ish */
  --bg: oklch(97.699% 0.00408 285.923);
  --text: hwb(0 2% 98%);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hwb(0 98% 1%);
  border-bottom: 1px solid #fac105;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.50rem;
  font-weight: bold;
  color: var(--primary);
}
.navbar nav {
  display: flex;
  gap: 15px;
}
.navbar a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar a:hover {
  font-weight: 700;
  color: var(--primary);
}


/* Hero */
.hero {
  background-image: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}
.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.hero-sub {
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--accent);
  color: #222;
  font-weight: 600;
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn:hover {
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 40px 20px;
  background: var(--bg);
}
.section:nth-of-type(even) {
  background: #fff;
}
.section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}
.sub-text {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Services */
.services {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.service-card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.service-card h3 {
  color: var(--primary);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.9rem;
}

/* Add Design Form */
.add-design {
  max-width: 700px;
  margin: 0 auto 25px auto;
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.add-design h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.form-row {
  margin-bottom: 10px;
}
input[type="text"],
input[type="number"],
input[type="url"] {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 5px;
}

/* Gallery */
/* Gallery */
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.design-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.design-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.design-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.design-body h4 {
  font-size: 1rem;
  color: var(--primary-dark);
}

.design-body p {
  font-size: 0.85rem;
  color: #555;
}

.price {
  font-weight: 600;
  color: #c2185b;
}

.design-body .btn {
  margin-top: 6px;
  padding: 6px 14px;
  background: #d81b60;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
}

/* Reviews */
.review-box {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  text-align: center;
}
#review-text {
  font-style: italic;
  margin-bottom: 10px;
}
#review-name {
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.review-stars {
  margin-bottom: 12px;
}
.review-stars span {
  color: #ffa000;
  font-size: 1.1rem;
}
.review-nav button {
  padding: 8px 20px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(135deg, #e91e63, #ff5fa2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(233,30,99,0.35);
}

/* Contact */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-grid p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-grid a {
  color: var(--primary);
}
.btn-whatsapp {
  background: #25D366;
  color: #0e0d0d;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}
/* Footer */
.footer {
  text-align: center;
  padding: 10px;
  background: #111;
  color: #eee;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .navbar nav {
    gap: 10px;
    font-size: 0.85rem;
  }
}

/* ===== BRIDAL FALLING FLOWERS ===== */

.flower-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

.flower {
  position: absolute;
  top: -10%;
  font-size: 2.6rem;
  opacity: 0.85;
  animation: fall linear infinite;
}

/* Random positions & speed */
.flower:nth-child(1) { left: 10%; animation-duration: 10s; }
.flower:nth-child(2) { left: 25%; animation-duration: 13s; }
.flower:nth-child(3) { left: 40%; animation-duration: 11s; }
.flower:nth-child(4) { left: 55%; animation-duration: 14s; }
.flower:nth-child(5) { left: 70%; animation-duration: 12s; }
.flower:nth-child(6) { left: 85%; animation-duration: 15s; }
.flower:nth-child(7) { left: 30%; animation-duration: 16s; }
.flower:nth-child(8) { left: 60%; animation-duration: 18s; }

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(120vh) rotate(360deg);
    opacity: 0;
  }
}
/* ===== IMAGE FULL VIEW MODAL ===== */

.img-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.img-modal .modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.img-modal .close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
/* ===== SERVICES BRIDAL ANIMATION (ADD-ON) ===== */

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: serviceFadeUp 0.8s ease forwards;
  opacity: 0;
}

/* One-by-one reveal */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes serviceFadeUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Gold shimmer on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,179,0,0.35),
    transparent
  );
  transform: rotate(25deg);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.service-card:hover::before {
  animation: shimmer 2.4s ease;
  opacity: 1;
}

@keyframes shimmer {
  from { top: -120%; }
  to { top: 120%; }
}

/* Lift + glow */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(194,24,91,0.28);
}
.about {
  padding: 60px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* Text */
.about-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.line {
  width: 60px;
  height: 4px;
  background: hwb(59 0% 0%);
  display: block;
  margin-bottom: 60px;
}

.about-content h3 {
  color: #0e0d0d;
  margin-bottom: 15px;
}

.about-content p {
  line-height: 1.7;
  color: hsl(0, 6%, 7%);
}

/* Progress bar */
.skill {
  margin-top: 20px;
}

.skill label {
  font-size: 19px;
}

.bar{
  background: #333;
  height: 8px;
  border-radius: 10px;
  overflow: visible;
  margin-top: 6px;
  position: relative;   /* ADD */
}

.bar span{
  height: 100%;
  display: block;
  background: gold;
  animation: loadBar 2s ease forwards;  /* forwards ADD */
  position: relative;  /* ADD */
}

/* percentage text */
.bar span::after{
  content: attr(data-percent);
  position: absolute;
  right: 6px;
  top: -22px;        /* bar மேலே */
  font-size: 13px;
  color: #000;
  font-weight: 600;
}


/* Animations */
.fade-left {
  animation: fadeLeft 1.2s ease;
}

.fade-right {
  animation: fadeRight 1.2s ease;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes loadBar {
  from { width:0; }
  to { width:100%; }
}

.about-img{
  flex: 1;
}

.about-content{
  flex: 1.5;
}
/* ===== IMAGE MODAL ===== */

.modal{
  display:none;
  position:fixed;
  z-index:999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  text-align:center;
}

.modal-content{
  max-width:85%;
  max-height:80%;
  margin-top:60px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.close{
  position:absolute;
  top:20px;
  right:40px;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

.prev,.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.2);
  border:none;
  font-size:30px;
  color:#fff;
  padding:10px 14px;
  cursor:pointer;
  border-radius:6px;
}

.prev{ left:20px; }
.next{ right:20px; }

.prev:hover,.next:hover{
  background:rgba(255,255,255,0.4);
}
/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  /* Navbar wrap */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .navbar nav {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
  }

  /* About section column */
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-img img {
    max-width: 260px;
    margin: 0 auto;
  }

  /* Hero padding reduce */
  .hero {
    padding: 50px 15px;
  }

  /* Section spacing */
  .section {
    padding: 30px 15px;
  }
}
