/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
  padding: 0 0;
  background: #001f3f;
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: 0.4s;
}

body {
  padding-top: 100px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 170px;
}

#nav-menu {
  display: flex;
  justify-content: center;
}

#nav-menu>div:first-child {
  display: flex;
  align-items: center;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
  align-items: center;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #FFD700;
  bottom: -5px;
  left: 0;
  transition: 0.4s;
}

nav a:hover::after {
  width: 100%;
}

.nav-btn {
  /* margin-left:100px; */
  padding: 10px 25px;
  background: linear-gradient(45deg, #003366, #FFD700);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.4s;
}

.nav-btn:hover {
  color: #003366;
  /* background: #fff; */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Hide toggle by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 769px) {
  #nav-menu>div:first-child {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1100;
  }

  /* Hide nav links initially */
  #nav-menu a {
    display: block;
    margin: 15px 0;
  }

  #nav-menu {
    backdrop-filter: blur(102px);
    position: fixed;
    top: -200px;
    right: -100%;
    height: 130vh;
    width: 230px;
    background: #001f3f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease;
  }

  /* When Active */
  #nav-menu.active {
    right: 0;
  }

  #nav-menu a {
    margin: 10px 0;
    font-size: 18px;
  }

  .nav-btn {
    display: none;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #001f3f;
  color: #fff;
  padding-top: 80px;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  padding-bottom: 0;
}

.footer-logo {
  width: 160px;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #FFF9C4;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: #FFF9C4;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #FFF9C4;
  padding-left: 5px;
}

/* Newsletter */

.newsletter {
  margin-top: 10px;
  display: flex;
}

.newsletter input {
  padding: 10px;
  border: none;
  outline: none;
  flex: 1;
  border-radius: 30px 0 0 30px;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  background: #FFD700;
  color: #fff;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #003366;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  padding: 0px ;
  background: #001429;
  font-size: 0.85rem;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(45deg, #003366, #FFD700);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 2000;
  transition: 0.3s ease;
}

#backToTop:hover {
  background: #fff;
  color: #003366;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Social Icons Container */
.footer-social {
    display: flex;
    justify-content: flex-end;   
    margin-top: 15px;             
}

/* Icons spacing */
.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 0px;
    padding: 0 200px;
}

/* Individual icon style */
.social-icons a {
    width: 34px;
    height: 34px;
    font-size: 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover effect */
.social-icons a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

/* Make last column right aligned (perfect match with subscribe) */
.footer-col:last-child {
    text-align: right;
}
/* //==========================================================================================================================//
                                                                INDEX
//==========================================================================================================================// */

@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Playwrite+NZ+Basic:wght@100..400&family=Tapestry&display=swap");

/* ROOT COLORS */
:root {
  --black: #000d1a;
  --grey: rgb(87, 83, 81);
  --primary: #FFD700;
  --white: #fff;

  --title-font: "Tapestry", serif;
  --subtitle-font: "Playwrite NZ Basic", cursive;
  --body-font: "Libre Baskerville", serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}

body {
  background: var(--white);
}

/* HERO SECTION */
.index-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND CAROUSEL */
.index-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.index-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.index-slide.active {
  opacity: 1;
}

/* DARK OVERLAY */
.index-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* CONTENT LEFT SIDE */
.index-hero-content {
  position: relative;
  z-index: 3;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  color: var(--white);
}

/* TAGLINE */
.index-hero-tagline {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--title-font);
}

/* SUBTITLE */
.index-hero-subtitle {
  font-size: 18px;
  color: #cccbcb;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: var(--subtitle-font);
}

/* BUTTON */
.index-shop-btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 40px;
  width: fit-content;
  transition: 0.3s;
  border: 2px solid var(--white);
}

.index-shop-btn:hover {
  background: var(--primary);
  color: var(--black);
  border: 2px solid var(--primary);
}

/* CONTROLS */
.index-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.arrow {
  cursor: pointer;
  user-select: none;
  font-size: 22px;
  transition: 0.3s;
}

.arrow:hover {
  color: var(--primary);
}

.index-count {
  font-size: 18px;
  letter-spacing: 2px;
}

/* ==========ABOUT=========  */

/* SECTION */
.index-about-section {
  padding: 100px 8%;
  background: #fff;
}

.index-about-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */

.index-about-left {
  width: 50%;
}

.index-about-tag {
  color: var(--primary);
  margin-bottom: 20px;
  font-family: var(--title-font);
  font-size: 20px;
}

.index-about-heading {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--black);
}

.index-about-images {
  position: relative;
  width: 400px;
}

.index-img-main {
  width: 350px;
  height: 320px;
  object-fit: cover;
}

.index-img-overlap {
  width: 250px;
  height: 280px;
  object-fit: cover;
  position: absolute;
  bottom: -40px;
  right: -60px;
  border-bottom-right-radius: 120px;
}

/* RIGHT SIDE */

.index-about-right {
  width: 50%;
}

.index-right-image-wrapper {
  position: relative;
  margin-bottom: 30px;
  padding-left: 80px;
}

.index-right-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* LOGO CIRCLE */

.index-logo-circle {
  position: absolute;
  left: 0;
  top: 150px;
  /* transform:translateY(-50%); */
  width: 140px;
  height: 140px;
  z-index: 2;
  font-size: 22px;
}

.index-logo {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.index-logo img {
  width: 100%;
}

.index-circle-text {
  width: 140px;
  height: 140px;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* TEXT */

.index-right-heading {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--black);
}

.index-right-para {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* COUNTERS */

.index-counters {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.index-counter-box h4 {
  font-size: 36px;
  color: var(--primary);
}

.index-counter-box p {
  color: var(--grey);
  font-family: var(--subtitle-font);
}

/* BUTTON */

.index-about-btn {
  padding: 14px 30px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  border: 2px solid var(--black);
}

.index-about-btn:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}

/* ====== SERVICE ======  */
.index-services-section {
  padding: 100px 8%;
  text-align: center;
}

/* HEADER */

.index-services-tag {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
  font-family: var(--title-font);
}

.index-services-heading {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 60px;
}

/* GRID */

.index-services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */

.index-service-card {
  width: 250px;
}

/* OVAL IMAGE */

.index-service-img {
  width: 230px;
  height: 300px;
  border-radius: 120px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.index-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* GLASS EFFECT */

.glass-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */

.index-service-img:hover img {
  transform: scale(1.1);
}

.index-service-img:hover .glass-effect {
  opacity: 1;
}

/* NAME */

.index-service-name {
  margin-top: 15px;
  font-size: 20px;
  font-family: var(--subtitle-font);
  color: var(--grey);
}

/* ====== BOOKING ======  */

.index-booking-section {
  width: 100%;
  display: flex;
  min-height: 600px;
}

.index-booking-left {
  width: 40%;
  position: relative;
}

.index-booking-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlapping image */

.index-booking-overlap-img {
  position: absolute;
  right: -200px;
  bottom: 60px;

  width: 400px;
  height: 300px;

  object-fit: cover;
  object-position: bottom;
  image-orientation: flip;

  border-bottom-right-radius: 120px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* RIGHT 60% */

.index-booking-right {
  background: #f0f4f8;
  width: 60%;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 15%;
}

/* welcome line */

.index-booking-tag {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 20px;
  font-family: var(--title-font);
}

/* heading */

.index-booking-heading {
  font-size: 40px;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 40px;
}

/* checklist grid */

.index-booking-services {
  display: flex;
  gap: 80px;
  margin-bottom: 40px;
}

.index-booking-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.index-booking-item {
  font-size: 18px;
  font-family: var(--subtitle-font);
  color: var(--grey);
}

/* button */

.index-booking-btn {
  display: inline-block;
  padding: 14px 34px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid var(--black);
}

.index-booking-btn:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}

/* ====== TESTIMONIAL ======  */
.index-testimonial-section {
  width: 100%;
  padding: 100px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* ARROWS */

.index-test-arrow {
  font-size: 28px;
  cursor: pointer;
  color: var(--black);
  transition: 0.3s;
  user-select: none;
}

.index-test-arrow:hover {
  color: var(--primary);
}

/* CONTAINER */

.index-testimonial-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */

.index-testimonial-left {
  width: 50%;
}

.index-test-tag {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: var(--title-font);
}

.index-test-heading {
  font-size: 40px;
  color: var(--black);
  margin-bottom: 30px;
}

.index-test-content {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.quote-img img {
  width: 50%;
}

.index-test-text {
  color: var(--grey);
  line-height: 1.7;
  font-family: var(--subtitle-font);
}

/* CLIENT */

.index-client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.index-client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.index-client-name {
  font-size: 18px;
  color: var(--black);
  font-family: var(--title-font);
}

/* RIGHT */

.index-testimonial-right {
  width: 40%;
  position: relative;
  height: 400px;
}

.index-test-img {
  position: absolute;
  object-fit: cover;
}

/* pizza slice shape */

.index-top-img {
  width: 220px;
  height: 260px;
  top: 0;
  right: 0;
  border-top-right-radius: 50px;

  /* clip-path:polygon(0 0, 100% 0, 100% 100%); */
}

.index-bottom-img {
  border-bottom-left-radius: 50px;
  width: 260px;
  height: 300px;
  bottom: 0;
  left: 0;

  /* border-bottom-right-radius:120px; */
}

/* ====== PRICING ======  */
.index-pricing-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  gap: 80px;
}

/* LEFT */
.index-pricing-left {
  position: relative;
  width: 40%;
  height: 500px;
}

.index-pricing-img-main {
  width: 320px;
  height: 320px;
}

.index-pricing-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius:12px; */
}

.index-pricing-img-overlap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 360px;
}

.index-pricing-img-overlap img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-left-radius:12px; */
  border-bottom-right-radius: 80px;
}

/* RIGHT */
.index-pricing-right {
  width: 60%;
}

.index-pricing-tag {
  color: var(--primary);
  font-family: var(--title-font);
  font-size: 20px;
}

.index-pricing-title {
  font-size: 40px;
  margin: 15px 0 40px;
  line-height: 1.3;
}

/* MENU STYLE */
.index-price-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.index-price-item {
  display: flex;
  align-items: center;
  font-size: 20px;
}

.index-price-item span {
  font-family: var(--subtitle-font);
}

/* dotted line */
.index-price-item .dots {
  flex: 1;
  border-bottom: 2px dotted #ccc;
  margin: 0 15px;
}

/* ====== APPOINTEMENT ======  */

.index-appointment-section {
  width: 100%;
  height: 600px;
}

.index-appointment-container {
  display: flex;
  height: 100%;
}

/* LEFT IMAGE */

.index-appointment-left {
  width: 50%;
  height: 100%;
}

.index-appointment-img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

/* RIGHT CONTENT */

.index-appointment-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  background: #f0f4f8;
}

/* TAG */

.index-appointment-tag {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--title-font);
}

/* TITLE */

.index-appointment-title {
  font-size: 40px;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* PARA */

.index-appointment-para {
  color: rgb(87, 83, 81);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* CONTACT */

.index-appointment-contact {
  margin-bottom: 30px;
}

.index-contact-label {
  color: rgb(87, 83, 81);
  margin-bottom: 5px;
}

.index-contact-number {
  font-size: 24px;
  color: #FFD700;
  font-weight: 600;
}

/* BUTTON */

.index-appointment-btn {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 14px 32px;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s;
}

.index-appointment-btn:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}

/* ====== NEWSLETTER ======  */
.index-newsletter-section {
  padding: 80px 0;
}

.index-newsletter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT IMAGE */

.index-newsletter-left {
  width: 25%;
  display: flex;
  justify-content: flex-start;
}

.leaf-left-img {
  width: 370px;
  height: 400px;
}

/* CENTER CONTENT */

.index-newsletter-center {
  width: 50%;
  text-align: center;
}

/* TAG */

.index-newsletter-tag {
  color: var(--primary);
  font-size: 20px;
  font-family: var(--title-font);
  margin-bottom: 15px;
}

/* TITLE */

.index-newsletter-title {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 30px;
  line-height: 1.3;
}

/* FORM */

.index-newsletter-form {
  width: 100%;
  max-width: 450px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.index-newsletter-form input {
  border: none;
  outline: none;
  width: 70%;
  font-size: 16px;
}

.index-newsletter-form button {
  border: none;
  background: none;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

/* RIGHT IMAGE */

.index-newsletter-right {
  width: 25%;
  display: flex;
  justify-content: flex-end;
}

.leaf-right-img {
  width: 370px;
  height: 400px;
}

/* ====== RESPONSIVE ======  */

/* ================================= */
/* PERFECT INDUSTRY RESPONSIVE CSS  */
/* ================================= */

/* GLOBAL SAFE FIX */
* {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================= */
/* LARGE LAPTOP (1400px) */
/* ================================= */

@media (max-width: 1400px) {
  .index-hero-content {
    width: 60%;
  }

  .index-about-container {
    gap: 60px;
  }

  .index-booking-overlap-img {
    right: -150px;
  }
}

/* ================================= */
/* LAPTOP (1200px) */
/* ================================= */

@media (max-width: 1200px) {
  .index-hero-content {
    width: 70%;
  }

  .index-hero-tagline {
    font-size: 52px;
  }

  .index-about-images {
    width: 100%;
  }

  .index-img-main {
    width: 100%;
    height: auto;
  }

  .index-img-overlap {
    right: -30px;
    top: 70px;
  }

  .index-services-grid {
    gap: 30px;
  }

  .index-booking-overlap-img {
    width: 300px;
    height: 240px;
  }

  .index-pricing-img-overlap {
    right: -50px;
  }
}

/* ================================= */
/* TABLET (992px) */
/* ================================= */

@media (max-width: 992px) {

  /* HERO */
  .index-hero {
    height: auto;
    padding: 120px 0;
  }

  .index-hero-content {
    width: 85%;
  }

  .index-hero-tagline {
    font-size: 42px;
  }

  .index-overlay {
    top: 0;
    left: 0;
  }

  /* ABOUT */
  .index-about-container {
    flex-direction: column;
  }

  .index-about-left,
  .index-about-right {
    width: 100%;
  }

  .index-right-image-wrapper {
    padding-left: 0;
  }

  .index-logo-circle {
    display: none;
  }

  /* SERVICES */
  .index-services-grid {
    flex-wrap: wrap;
  }

  /* BOOKING */
  .index-booking-section {
    flex-direction: column;
  }

  .index-booking-left {
    width: 100%;
    height: 400px;
  }

  .index-booking-right {
    width: 100%;
    padding: 60px 8%;
  }

  .index-booking-overlap-img {
    display: none;
  }

  /* TESTIMONIAL */
  .index-testimonial-container {
    flex-direction: column;
    gap: 40px;
  }

  .index-testimonial-left {
    width: 100%;
  }

  .index-testimonial-right {
    width: 100%;
    height: 300px;
  }

  /* PRICING */
  .index-pricing-section {
    flex-direction: column;
    gap: 40px;
  }

  .index-pricing-left,
  .index-pricing-right {
    width: 100%;
  }

  /* APPOINTMENT */
  .index-appointment-container {
    flex-direction: column;
  }

  .index-appointment-left,
  .index-appointment-right {
    padding-top: 20px;
    width: 100%;
  }

  .index-appointment-section {
    height: auto;
  }

  /* NEWSLETTER */
  .index-newsletter-container {
    flex-direction: column;
    gap: 30px;
  }

  .index-newsletter-left,
  .index-newsletter-center,
  .index-newsletter-right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ================================= */
/* MOBILE (768px) */
/* ================================= */

@media (max-width: 768px) {
  section {
    padding: 50px 5% !important;
  }

  /* HERO */
  .index-hero-tagline {
    font-size: 34px;
    line-height: 1.2;
  }

  .index-hero-subtitle {
    font-size: 15px;
  }

  /* ABOUT */
  .index-about-heading {
    font-size: 28px;
  }

  /* SERVICES */
  .index-services-heading {
    font-size: 28px;
  }

  .index-service-card {
    width: 45%;
  }

  /* BOOKING */
  .index-booking-heading {
    font-size: 28px;
  }

  .index-booking-services {
    flex-direction: column;
    gap: 20px;
  }

  /* TESTIMONIAL */
  .index-test-heading {
    font-size: 28px;
  }

  /* PRICING */
  .index-pricing-title {
    font-size: 28px;
  }

  /* APPOINTMENT */
  .index-appointment-title {
    font-size: 28px;
  }

  /* NEWSLETTER */
  .index-newsletter-title {
    font-size: 26px;
  }
}

/* ================================= */
/* SMALL MOBILE (480px) */
/* ================================= */

@media (max-width: 480px) {
  .index-hero-tagline {
    font-size: 26px;
  }

  .index-service-card {
    width: 100%;
  }

  .index-services-heading,
  .index-about-heading,
  .index-booking-heading,
  .index-test-heading,
  .index-pricing-title,
  .index-appointment-title {
    font-size: 24px;
  }

  .index-newsletter-title {
    font-size: 22px;
  }
}

/* ================================= */
/* EXTRA RESPONSIVE POLISH */
/* ================================= */

/* HERO MOBILE FIX */
@media (max-width: 768px) {
  .index-hero {
    height: 90vh;
  }

  .index-hero-content {
    width: 100%;
    padding: 0 6%;
    text-align: center;
    align-items: center;
  }

  .index-controls {
    justify-content: center;
  }
}

/* ABOUT IMAGE STACK FIX */
@media (max-width: 768px) {
  .index-about-images {
    width: 100%;
  }

  .index-img-main {
    width: 80%;
    height: auto;
  }

  .index-img-overlap {
    position: relative;
    right: -250px;
    /* bottom:0; */
    top: -100px;
    width: 60%;
    margin-top: 20px;
    /* border-radius:20px; */
  }
}

/* BOOKING SECTION MOBILE FIX */
@media (max-width: 768px) {
  .index-booking-left {
    height: 300px;
  }

  .index-booking-right {
    padding: 50px 6%;
  }

  .index-booking-services {
    gap: 15px;
  }

  .index-booking-main-img {
    object-position: bottom;
    object-fit: cover;
  }
}

/* TESTIMONIAL IMAGE STACK FIX */
@media (max-width: 768px) {
  .index-testimonial-right {
    position: relative;
    height: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .index-test-img {
    position: relative;
    width: 45%;
    height: 200px;
  }
}

/* PRICING IMAGE FIX */
@media (max-width: 768px) {
  .index-pricing-left {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .index-pricing-img-main,
  .index-pricing-img-overlap {
    position: relative;
    width: 80%;
    height: 250px;
  }

  .index-pricing-img-overlap {
    top: -100px;
    left: 150px;
  }
}

/* TEAM  */

@media (max-width: 768px) {
  .index-service-img {
    margin: auto;
  }
}

/* NEWSLETTER MOBILE CLEAN FIX */
@media (max-width: 768px) {
  .index-appointment-btn {
    margin-bottom: 20px;
  }

  .leaf-left-img,
  .leaf-right-img {
    display: none;
  }

  .index-newsletter-form {
    flex-direction: column;
    gap: 15px;
    border: none;
  }

  .index-newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
  }

  .index-newsletter-form button {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
  }
}

/* SMALL MOBILE ULTRA CLEAN */
@media (max-width: 480px) {
  .index-img-overlap {
    right: -150px;
  }

  .index-pricing-img-overlap img {
    margin-left: -60px;
  }

  .index-booking-heading,
  .index-about-heading,
  .index-services-heading,
  .index-pricing-title,
  .index-test-heading,
  .index-appointment-title {
    font-size: 22px;
  }

  .index-hero-tagline {
    font-size: 22px;
  }

  .index-testimonial-section {
    gap: 20px;
  }
}

/* //==========================================================================================================================//
                                                                ABOUT
//==========================================================================================================================// */


:root {
  --black: #000d1a;
  --grey: rgb(87, 83, 81);
  --primary: #FFD700;
  --white: #fff;
}

/* ===== ABOUT BANNER SECTION ===== */

.about-banner {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("../Images/ab1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark soft overlay */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Content */
.about-banner-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.about-banner-title {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-banner-breadcrumb {
  font-size: 18px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 300px;
  }

  .about-banner-title {
    font-size: 38px;
  }

  .about-banner-breadcrumb {
    font-size: 15px;
  }
}

/* container */
.about-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ================== ABOUT (Beautiqua-style) ================== */
.about-split {
  background: var(--white);
  padding: 62px 0 0;
  position: relative;
  z-index: 6;
  overflow: visible;
  height: 95vh;
}

.about-split .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: start;
  width: 90%;
  /* margin-left: 100px;
  margin-right: 100px; */
}

/* left image */
.about-split__left {
  /* margin-right: 100px; */
}
.about-split__main-img {
  object-fit: cover;
  display: block;
  margin-left: 100px;
}

/* right */
.about-split__right {
  padding-top: 4px;
  position: relative;
  z-index: 7;
  margin-left: -100px;
  /* max-width: 100%;
  width: auto; */
}

.about-split__top {
  display: grid;
  grid-template-columns: 0px 1fr;
  gap: 0px;
  align-items: start;
  margin-bottom: 24px;
}

.about-split__welcome {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.55em;
  font-size: 12px;
  color: var(--grey);
  user-select: none;
  margin-top: 8px;
  font-weight: 600;
}

.about-split__brand {
  font-size: 44px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.about-split__title {
  font-size: 65px;
  line-height: 0.95;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--black);
}

.about-split__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0px 0px 0px;
  /* margin-bottom: -20px; */
}

.about-split__text {
  margin: 50px 0 0;
  color: var(--grey);
  font-size: 18px;
  line-height: 1.95;
}

/* cards overlap */
.about-split__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transform: translateY(120px);
  position: relative;
  z-index: 10;
}

.about-card3 {
  margin-top: 50px;
}

.about-card__img {
  position: relative;
  overflow: hidden;
}

.about-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.about-card__label {
  position: absolute;
  text-align: center;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.35em;
  padding: 8px;
  background-color: #00000089;
  text-transform: uppercase;
}

.about-card__meta {
  text-align: center;
  padding-top: 14px;
}

.about-card__num {
  font-size: 54px;
  font-weight: 900;
  color: var(--black);
  margin: 0 0 12px;
}

.about-card__desc {
  margin: 0;
  color: var(--grey);
  line-height: 1.85;
  max-width: 260px;
  margin-inline: auto;
}

.about-card:hover .about-card__img img {
  transform: scale(1.12);
}

/* ================== VIDEO SECTION (Beautiqua-style) ================== */
.about-video {
  position: relative;
  padding: 190px 0 120px;
  /* ✅ top padding to fit overlapped cards */
  overflow: hidden;
  background: #f6f3f1;
  z-index: 1;
  height: 150vh;
  background: url("../Images/contact1.avif") center/cover no-repeat;
}

.about-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 243, 241, 0.786);
  z-index: 0;
}

.about-video__bg {
  position: absolute;
  inset: 0;

  /* ✅ half white / half image */
  background: url("../Images/grid.jpg") center/cover no-repeat;
  margin: 430px 150px 200px 380px;
  height: 600px;
  z-index: 2;
}

.about-video__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 30px;
}

.about-video__content {
  position: relative;
  z-index: 6;
  transform: translateX(92px);
  max-width: 540px;
}

.about-video__title {
  margin: 450px -20px 18px;
  color: var(--black);
  font-size: 50px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 900;
}

.about-video__nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--grey);
  letter-spacing: 0.3em;
  font-size: 12px;
  margin-top: 6px;
}

.about-video__nav-btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--grey);
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.about-video__nav-btn:hover {
  color: var(--primary);
}

/* --------- HERO SECTION --------- */
.about-hero {
  background: #ffffff;
  padding: 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about-hero-img {
  background-size: cover;
  background-position: center;
}

.about-hero-content {
  position: relative;
  padding: 110px 80px;
}

.about-hero-welcome {
  position: absolute;
  left: 25px;
  top: 150px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 0.45em;
  color: #999;
  font-family: "Poppins", sans-serif;
}

.about-hero-heading span {
  font-size: 34px;
  font-family: "Playfair Display", serif;
  color: #f46b7f;
  letter-spacing: 2px;
}

.about-hero-title {
  font-size: 62px;
  margin-top: -10px;
  margin-bottom: 30px;
  line-height: 0.95;
  font-family: "Playfair Display", serif;
}

.about-hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  font-size: 15px;
  color: #777;
  line-height: 1.9;
  max-width: 650px;
}

/* --------- TILES SECTION --------- */
.about-tiles {
  background: linear-gradient(180deg, #fff 0%, #f7f3ef 100%);
  padding: 100px 0 120px;
}

.about-tiles-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  text-align: center;
}

.about-tile-img {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
}

.about-tile-label {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: #666;
}

.about-tile-number {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  margin: 14px 0;
  color: #1f2a33;
}

.about-tile-desc {
  font-size: 15px;
  color: #777;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ================= MOST POPULAR (UPDATED LAYOUT) ================= */
.about-popular {
  padding: 95px 0 110px;
  background: #fff;
}

.about-popular__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* left & right */
  gap: 104px;
  align-items: start;
  margin: 0px 60px;
}

.about-popular__head h2 {
  font-size: 54px;
  line-height: 0.95;
  margin-bottom: 18px;
  margin-top: 10px;
}

.about-popular__head p {
  color: var(--about-text);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 26px;
  font-size: 16px;
}

/* cards stacks (each side 3 cards) */
.about-popular__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}

/* card */
.about-pop-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--about-shadow);
  transition: transform 0.22s ease;
  max-width: 450px;
}

.about-pop-card:hover {
  transform: translateY(-4px);
}

.about-pop-card__img {
  height: 520px;
  max-width: 500px;
  background-size: cover;
  background-position: center;
}

.about-pop-card__body {
  padding: 18px 18px 20px;
}

.about-pop-card__title {
  font-size: 22px;
  margin: 8px 0 8px;
}

.about-pop-card__text {
  color: var(--about-text);
  line-height: 1.85;
  font-size: 16.5px;
}

/* CTA button bottom on right */
.about-popular__cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 60px;
  border: 1px solid rgba(0, 0, 0, 0.7);

  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;

  color: #000;
  background: transparent;

  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* responsive */
@media (max-width: 992px) {
  .about-popular__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-pop-card__img {
    height: 240px;
  }
}

/* ================= STRIP SLIDER ================= */
.about-strip {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.about-strip__track {
  display: flex;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.about-strip__track::-webkit-scrollbar {
  display: none;
}

.about-strip__item {
  flex: 0 0 220px;
  height: 140px;
  background-size: cover;
  background-position: center;
}

.about-strip__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  font-size: 28px;
  line-height: 1;
}

.about-strip__btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(0, 0, 0, 0.55);
}

.about-strip__btn--left {
  left: 12px;
}

.about-strip__btn--right {
  right: 12px;
}

/* ================= NEWSLETTER ================= */
.about-news {
  position: relative;
  padding: 110px 0 120px;
  background: #efe9e6;
  overflow: hidden;
}

.about-news__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.about-news__wrap {
  position: relative;
  text-align: center;
}

.about-news h2 {
  font-size: 54px;
  line-height: 0.95;
  margin-bottom: 16px;
}

.about-news p {
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-news__form {
  max-width: 760px;
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: var(--about-shadow);
  border-radius: 50px;
  height: 74px;
}

.about-news__icon {
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
}

.about-news__form input::placeholder {
  letter-spacing: 0.35rem;
}

.about-news__form input {
  flex: 1;
  border: 1px solid var(--primary);
  outline: none;
  font-size: 12px;
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Playfair Display", serif;
}

.about-news__form button {
  width: 80px;
  height: 90%;
  border: 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin: 5px;
}

.about-news__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-news__social a {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.6);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--primary);
}

.about-news__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1200px) {
  .about-split {
    height: 96vh;
  }
}

@media (max-width: 1100px) {
  .about-split {
    height: 76vh;
  }

  .about-split__title {
    font-size: 48px;
    letter-spacing: 0.02em;
  }

  .about-split p {
    font-size: 14px;
  }

  /* .abouut-video {
    height: 100vh;
  } */

  .about-video__bg {
    margin: 350px 100px 200px 300px;
    height: 500px;
  }

  .about-video__title {
    margin: 390px -20px 18px;
    font-size: 38px;
  }
}

@media (max-width: 1024px) {
  .about-split {
    height: 105vh !important;
  }
  .about-split .about-container {
    width: 100%;
  }
  .about-split__cards {
    margin-left: 40px;
    width: 100%;
  }
  .about-card {
    margin-left: 0px;
  }
  .about-split__main-img {
    margin-left: 30px;
  }

  .about-split__cols {
    margin: 50px 0px 0px;
    margin-left: 50px;
  }
  .about-split__title {
    font-size: 35px;
  }
  .about-split__text {
    margin: 0px 0px 0px 0px;
    font-size: 15px;
  }
  .about-video {
    height: 150vh;
  }
  .about-video__bg {
    margin: 410px 100px 200px 300px;
    height: 500px;
  }
}

@media (max-width: 992px) {
  .about-split {
    height: 45vh;
    padding: 60px 0;
  }
  .about-split__left {
    display: none;
  }

  .about-split .about-container {
    grid-template-columns: 1fr;
  }

  .about-split__right {
    margin: 0 auto;
    max-width: 600px;
  }
  .about-video {
    height: 70vh;
  }
  .about-container {
    width: 70%;
  }
}

@media (max-width: 768px) {
  /* ===== Banner ===== */
  .about-banner {
    height: 260px;
  }

  .about-banner-title {
    font-size: 32px;
  }

  .about-banner-breadcrumb {
    font-size: 14px;
  }

  /* ===== About Split Section ===== */
  .about-split {
    padding: 60px 0;
    height: 90vh !important;
  }

  .about-split__left {
    display: none;
  }

  .about-split__cards {
    margin-left: 0px;
    margin-top: -50px;
    width: 100%;
  }
  
  .about-split__title{
      font-size: 58px;
  }

  /* ===== Video Section ===== */
  .about-video {
    height: 150vh;
  }

  .about-video__bg {
    margin: 500px 50px 200px 200px;
    height: 400px;
  }

  .about-video__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-video__content {
    transform: none;
    max-width: 100%;
  }

  .about-split__cols {
    margin-left: 0px;
  }

  .about-video__title {
    font-size: 32px;
    margin: 30px 0 20px;
    text-align: center;
  }

  .about-split__text {
    font-size: 15px !important;
    max-width: auto;
  }

  .t1 {
    text-align: center;
  }

  .about-video__bg {
    margin: 10px;
    height: 300px;
    position: relative;
    margin-top: 380px;
  }

  /* ===== Hero Section ===== */
  .about-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-content {
    padding: 60px 25px;
  }

  .about-hero-title {
    font-size: 34px;
  }

  .about-hero-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ===== Tiles Section ===== */
  .about-tiles {
    padding: 70px 0;
  }

  .about-tiles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-tile-img {
    width: 200px;
    height: 200px;
  }

  /* ===== Popular Section ===== */
  .about-popular {
    padding: 70px 0;
  }

  .about-popular__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 0;
    justify-items: center;
  }

  .about-pop-card {
    max-width: 100%;
    width: 100%;
  }

  .about-popular__head h2 {
    font-size: 30px;
  }

  .about-pop-card {
    max-width: 100%;
  }

  .about-pop-card__img {
    height: 220px;
  }

  /* ===== Strip Slider ===== */
  .about-strip {
    padding: 0px 0 !important;
  }
  .about-strip__item {
    flex: 0 0 160px;
    height: 100px;
    background-size: contain;
  }

  /* ===== Newsletter ===== */
  .about-news {
    padding: 70px 0;
  }

  .about-news h2 {
    font-size: 30px;
  }

  .about-news__form {
    /* flex-direction: column; */
    height: auto;
  }

  /* .about-news__icon {
    width: 100%;
    margin-bottom: 10px;
  } */

  .about-news__social {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  /* ===== Split Section ===== */
  .about-split {
    height: auto !important;
    padding: 60px 0;
  }

  .about-split__cols {
    grid-template-columns: 1fr !important;
    gap: 0px;
    margin: 10px 0;
  }

  .about-split__title {
    font-size: 42px;
    line-height: 1.1;
  }

  .about-split__brand {
    font-size: 38px;
  }

  .about-split__text {
    font-size: 13px;
    margin: 20px 0 15px;
    margin-left: 0;
  }

  /* Remove cards overlap fully */
  .about-split__cards {
    grid-template-columns: 1fr;
    /* single column */
    transform: none;
    gap: 20px;
  }

  .about-card__img img {
    height: 250px;
  }

  /* ===== Video Section ===== */
  .about-video {
    height: auto;
    padding: 50px 0;
  }

  .about-video__title {
    font-size: 22px;
    text-align: center;
  }

  .about-video__content {
    margin-top: 20px;
    text-align: center;
  }

  .about-video__bg {
    height: 200px;
    margin: 20px auto 0;
    width: 95%;
  }

  /* ===== Popular Section ===== */
  .about-popular {
    padding: 0px 0;
  }
  .about-popular__head h2 {
    font-size: 24px;
    text-align: center;
  }

  /* ===== Newsletter ===== */
  .about-news h2 {
    font-size: 24px;
  }

  .about-news__form {
    padding: 15px;
  }
}

@media (max-width: 425px) {
  .about-popular {
    width: 90%;
    margin: 0px auto;
  }
}

/* //==========================================================================================================================//
                                                                SERVICE
//==========================================================================================================================// */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f6efe8;
  color: #3e2c23;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HERO ================= */

.service-hero {
  height: 80vh;
  background: url("../Images/contact1.avif") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(62, 44, 35, 0.9),
      rgba(139, 94, 60, 0.5));
}

.hero-content {
  /* margin-top: 100px; */
  position: relative;
  text-align: center;
  color: #fff;
  padding: 70px;
  max-width: 700px;
  border-radius: 25px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1.2s ease;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #FFD700);
  background-clip: initial;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btn {
  padding: 14px 35px;
  background: linear-gradient(45deg, #003366, #FFD700);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-btn:hover {
  color: #003366;
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 400px) {
  .hero-content {
    /* margin-top: 50px; */
    position: relative;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 700px;
    border-radius: 25px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: fadeUp 1.2s ease;
  }
}

/* ================= SERVICES ================= */

/* ================= SERVICES SECTION (Elegant Luxury Style) ================= */

.services {
  padding: 20px 0;
  background: #fff6f3;
  text-align: center;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #6b3e2e;
  margin-bottom: 10px;
}

.section-title p {
  color: #a67b5b;
  font-size: 0.95rem;
}

/* GRID */

.services-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

/* CARD */

.service-card {
    position: relative;
    padding: 50px 25px 45px;
    background: linear-gradient(145deg, #ffffff, #fff1ea);
    border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
    transition: 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
            
        }

/* Soft layered shadow behind */
.service-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #ffffff;
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
  z-index: -1;
  opacity: 0.4;
}

/* CIRCULAR IMAGE */

.service-image {
  width: 170px;
  height: 170px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #FFF9C4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* TEXT */

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #6b3e2e;
}

.service-card p {
  font-size: 0.9rem;
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card span {
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFD700;
}

/* BUTTON */

.book-btn {
  padding: 10px 24px;
  background: #FFD700;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: 0.3s;
  border: none;
}

.book-btn:hover {
  background: #6b3e2e;
}

.cart-btn {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #FFD700;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero-btn1 {
    display: inline-block;  
    margin-top: 20px;
    padding: 14px 35px;
    background: linear-gradient(45deg, #003366, #FFD700);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    
}

.hero-btn1:hover {
  color: #003366;
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ================= STATS ================= */

.service-stats {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fff, #fff4ee);
  text-align: center;
  position: relative;
}

/* Decorative soft glow */
.service-stats::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(200, 162, 124, 0.2);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(100px);
}

.stats-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

/* DESIGNER STAT CARD */

.stat-box {
  padding: 60px 30px;
  background: linear-gradient(145deg, #fdf4ef, #fff1ea);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  transition: 0.5s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  position: relative;
}

.stat-box:hover {
  transform: translateY(-15px) scale(0.98);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Big Elegant Number */

.stat-box h3 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Text */

.stat-box p {
  font-size: 1rem;
  color: #6b3e2e;
  letter-spacing: 1px;
}

.stats-header {
  margin-bottom: 70px;
  text-align: center;
}

.stats-header h2 {
  font-size: 2.6rem;
  color: #6b3e2e;
  margin-bottom: 15px;
}

.stats-header p {
  max-width: 600px;
  margin: auto;
  color: #a67b5b;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= CTA ================= */

 .service-cta {
    padding: 100px 0 ;
    text-align: center;
    background: linear-gradient(190deg, #af8861, #986a47, #af8861);
    color: #fff;
    position: relative;
}

/* ===== MODAL BACKGROUND ===== */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* Active modal */
.service-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.modal-content {
  background: #fff;
  width: 400px;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: zoomIn 0.3s ease;
  position: relative;
  margin-top: 100px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.modal-content h2 {
  margin: 10px 0;
}

.modal-content h3 {
  color: #FFD700;
  margin: 10px 0 20px;
}

.modal-buttons button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(45deg, #FFD700, #b88b60);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-buttons button:hover {
  transform: translateY(-3px);
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}

/* //==========================================================================================================================//
                                                                CONTACT
//==========================================================================================================================// */

:root {
  --bg: #ffffff;
  --text: #000d1a;
  --muted: rgb(87, 83, 81);
  --border: rgba(34, 29, 26, 0.12);
  --shadow: 0 10px 30px rgba(34, 29, 26, 0.08);
  --radius: 18px;

  --accent: #FFD700;
  --accent2: #FFD700;
  --focus: rgba(189, 118, 85, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* a:hover {
    text-decoration: underline;
} */

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* HERO */
.hero {
  padding: 64px 0 26px;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  /* background: rgba(255, 255, 255, 0.75); */
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -2px;

  z-index: 0;
}

.hero-card>* {
  position: relative;
  z-index: 1;
}

.title {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 58ch;
  font-size: 15.5px;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  /* background: rgba(255, 255, 255, 0.85); */
  font-size: 13.5px;
  color: var(--muted);
  white-space: nowrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(240, 98, 146, 0.18);
}

.hero-media {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 216px;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.1);
  position: relative;
  background: #fff;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  /* background: rgba(255, 255, 255, 0.88); */
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge strong {
  color: var(--text);
  font-weight: 700;
}

/* INFO CARDS */
.info {
  padding: 18px 0 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* background: rgba(255, 255, 255, 0.82); */
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  padding: 18px;
}

.card-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(240, 98, 146, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon img {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.92;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.hint {
  font-size: 12.5px;
  color: var(--muted);
  opacity: 0.9;
}

/* MAIN */
.main {
  padding: 18px 0 70px;
}

.grid-main {
    display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.grid-main .card {
  height: 100%;
}

.section-title {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.section-desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

/* FORM */
form {
  margin-top: 8px;
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label {
  font-size: 13px;
  color: #374151;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  /* background: rgba(255, 255, 255, 0.95); */
  outline: none;
  transition:
    box-shadow 0.15s ease,
    border-color 0.15s ease;
  font-size: 14.5px;
}

input:focus,
textarea:focus {
  /* border-color: rgba(240, 98, 146, 0.55); */
  box-shadow: 0 0 0 6px var(--focus);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.error {
  font-size: 12.5px;
  color: #b91c1c;
  display: none;
}

.field.invalid .error {
  display: block;
}

.field.invalid input,
.field.invalid textarea {
  border-color: rgba(185, 28, 28, 0.55);
  box-shadow: 0 0 0 6px rgba(185, 28, 28, 0.12);
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14.5px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111827;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(240, 98, 146, 0.22);
  transition:
    transform 0.08s ease,
    filter 0.12s ease;
}

button:active {
  transform: translateY(1px);
}

.ghost {
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--text);
  font-weight: 700;
}

#statusText {
  font-size: 12.5px;
  color: var(--muted);
}

/* MAP */
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* TOAST */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(380px, calc(100% - 36px));
  border: 1px solid var(--border);
  /* background: rgba(255, 255, 255, 0.92); */
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
  z-index: 999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast .badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(240, 98, 146, 0.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: #111827;
}

.toast h4 {
  margin: 0;
  font-size: 14.5px;
}

.toast p {
  margin: 2px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}

.toast .x {
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 6px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .grid-main {
    grid-template-columns: 1fr;
  }

  .map iframe {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .fields {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 52px 0 18px;
  }

  .hero-card {
    padding: 18px;
  }

  .card {
    padding: 16px;
  }

  .hero-img {
    min-height: 200px;
  }
}

/* //==========================================================================================================================//
                                                                CART
//==========================================================================================================================// */

body {
  font-family: "Poppins", sans-serif;
  background: #f6efe8;
  color: #3e2c23;
  overflow-x: hidden;
  /* padding: 40px; */
  margin: 0;
}

/* 
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    margin: 0;
    padding: 0 0;
    background: #001f3f;
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: 0.4s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 170px;
}

#nav-menu {
    display: flex;
} */

/* nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    align-items: center;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #FFD700;
    bottom: -5px;
    left: 0;
    transition: 0.4s;
}

nav a:hover::after {
    width: 100%;
} */

/* .nav-btn { */
/* margin-left:100px; */
/* padding: 10px 25px;
    background: linear-gradient(45deg, #003366, #FFD700);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.4s;

}

.nav-btn:hover {
    color: #003366;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
} */

/* Hide toggle by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 769px) {

  /* Show hamburger */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1100;
  }

  /* Hide nav links initially */
  #nav-menu a {
    display: block;
    margin: 15px 0;
  }

  #nav-menu {
    backdrop-filter: blur(102px);
    position: fixed;
    top: -200px;
    right: -100%;
    height: 130vh;
    width: 230px;
    background: #001f3f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease;
  }

  /* When Active */
  #nav-menu.active {
    right: 0;
  }

  #nav-menu a {
    margin: 10px 0;
    font-size: 18px;
  }

  .nav-btn {
    display: none;
  }
}

.cart_h {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

/* Layout */
.cart-wrapper {
  margin-top: 30px;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Product Card */
.cart-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cart-box:hover {
  transform: translateY(-6px);
}

.cart-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cart-left img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 15px;
}

.cart-info h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}

.price {
  color: #FFD700;
  font-weight: 600;
  margin-top: 6px;
  font-size: 15px;
}

/* Quantity */
.quantity-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: linear-gradient(45deg, #FFD700, #b88b60);
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  transform: scale(1.1);
}

.qty-number {
  font-weight: 600;
  font-size: 16px;
}

/* Delete Emoji */
.delete-btn {
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  transition: 0.2s;
}

.delete-btn:hover {
  transform: scale(1.2);
}

/* Checkout Box */
.checkout-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.checkout-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

/* Summary Item */
.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.summary-item img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
}

.summary-details {
  flex: 1;
  font-size: 13px;
}

.summary-details span {
  display: block;
}

.summary-price {
  font-weight: 600;
}

/* Total */
.total {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 20px;
  font-weight: 600;
}

/* Checkout Button */
.checkout-btn {
  display: block;
  /* ðŸ”¥ ye add karo */
  text-align: center;
  /* text center ke liye */
  margin-top: 25px;
  /* 55px zyada tha, thoda balanced */
  width: 90%;
  padding: 15px;
  background: linear-gradient(45deg, #FFD700, #b88b60);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.checkout-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .cart-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .cart-box {
    position: relative;
  }

  .delete-btn {
    position: absolute;
    top: 10px;
    right: 5px;
    padding: 8px;
    font-size: 11px;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.2s;
  }
}

.empty-cart {
  text-align: center;
  background: #ffffff;
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.empty-cart h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.empty-cart p {
  color: #777;
  margin-bottom: 25px;
}

.empty-btn {
  padding: 14px 28px;
  background: linear-gradient(45deg, #FFD700, #b88b60);
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.empty-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cart-btn {
  position: relative;
  display: inline-block;
}

/* .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FFD700;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} */

/* //==========================================================================================================================//
                                                                CHECKOUT
//==========================================================================================================================// */

body {
  font-family: "Poppins", sans-serif;
  background: #f6efe8;
  /* padding: 40px; */
  margin: 0;
  color: #3e2c23;
}

/* .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    margin: 0;
    padding: 0 0;
    background: #001f3f;
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: 0.4s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 170px;
}

#nav-menu {
    display: flex;
} */

/* nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
} */
/* 
nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #FFD700;
    bottom: -5px;
    left: 0;
    transition: 0.4s;
} */

nav a:hover::after {
  width: 100%;
}

.nav-btn {
  /* margin-left:100px; */
  padding: 10px 25px;
  background: linear-gradient(45deg, #003366, #FFD700);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.4s;
}

.nav-btn:hover {
  color: #003366;
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Hide toggle by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 769px) {

  /* Show hamburger */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1100;
  }

  /* Hide nav links initially */
  #nav-menu a {
    display: block;
    margin: 15px 0;
  }

  #nav-menu {
    backdrop-filter: blur(102px);
    position: fixed;
    top: -200px;
    right: -100%;
    height: 130vh;
    width: 230px;
    background: #001f3f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease;
  }

  /* When Active */
  #nav-menu.active {
    right: 0;
  }

  #nav-menu a {
    margin: 10px 0;
    font-size: 18px;
  }

  .nav-btn {
    display: none;
  }
}

.cart-btn {
  position: relative;
  display: inline-block;
}

/* .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FFD700;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} */

.check_head {
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}

.cart_h {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 35px;
  font-size: 28px;
}

/* Center Layout */
.checkout-wrapper {
  max-width: 750px;
  margin: auto;
}

.checkout-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

/* Product Box */
.product-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: 15px;
  background: #faf7f3;
  margin-bottom: 18px;
}

.product-box img {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  object-fit: cover;
}

.product-details h4 {
  margin: 0;
  font-size: 18px;
}

.product-details span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  color: #777;
}

/* Divider */
.divider {
  height: 1px;
  background: #eee;
  margin: 25px 0;
}

/* Payment Section */
.payment-method {
  margin-top: 20px;
}

.payment-method h4 {
  margin-bottom: 12px;
  font-size: 20px;
}

.payment-method label {
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
  cursor: pointer;
}

.payment-method label input[type]

/* Total */
.total {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

/* Button */
.order-btn {
  background: #FFD700;
  margin-top: 25px;
  width: 100%;
  padding: 16px;
  font-size: 20px;
  border-radius: 15px;
  border: none;
  color: #fff;
}

/* UPI Field Container */
.upi-field {
  display: none;
  margin-top: 15px;
  animation: fadeSlide 0.3s ease;
}

/* UPI Input */
#upiId {
  width: 80%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #f0e6dc;
  background: #faf7f3;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
#upiId:focus {
  border-color: #FFD700;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 162, 124, 0.2);
}

/* Placeholder Style */
#upiId::placeholder {
  color: #b8a999;
}

/* Smooth Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FIX RADIO ALIGNMENT ===== */
.payment-method label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}

.payment-method input[type="radio"] {
  width: auto;
  padding: 0;
  margin: 0;
}