
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif
}
body{
  background:#faf7f4;
  color:#2b2b2b
}
a{
  text-decoration:none;
  color:inherit
}
/* ===================HEADER PAGE====================== */

        /* ================= HEADER SECTION ================= */
        .head-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            height: 80px;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        /* ================= LOGO ================= */
        .head-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1100;
        }

        .head-logo img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .head-logo h5 {
            font-size: 20px;
            font-weight: 700;
            color: #b3559f;
        }

        /* ================= NAVIGATION (Desktop) ================= */
        .head-nav {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .head-nav-link {
            font-weight: 500;
            color: #444;
            font-size: 15px;
            padding: 8px 0;
            position: relative;
        }

        .head-nav-link:hover { color: #b3559f; }

        .head-active {
            color: #b3559f !important;
            font-weight: 700;
        }

        .head-active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: #b3559f;
        }

        /* ================= DROPDOWN ================= */
        .head-item { position: relative; }

        .head-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            list-style: none;
            min-width: 200px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: 0.3s ease;
            padding: 10px 0;
        }

        .head-dropdown li a {
            display: block;
            padding: 10px 20px;
            font-size: 14px;
            color: #555;
        }

        .head-dropdown li a:hover {
            background: #fff0f9;
            color: #b3559f;
            padding-left: 25px;
        }

        .head-item:hover .head-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* ================= LOGIN BUTTON ================= */
        .head-login-btn {
            background: #b3559f;
            color: #ffffff;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
        }

        .head-login-btn:hover {
            background: #2b2b2b;
            transform: translateY(-2px);
        }

        /* ================= HAMBURGER ================= */
        #head-toggle { display: none; }

        .head-menu-icon {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1100;
        }

        .head-menu-icon span {
            width: 28px;
            height: 3px;
            background: #2b2b2b;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Dark Overlay when menu is open */
        .head-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            z-index: 998;
        }

        /* ================= RESPONSIVE (Tablets & Mobile) ================= */
        @media (max-width: 1024px) {
            .head-section { padding: 0 30px; }
            
            .head-menu-icon { display: flex; }

            .head-nav {
                position: fixed;
                top: 0;
                left: -100%; /* Start off-screen left */
                width: 300px;
                height: 100vh;
                background: #ffffff;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 40px 30px;
                gap: 15px;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 10px 0 30px rgba(0,0,0,0.1);
                z-index: 999;
                overflow-y: auto;
            }

            /* Show menu from left */
            #head-toggle:checked ~ .head-nav { left: 0; }
            #head-toggle:checked ~ .head-overlay { display: block; }

            /* Hamburger transform to X */
            #head-toggle:checked + .head-menu-icon span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            #head-toggle:checked + .head-menu-icon span:nth-child(2) { opacity: 0; }
            #head-toggle:checked + .head-menu-icon span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

            .head-nav-link {
                width: 100%;
                font-size: 18px;
                border-bottom: 1px solid #eee;
            }

            .head-active::after { display: none; } /* Hide underline on mobile */

            /* Mobile Dropdown adjustment */
            .head-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                width: 100%;
                padding-left: 15px;
                background: #fafafa;
            }

            .head-item { width: 100%; }
            .head-item:hover .head-dropdown { display: block; }

            .head-login-btn {
                width: 100%;
                margin-top: 20px;
                padding: 15px;
            }
        }

        /* Small Mobile Adjustments */
        @media (max-width: 360px) {
            .head-logo h5 { font-size: 16px; }
            .head-logo img { width: 34px; }
            .head-nav { width: 260px; }
        }

/* .footer{text-align:center;padding:25px;background:#111;color:#aaa} */
/* ================Home Index Page1================= */
/* ================= HERO SECTION ================= */

.h-hero{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  margin-top: -20px;
}

/* Background Slider */
.h-bg-slider{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:-2;
}

.h-bg{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.h-bg.active{
  opacity:1;
}

/* Dark Overlay */
.h-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  z-index:-1;
}

/* Hero Content */
.h-hero-content{
  width:100%;
  max-width:1300px;
  color:#fff;
  text-align:center;
  animation:fadeUp 1s ease;
}

/* Tag */
.h-hero-tag{
  color:#b3559f;
  letter-spacing:2px;
  font-size:14px;
  text-transform:uppercase;
  background:#ffffff;
  padding:4px 12px;
  border-radius:20px;
  margin-bottom:10px;
}

/* Heading */
.h-hero-content h1{
  font-size:60px;
  margin:15px 0;
  line-height:1.2;
}

/* Paragraph */
.h-hero-content p{
  color:#ddd;
  margin-bottom:25px;
  font-size:16px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

/* Buttons */
.h-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.h-btn{
  background:#b3559f;
  color:#000;
  padding:14px 30px;
  border-radius:6px;
  font-weight:600;
  transition:0.3s ease;
}

.h-btn:hover{
  background:#fff;
  color:#b3559f;
}

.h-link{
  color:#fff;
  font-weight:500;
  transition:0.3s ease;
}

.h-link:hover{
  color:#b3559f;
}

/* Animation */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

/* ===================== */
/* DESKTOP 1025px+ */
/* ===================== */

@media (min-width:1025px){
  .h-hero-content h1{
    font-size:60px;
  }
}

/* ===================== */
/* TABLET 768px – 1024px */
/* ===================== */

@media (min-width:768px) and (max-width:1024px){

  .h-hero{
    min-height:90vh;
  }

  .h-hero-content h1{
    font-size:42px;
  }

  .h-hero-content p{
    font-size:15px;
  }

  .h-btn{
    padding:12px 24px;
  }
}

/* ===================== */
/* MOBILE 360px – 767px */
/* ===================== */

@media (max-width:767px){

  .h-hero{
    min-height:85vh;
  }

  .h-hero-content{
    padding:0 15px;
  }

  .h-hero-content h1{
    font-size:28px;
  }

  .h-hero-content p{
    font-size:14px;
  }

  .h-buttons{
    flex-direction:column;
    gap:15px;
  }

  .h-btn{
    width:100%;
    text-align:center;
  }
}

/* ===================== */
/* EXTRA SMALL 360px */
/* ===================== */

@media (max-width:360px){

  .h-hero-content h1{
    font-size:24px;
  }

  .h-hero-content p{
    font-size:13px;
  }

  .h-tag{
    font-size:12px;
  }
}


/* ----------about section----------- */

/* ===== About Section ===== */
.abt-about-section{
  padding:80px 20px;
}

.abt-about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* ===== Left Content ===== */
.abt-about-content span{
  color:#b3559f;
  font-weight:600;
  display:inline-block;
  margin-bottom:10px;
}

.abt-about-content h2{
  font-size:40px;
  line-height:1.2;
  margin-bottom:20px;
}

.abt-about-content h2 em{
  color:#b3559f;
  font-style:italic;
}

.abt-about-content p{
  color:#666;
  margin-bottom:15px;
  line-height:1.7;
}

.abt-back{
  /* background-color: #64c9f875; */
  padding: 10px 20px;
  border-radius: 10px;
}

.abt-about-list{
  display:flex;
  gap:20px;
  margin:20px 0;
}

.abt-about-list div{
  font-weight:500;
}

.abt-about-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 26px;
  background:#b3559f;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s;
}

.abt-about-btn:hover{
  background:#b3559f;
}

/* ===== Image Area ===== */
.abt-about-images{
  position:relative;
  display:flex;
  gap:20px;
}

.abt-about-images img{
  width:50%;
  height: 450px;
  border-radius:20px;
  object-fit:cover;
  transition:0.5s;
}

.abt-about-images img:hover{
  transform:scale(1.03);
}

/* ===== Badge ===== */
.abt-exp-badge{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  background:#b3559f;
  color:#fff;
  width:130px;
  height:130px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:600;
  line-height:1.2;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  animation:float 3s ease-in-out infinite;
}

.abt-exp-badge span{
  font-size:26px;
  display:block;
}

/* ===== Animation ===== */
@keyframes float{
  0%,100%{ transform:translate(-50%,-50%) translateY(0); }
  50%{ transform:translate(-50%,-50%) translateY(-10px); }
}

/* ========================================= */
/* ===== MOBILE (0px – 360px) ===== */
/* ========================================= */
@media (max-width:767px) {

  .abt-about-section{
    padding:60px 15px;
  }

  .abt-about-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .abt-about-content h2{
    font-size:20px;
    line-height:1.3;
  }

  .abt-about-content p{
    font-size:14px;
    text-align: justify;
  }

  .abt-about-list{
    flex-direction:column;
    gap:10px;
  }

  .abt-about-btn{
    padding:12px 20px;
    font-size:14px;
  }

  .abt-about-images{
    flex-direction:column;
    gap:15px;
  }

  .abt-about-images img{
    width:100%;
    height:240px;
  }

  .abt-exp-badge{
    width:90px;
    height:90px;
    font-size:12px;
  }

  .abt-exp-badge span{
    font-size:18px;
  }

}


/* ========================================= */
/* ===== TABLET (768px – 1024px) ===== */
/* ========================================= */
@media (min-width:768px) and (max-width:1024px){

  .abt-about-section{
    padding:80px 25px;
  }

  .abt-about-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .abt-about-content h2{
    font-size:34px;
  }

  .abt-about-list{
    justify-content:center;
    flex-wrap:wrap;
  }

  .abt-about-images{
    justify-content:center;
  }

  .abt-about-images img{
    width:45%;
    height:350px;
  }

  .abt-exp-badge{
    width:110px;
    height:110px;
  }

}


/* ========================================= */
/* ===== LAPTOP & DESKTOP (1025px+) ===== */
/* ========================================= */
@media (min-width:1025px){

  .abt-about-container{
    grid-template-columns:1fr 1fr;
  }

  .abt-about-content h2{
    font-size:40px;
  }

  .abt-about-images img{
    height:450px;
  }

}
/* ---------------Menu - Deal------------------ */
.deal-deals{
  padding:80px 20px;
  background:#fff;
  text-align:center;
}

.deal-container{
  max-width:1200px;
  margin:auto;
}
.deal-container h2{
    color: #b3559f;
}

.deal-deals h2{
  font-size:36px;
  margin-bottom:10px;
}

.deal-subtitle{
  color:#777;
  max-width:700px;
  margin:0 auto 50px;
}

.deal-deal-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.deal-deal-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:left;
}

.deal-img-box{
  position:relative;
}

.deal-img-box img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.deal-offer{
  position:absolute;
  bottom:0;
  left:0;
  background:#b3559f;
  color:#fff;
  padding:8px 14px;
  font-size:13px;
  border-top-right-radius:12px;
}

.deal-content{
  padding:20px;
}
.deal-content h3{
    color: #000;
}

.deal-tag{
  display:inline-block;
  background:#ffe5ea;
  color:#64c9f8;
  padding:4px 12px;
  border-radius:20px;
  font-size:12px;
  margin-bottom:10px;
}

.deal-tags span{
  background:#ffe5ea;
  color:#b3559f;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  margin-right:5px;
}

.deal-content h3{
  margin:10px 0;
}

.deal-content p{
  font-size:14px;
  color:#666;
}

.deal-rating{
  color:#f7b500;
  font-size:14px;
}

.deal-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:15px;
}

.deal-price{
  font-size:18px;
  font-weight:600;
  color: #000;
}

.deal-price del{
  color:#999;
  font-size:14px;
}

.deal-btn{
  border:1px solid #b3559f;
  background:none;
  color:#b3559f;
  padding:8px 14px;
  border-radius:30px;
  cursor:pointer;
}

.deal-btn{
  background:#b3559f;
  color:#fff;
}

@media(max-width:992px){
  .deal-deal-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .deal-deal-grid{
    grid-template-columns:1fr;
  }
  .deal-deals h2{
    font-size:28px;
  }
}



/* ================Home Index Page 2==================== */

/* header banner section start */
/* Hero Section */
.hero {position: relative; min-height: 100vh; display: flex; align-items: center;justify-content: space-between;padding: 10px 100px;
  background-image: url("../asset/images/rrn10.jpg");background-size: cover;background-position: center;
  background-repeat: no-repeat; overflow: hidden;margin-top: -20px;}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.24);
  z-index:0;
}

.hero-content,
.hero-image{
  position:relative;
  z-index:1;
}

.hero-content h1 {
  font-size: 52px;
  letter-spacing: 6px;
  font-weight: 500;
  color: white;
}

.hero-content h2 {
  margin-top: 14px;
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 400;
  opacity: 0.9;
  color: white;
}

.line {
  display: block;
  width: 260px;
  height: 2px;
  background: #ffffff;
  margin: 28px 0;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 40px;
  color: white;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 34px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
}

.btn.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.outline:hover {
  background: #ffffff;
  color: #000;
}

.btn.filled {
  background: #ffffff;
  color: #000;
}

.btn.filled:hover {
  opacity: 0.85;
}

/* Image */
.hero-image img {
  width: 760px;
  margin-left: -60px;
  object-fit: cover;
}

@media (min-width:360px) and (max-width:767px){

  .hero{
    flex-direction:column;
    text-align:center;
    padding:80px 20px;
  }

  .hero-content h1{
    font-size:28px;
    letter-spacing:2px;
  }

  .hero-content h2{
    font-size:16px;
    letter-spacing:2px;
  }

  .hero-content p{
    font-size:14px;
  }

  .line{
    width:150px;
    margin:20px auto;
  }

  .buttons{
    flex-direction:column;
    gap:15px;
    align-items:center;
  }

  .btn{
    width:200px;
    text-align:center;
  }

  .hero-image img{
    width:260px;
    margin:40px 0 0 0;
  }

}
@media (min-width:768px) and (max-width:1024px){

  .hero{
    flex-direction:row;
    text-align:left;
    padding:50px 40px;
  }
  .hero-content{
    column-gap: 30px;
  }
  .hero-content h1{
    font-size:40px;
    letter-spacing:4px;
  }

  .hero-content h2{
    font-size:18px;
  }

  .line{
    margin:25px auto;
  }

  .buttons{
    justify-content:center;
  }

  .hero-image img{
    width:320px;
    margin-top:50px;
    
  }

}
@media (min-width:1025px){

  .hero{
    flex-direction:row;
    padding:100px 100px;
  }

  .hero-content h1{
    font-size:52px;
  }

  .hero-image img{
    width:600px;
    max-width:100%;
    margin-left:0;
  }

}
/* header banner section end */
/* about section start  */
/* ============= ABOUT ================ */
.about{
  padding:90px 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  overflow:hidden;
    background-color: #d7e0e2;

}

/* LEFT */
.about-text{
  width:50%;
  animation:fadeLeft 1.1s ease forwards;
}

.about-text h2{
  font-size:44px;
  color:#2b2b2b;
  margin-bottom:22px;
}

.about-text p{
  font-size:16px;
  line-height:1.9;
  color:#666;
  margin-bottom:35px;
}

.about-text a{
  display:inline-block;
  background:#b3559f;
  color:#fff;
  padding:14px 34px;
  border-radius:30px;
  text-decoration:none;
  font-size:15px;
  transition:.3s;
}

.about-text a:hover{
  background:#f132e781;
}

/* RIGHT */
.about-img{
  width:50%;
  position:relative;
  animation:fadeRight 1.1s ease forwards;
}

.about-img::before{
  content:'';
  position:absolute;
  top:-25px;
  right:-25px;
  width:460px;
  height:540px;
  background:#b3559f;
  border-radius:18px;
  z-index:1;
}

/* .about-img::after{
  content:'';
  position:absolute;
  bottom:-40px;
  left:-40px;
  width:180px;
  height:180px;
  background:#bfc1c5;
  border-radius:50%;
  z-index:1;
} */

.about-img img{
  width:100%;
  border-radius:20px;
  position:relative;
  z-index:2;
  box-shadow:0 25px 50px rgba(0,0,0,.18);
}

/* ===== ANIMATION ===== */
@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);}
}

/* ===== DEFAULT (Laptop / Desktop 1025px+) ===== */
.about{
  padding:90px 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  overflow:hidden;
  background-color:#d7e0e2;
}

.about-text{
  width:50%;
}

.about-text h2{
  font-size:44px;
}

.about-text p{
  font-size:16px;
  line-height:1.9;
}

.about-img{
  width:50%;
  position:relative;
}

.about-img::before{
  content:'';
  position:absolute;
  top:-25px;
  right:-25px;
  width:460px;
  height:540px;
  background:#b3559f;
  border-radius:18px;
  z-index:1;
}

.about-img img{
  width:100%;
  border-radius:20px;
  position:relative;
  z-index:2;
  box-shadow:0 25px 50px rgba(0,0,0,.18);
}

/* ========================= */
/* ===== TABLET 768-1024 ==== */
/* ========================= */
@media (min-width:768px) and (max-width:1024px){

  .about{
    flex-direction:column;
    padding:70px 6%;
    text-align:center;
  }

  .about-text,
  .about-img{
    width:100%;
    text-align: left;
  }
  

  .about-text h2{
    font-size:38px;
  }

  .about-text p{
    font-size:15px;
    text-align: justify;
  }

  /* .about-img::before{
    width:350px;
    height:420px;
    right:50%;
    transform:translateX(50%);
  } */

}

/* ========================= */
/* ===== MOBILE 360-767 ==== */
/* ========================= */
@media (min-width:360px) and (max-width:767px){

  .about{
    flex-direction:column;
    padding:50px 5%;
    text-align:center;
    gap:35px;
  }

  .about-text,
  .about-img{
    width:100%;
  }

  .about-text h2{
    font-size:28px;
  }

  .about-text p{
    font-size:14px;
    line-height:1.7;
  }

  .about-text a{
    padding:12px 28px;
    font-size:14px;
  }

  .about-img::before{
    width:320px;
    height:260px;
    top:-15px;
    right:50%;
    transform:translateX(50%);
  }

}

/* about section end */

/* reservation start  */
.reservation-section {
  position: relative;
  background-image: url("../asset/images/booking_table.png");
   /* background: url("https://images.pexels.com/photos/17001772/pexels-photo-17001772.jpeg") center / cover no-repeat; */
    color: white;
  text-align: center;
  padding: 80px 20px;
}

.reservation-section .overlay {
background: rgba(0, 0, 0, 0.938);

}

.reservation-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.reservation-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.reservation-section small {
  color: #35caf8;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.reservation-section h1 {
  font-size: 48px;
  margin: 0 0 10px;
}

.reservation-section p {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.input-group {
  position: relative;
  
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border-radius: 10px;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  color: rgb(0, 0, 0);
  font-size: 14px;
}
.input-group.full
{
width: 800px;
}

.input-group.full textarea {
  height: 120px;

  resize: none;
  grid-column: 1 / -1;
}

.input-group .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}


.reservation-button {
  padding: 15px 40px;
  background-color: #35caf8;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  grid-column: 1 / -1;
  transition: 0.3s;
}

.reservation-button:hover {
  background-color: #f132e781;
}
/* ================================================= */
/* ===== MOBILE (360px – 767px) ===== */
/* ================================================= */
@media (min-width:360px) and (max-width:767px){

  .reservation-section{
    padding:60px 15px;
  }

  .reservation-section h1{
    font-size:28px;
  }

  .reservation-section p{
    font-size:14px;
    margin-bottom:25px;
  }

  .reservation-form{
    grid-template-columns:1fr;
  }

  .input-group.full{
    width:100%;
  }

  .reservation-button{
    font-size:16px;
    padding:12px 20px;
  }

}


/* ================================================= */
/* ===== TABLET (768px – 1024px) ===== */
/* ================================================= */
@media (min-width:768px) and (max-width:1024px){

  .reservation-section{
    padding:70px 25px;
  }

  .reservation-section h1{
    font-size:36px;
  }

  .reservation-form{
    grid-template-columns:repeat(2,1fr);
  }

  .input-group.full{
    width:100%;
    grid-column:1 / -1;
  }
  

  .reservation-button{
    font-size:17px;
  }
  .reservation-form{
    grid-template-columns:repeat(2,1fr);
  }

  /* Make Total Guests full width */
  .input-group.guests{
    grid-column:1 / -1;
  }


}


/* ================================================= */
/* ===== LAPTOP & DESKTOP (1025px+) ===== */
/* ================================================= */
@media (min-width:1025px){

  .reservation-section{
    padding:80px 20px;
  }

  .reservation-section h1{
    font-size:48px;
  }

  .reservation-form{
    grid-template-columns:repeat(3,1fr);
  }

  .input-group.full{
    width:100%;
    grid-column:1 / -1;
  }

}
/*reservation end  */

/* team section start */

/* team section end */




/* menus section start */

.menu-container {
    /* max-width: 1000px; */
    margin: 0 auto;
    text-align: center;
    /* margin-top: 30px; */
    /* margin-bottom: 30px; */
    padding: 50px 100px;
    background-color: #d7e0e2;
    
    
    
}

.subtitle {
    font-family: cursive;
    color: #b3559f; /* Gold/Tan color */
    margin-bottom: 5px;
}

h1 {
    font-size: 2.5rem;
    margin-top: 40px;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Item Styling */
.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.menu-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

.item-details {
    flex-grow: 1;
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name {
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* The dotted line between name and price */
.dots {
    flex-grow: 1;
    border-bottom: 1px solid #444;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.price {
    color: #b3559f;
    font-weight: bold;
}

.description {
    font-size: 0.9rem;
    color: #888;
    margin: 5px 0 0 0;
}

/* Button Styling */
.button-container {
    margin-top: 20px;
    margin-bottom: 30px;
}

.view-menu-btn {
    border: 1px solid #ffffff;
    border-radius: 20px;
    border-color:#b3559f;
    background-color: #ffffff;
    color: #b3559f;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    font-weight: 700;        /* Bold */
letter-spacing: 0.5px;  /* Optional – looks cleaner */
}

.view-menu-btn:hover {
    background: #b3559f;
    border-radius: 20px;
    border-color: #b3559f;
    color: #000000;
}
/* =============================== */
/* ===== DEFAULT (Desktop 1025px+) */
/* =============================== */

.menu-container {
    margin: 0 auto;
    text-align: center;
    padding: 70px 120px;
    background-color: #d7e0e2;
}

.subtitle {
    font-family: cursive;
    color: #b3559f;
    margin-bottom: 5px;
}

.menu-container h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

/* Menu Item */
.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.menu-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 15px;
}

.name {
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

.dots {
    flex-grow: 1;
    border-bottom: 1px solid #444;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.price {
    color: #b3559f;
    font-weight: bold;
}

.description {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

/* Button */
.button-container {
    margin-top: 30px;
}

.view-menu-btn {
    border: 1px solid #b3559f;
    border-radius: 20px;
    background-color: #ffffff;
    color: #b3559f;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.view-menu-btn:hover {
    background: #b3559f;
    color: #000;
}


/* =============================== */
/* ===== TABLET (768px-1024px) === */
/* =============================== */

@media (min-width:768px) and (max-width:1024px) {

    .menu-container {
        padding: 60px 60px;
    }

    .menu-container h1 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .menu-item img {
        width: 60px;
        height: 60px;
    }

    .name {
        font-size: 1rem;
    }

    .description {
        font-size: 0.85rem;
    }
}


/* =============================== */
/* ===== MOBILE (360px-767px) ==== */
/* =============================== */

@media (min-width:360px) and (max-width:767px) {

    .menu-container {
        padding: 40px 20px;
    }

    .menu-container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Stack layout */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-item {
        align-items: flex-start;
    }

    .menu-item img {
        width: 55px;
        height: 55px;
        margin-right: 12px;
    }

    .name {
        font-size: 0.95rem;
    }

    .dots {
        display: none; /* Cleaner look on small screens */
    }

    .price {
        font-size: 0.9rem;
    }

    .description {
        font-size: 0.8rem;
    }

    .view-menu-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* menus section end */

/* testimonial section start */

.testimonial-section {
  padding: 80px 20px;
  text-align: center;
  background-color:  #d7e0e2;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.container h2{
    font-size: 30px;
    margin-bottom: 10px;
    color:#b3559f ;
}

.container p{
    font-size: 18px;
    margin-bottom: 20px;
}

/* ===== SLIDER ===== */
.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* transition: transform 0.6s ease; */
}

.testimonial-card {
  min-width: 360px; /* fixed width = smooth flow */
  border: 1px solid #ddd;
  padding: 25px;
  background: #fff;
  
  /* min-width: calc(33.333% - 20px); */
  /* border: 1px solid #ddd;
  padding: 25px;
  text-align: left;
  background: #fff; */
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.stars {
  color: gold;
  margin-bottom: 10px;
  
}




/* ===== DOTS ===== */
/* .dots {
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: #c49a6c;
} */

/* testimonial setion end */

/* gallery section */


/* Section */
.gallery-section{
  padding:80px 20px;
  background-color: #b3559f;
    /* background-image: url("../asset/images/gallery_bg.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;  */
}


/* Heading */
.gallery-heading{
  text-align:center;
  margin-bottom:50px;
}

.gallery-heading span{
  color:#1d1c1c;
  letter-spacing:2px;
  font-size:12px;
  display:inline-block;
  margin-bottom:10px;
  position:relative;
}

.gallery-heading span::before{
  content:"";
  width:30px;
  height:2px;
  background:#9e9d9a;
  position:absolute;
  top:-10px;
  left:50%;
  transform:translateX(-50%);
}

.gallery-heading h2{
  font-size:42px;
  margin:10px 0;
  color: white;
}

.gallery-heading p{
  color:#fffdfd;
  font-size:14px;
}

/* Gallery Grid */
.gallery-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

/* Gallery Item */
.gallery-item{
  position:relative;
  overflow:hidden;
  border:1px solid #d4af37;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:1/1;
  transition:transform 0.5s ease;
}

/* Overlay */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.4s ease;
}

.gallery-overlay h3{
  color:#fff;
  font-size:18px;
  letter-spacing:1px;
  transform:translateY(20px);
  transition:transform 0.4s ease;
}

/* Hover Effects */
.gallery-item:hover img{
  transform:scale(1.15);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

.gallery-item:hover .gallery-overlay h3{
  transform:translateY(0);
}

/* Responsive */
@media(max-width:900px){
  .gallery-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .gallery-container{
    grid-template-columns:1fr;
  }

  .gallery-heading h2{
    font-size:32px;
  }
}

/* =================ABOUT PAGE===================== */
/* ----------Banner Section----------- */
.about-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url("../asset/images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.about-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.about-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 12px;
}

.about-content p {
  font-size: 15px;
  letter-spacing: 1px;
}

.about-content span {
  color: #c49a6c;
}


/* ================================= */
/* ===== TABLET (768px–1024px) ===== */
/* ================================= */

@media (min-width:768px) and (max-width:1024px) {

  .about-banner {
    height: 50vh;
    margin-top: -17px;
  }

  .about-content h1 {
    font-size: 38px;
  }

  .about-content p {
    font-size: 14px;
  }
}


/* ================================= */
/* ===== MOBILE (360px–767px) ====== */
/* ================================= */

@media (min-width:360px) and (max-width:767px) {

  .about-banner {
    height: 40vh;
    margin-top: -17px; /* prevent layout issue on small screens */
  }

  .about-content {
    padding: 0 15px;
  }

  .about-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .about-content p {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
/* about 1st section */

.emp-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
  }

  .emp-employee-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  .emp-employee-image img {
    width: 510px;
    height: 400px;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  /* Image animation on hover */
  .emp-employee-image img:hover {
    transform: scale(1.1);
transition: transform 0.5s ease-in-out;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .emp-employee-info {
    max-width: 600px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .emp-subtitle {
    color: #b3559f;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
   
  }

  .emp-title {
    font-size: 36px;
    margin: 10px 0 20px;
    color: #111827;
  }

  .emp-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: -20px;
    text-align: justify;
  }

  .emp-btn {
    display: inline-block;
    background: #b3559f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .emp-btn:hover {
    background: #b3559f;
    color: black;
  }

  
  .emp-social-icons a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }

  .emp-social-icons a img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  .emp-social-icons a:hover img {
    filter: none;
    transform: scale(1.2);
  }

  /* ================================= */
/* ===== DEFAULT (Desktop 1025px+) == */
/* ================================= */

.emp-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.emp-employee-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.emp-employee-image img {
  width: 510px;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.emp-employee-image img:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.emp-employee-info {
  max-width: 600px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emp-subtitle {
  color: #b3559f;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}

.emp-title {
  font-size: 36px;
  margin: 10px 0 20px;
  color: #111827;
}

.emp-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.emp-btn {
  display: inline-block;
  background: #b3559f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  margin-right: 20px;
  margin-bottom: 20px;
}

.emp-btn:hover {
  color: #000;
}

.emp-social-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.emp-social-icons a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.emp-social-icons a:hover img {
  filter: none;
  transform: scale(1.2);
}


/* ================================= */
/* ===== TABLET (768px–1024px) ===== */
/* ================================= */

@media (min-width:768px) and (max-width:1024px) {

  .emp-container {
    padding: 60px 30px;
  }

  .emp-employee-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .emp-employee-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .emp-employee-info {
    max-width: 100%;
  }

  .emp-title {
    font-size: 30px;
  }

  .emp-description {
    text-align: justify;
  }
}


/* ================================= */
/* ===== MOBILE (360px–767px) ====== */
/* ================================= */

@media (min-width:360px) and (max-width:767px) {

  .emp-container {
    padding: 40px 20px;
  }

  .emp-employee-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .emp-employee-image img {
    width: 100%;
    height: auto;
  }

  .emp-employee-info {
    max-width: 100%;
  }

  .emp-subtitle {
    font-size: 12px;
  }

  .emp-title {
    font-size: 24px;
  }

  .emp-description {
    font-size: 14px;
    text-align: justify;
  }

  .emp-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .emp-social-icons a img {
    width: 20px;
    height: 20px;
  }
}
/* about 2nd section */

.skill-skills-section {
  padding-top: 20px;
padding-bottom: 180px;
padding-left: 0;
padding-right: 0;
  background: #fbf3e9;
  background-image: url("../asset/images/skill_bg.jpg");
  background-size: cover;        /* 👈 key */
  background-position: bottom;   /* 👈 center image */
  background-repeat: no-repeat;  /* 👈 no tiling */
  font-family: 'Poppins', sans-serif;
}

.skill-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.skill-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.skill-section-title span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #b3559f !important;
  position: relative;
  padding-top: 20px;
}

.skill-section-title span::before {
  content: "";
  width: 30px;
  height: 3px;
  background: #b3559f !important;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.skill-section-title h2 {
  font-size: 48px;
  margin: 10px 0;
  font-weight: 700;
  /* color: #ffffff; */
}
.skill-head{
  color: rgb(24, 23, 23) !important;
}

.skill-content{
  color: rgb(24, 23, 23) !important;
}

.skill-section-title p {
 
  font-size: 15px;
}

.skill-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 190px;
}

.skill-skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(24, 23, 23);
}

.skill-progress-bar {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: #b3559f;
  border-radius: 10px;
  animation: load 1.5s ease-in-out;
}

@keyframes load {
  from {
    width: 0;
  }
}

@media (max-width: 992px) {
  .skill-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .skill-skills-grid {
    grid-template-columns: 1fr;
  }
}
/* about 3rd section  */

.fea-features-section {
  padding: 100px 20px;
  background: #fff7f2;
  font-family: 'Poppins', sans-serif;
}

.fea-container {
  max-width: 1200px;
  margin: auto;
}

.fea-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.fea-section-title span {
  color: #b3559f;
  font-weight: 600;
  letter-spacing: 2px;
}

.fea-section-title h2 {
  font-size: 36px;
  margin: 10px 0;
}

.fea-section-title p {
  color: #666;
}

.fea-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Flip Box */
.fea-flip-box {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-box:hover .flip-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #b3559f;
  border-radius: 16px;
  backface-visibility: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
}

.flip-front img {
  width: 70px;
  margin-bottom: 15px;
}

.flip-front h3 {
  font-size: 20px;
  color: #333;
}

.flip-back {
  background: #8d827e;
  color: #fff;
  transform: rotateY(180deg);
}

/* Animation on load */
.flip-box {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .fea-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .fea-features-grid {
    grid-template-columns: 1fr;
  }

  
}
/* about 4th section start */

.team-section {
  padding: 40px 0;
  background: #e0cedc;
  font-family: 'Poppins', sans-serif;
}

.team-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Title */
.team-section-title {
  text-align: center;
  margin-bottom: 70px;
}

.team-section-title span {
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-block;
  padding-top: 18px;
  position: relative;
}

.team-section-title span::before {
  content: "";
  width: 30px;
  height: 3px;
  background: #b3559f;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team-section-title h2 {
  font-size: 44px;
  margin: 10px 0;
}

.team-section-title p {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
}

/* Grid */
.team-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.team-team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

.team-team-card:hover {
  transform: translateY(-15px);
}

/* Image */
.team-team-img {
  overflow: hidden;
}

.team-team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-team-card:hover img {
  transform: scale(1.1);
}

/* Info */
.team-team-info {
  padding: 30px;
  text-align: center;
}

.team-team-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-team-info span {
  font-size: 14px;
  color: #999;
}

/* Social */
.team-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease;
  
}



.team-team-card:hover .social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  background-color:#b3559f ;
  color: white;
  
}

.team-social a:hover {
  background: #b3559f;
  color: #030303;
  border-color: #b3559f;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .team-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-social{
    width: 200px;
  }
}

@media (max-width: 576px) {
  .team-team-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================SERVICE PAGE====================== */
/* ------------service 1st SECTION------------ */
    .ser-services {
      padding: 80px 20px;
      text-align: center;
      background-color: #d7e0e2;
    }

    .ser-services h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #b3559f;
    }

    .ser-services p {
      color: #2b2929;
      margin-bottom: 50px;
    }

    /* GRID */
    .ser-services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1200px;
      margin: auto;
    }

    /* CARD */
    .ser-service-card {
      background: #fff;
      border: 1px solid #eee;
      padding: 35px 25px;
      border-radius: 12px;
      transition: all .4s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    /* ICON */
    .ser-service-card .icon {
      width: 70px;
      height: 70px;
      background: #b3559f;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 20px;
      transition: all .4s ease;
    }

    /* TEXT */
    .ser-service-card h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .ser-service-card p {
      font-size: 14px;
      color: #666;
    }

    /* HOVER ANIMATION */
    .ser-service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .ser-service-card:hover .icon {
      transform: rotate(10deg) scale(1.15);
      background: #b3559f;
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
      .ser-services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:576px) {
      .ser-services-grid {
        grid-template-columns: 1fr;
      }
    }
    /* -----------service 2nd section---------- */

    /* SECTION */
    .offer-section {
      background: url("../asset/images/service banner.jpg") center/cover no-repeat;
      position: relative;
      padding: 90px 20px;
      color: #fff;
    }

    .offer-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .75);
    }

    .offer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* IMAGE */
    .offer-img img {
      width: 100%;
      border-radius: 10px;
      animation: fadeLeft 1s ease;
    }

    /* CONTENT */
    .offer-content h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .offer-content p {
      color: #ddd;
      margin-bottom: 35px;
      max-width: 520px;
    }

    .offer-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }

    /* ITEM */
    .offer-item {
      display: flex;
      gap: 15px;
      align-items: flex-start;
      animation: fadeUp 1s ease;
      transition: .3s;
    }

    .offer-item i {
      font-size: 28px;
      color: #b3559f;
    }

    .offer-item h4 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .offer-item span {
      font-size: 14px;
      color: #ccc;
    }

    /* HOVER */
    .offer-item:hover {
      transform: translateX(6px);
    }

    .offer-item:hover i {
      color: #b3559f;
    }

    /* ANIMATIONS */
    @keyframes fadeLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
      .offer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .offer-list {
        grid-template-columns: 1fr;
      }

      .offer-item {
        justify-content: center;
      }
    }
      /* --------service 3rd section------------ */

    /* SECTION */
    .pri-pricing {
      padding: 80px 20px;
      text-align: center;
      background-color: #d7e0e2;
    }

    .pri-pricing h2 {
      font-size: 34px;
      margin-bottom: 6px;
      color: #b3559f;
    }

    .pri-pricing p {
      color: #252424;
      margin-bottom: 50px;
    }

    /* GRID */
    .pri-pricing-grid {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    /* CARD */
    .pri-price-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 6px;
      overflow: hidden;
      transition: .4s ease;
      position: relative;
    }

    .pri-price-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 40px rgba(0, 0, 0, .15);
    }

    /* PRICE */
    .pri-price-top {
      padding: 30px 20px;
    }

    .pri-price-top h3 {
      font-size: 36px;
    }

    .pri-price-top span {
      font-size: 13px;
      color: #777;
    }

    /* TITLE BAR */
    .pri-price-title {
      background: #b3559f;
      color: #fff;
      padding: 14px;
      font-weight: 600;
    }

    /* LIST */
    .pri-price-features {
      list-style: none;
      padding: 30px 25px;
    }

    .pri-price-features li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }

    .pri-price-features li:last-child {
      border-bottom: none;
    }

    /* BUTTON */
    .pri-price-btn {
      padding-bottom: 30px;
    }

    .pri-price-btn a {
      display: inline-block;
      padding: 10px 28px;
      background: #b3559f;
      color: #fff;
      border-radius: 4px;
      font-size: 14px;
      transition: .3s;
    }

    .pri-price-btn a:hover {
      background: #111;
    }

    /* HIGHLIGHT */
    .pri-price-card.active {
      transform: translateY(-10px);
      box-shadow: 0 20px 35px rgba(0, 0, 0, .12);
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
      .pri-pricing-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:600px) {
      .pri-pricing-grid {
        grid-template-columns: 1fr;
      }
    }
    /* ----------service 4th section ------------ */
    /* Container Styling */
    .part-partners-section {
      padding: 60px 20px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      background-color: #fff;
    }

    .part-partners-section h2 {
      font-size: 2rem;
      color: #b3559f;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .part-subtitle {
      color: #777;
      margin-bottom: 40px;
      font-size: 1.1rem;
    }

    /* Flex Grid */
    .part-logo-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      /* Space between cards */
      max-width: 1200px;
      margin: 0 auto;
    }

    /* The Logo Card */
    .part-logo-card {
      width: 160px;
      height: 160px;
      border: 1px solid #eee;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      transition: all 0.3s ease;
      /* Smooth transition */
      cursor: pointer;
      background: white;
    }

    .part-logo-card img {
      max-width: 100%;
      height: auto;
      filter: grayscale(20%);
      /* Optional: slight desaturation until hover */
    }

    /* Hover Animation */
    .part-logo-card:hover {
      transform: translateY(-8px);
      /* Lifts the card up */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      /* Adds a soft shadow */
      border-color: #ddd;
    }

    .part-logo-card:hover img {
      filter: grayscale(0%);
    }

    /* Responsive adjustments for smaller screens */
    @media (max-width: 600px) {
      .part-logo-card {
        width: 40%;
        /* 2 logos per row on mobile */
        height: 140px;
      }
    }
    /* ==================FAQ PAGE===================== */
        /* faq 1st section  */
    /* General Styles */
    

    .faq-faq-section{
      background-color: #b3559f1e;
      margin-top: -50px;
      padding: 50px 0px;

    }

    .faq-container {
      display: flex;
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      gap: 20px;
     
    }

    /* FAQ Column */
    .faq-faq-column {
      flex: 0 0 70%;
    }

    .faq-faq-column h2 {
      text-align: left;
      margin-bottom: 30px;
      font-size: 2em;
      color: #222;
    }

    /* FAQ Styles */
    .faq-faq-item {
      border: 1px solid #ddd;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .faq-faq-question {
      width: 100%;
      padding: 15px 20px;
      text-align: left;
      font-size: 1em;
      font-weight: 600;
      border: none;
      background-color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      outline: none;
      transition: background-color 0.3s;
    }

    .faq-faq-question:hover {
      background-color: #f0f0f0;
    }

    .faq-faq-question::after {
      content: '\25BC'; /* Down arrow */
      font-size: 0.8em;
      transition: transform 0.3s;
    }

    .faq-faq-question.active::after {
      transform: rotate(180deg);
    }

    .faq-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 20px;
      background-color: #fff;
    }

    .faq-faq-answer p {
      padding: 15px 0;
      margin: 0;
      color: #555;
      line-height: 1.6;
    }

    /* Image Column */
    .faq-image-column {
      flex: 0 0 30%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .faq-image-column img {
      width: 100%;
      max-width: 300px;
      border-radius: 10px;
      animation: float 3s ease-in-out infinite;
    }

    /* Simple floating animation */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .faq-container {
        flex-direction: column;
      }
      .faq-faq-column, .faq-image-column {
        flex: 1 1 100%;
      }
      
      .faq-image-column {
        margin-top: 30px;
      }
    }
  /* faq 2nd section */
 .cn-contact-section {
      padding: 80px 20px;
      text-align: center;
      background-color: #b3559f;
    }

    .cn-contact-section h6 {
      color: #ffffff;
      font-size: 0.9em;
      letter-spacing: 2px;
      margin: 0;
    }

    .cn-contact-section h2 {
      font-size: 2.5em;
      /* margin: 10px 0 10px; */
      text-align: center;
      color: #0c1a2b;
    }

    .cn-contact-section p {
      font-size: 1em;
      color: #ffffff;
      margin-bottom: 40px;
    }

    .cn-contact-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
      gap: 20px;
    }

    .cn-contact-form input,
    .cn-contact-form textarea {
      flex: 1 1 45%;
      padding: 15px 20px;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 1em;
      outline: none;
    }

    .cn-contact-form textarea {
      flex: 1 1 100%;
      resize: vertical;
      min-height: 120px;
    }

    .cn-contact-form button {
      background-color: #ffffff;
      color:  #b3559f;
      padding: 15px 30px;
      border: 30px;
      
      border-radius: 6px;
      font-size: 1em;
      cursor: pointer;
      margin-top: 10px;
      transition: background 0.3s;
    }

    .cn-contact-form button:hover {
      background: #ffffff;
  border: 2px solid #b3559f; /* orange border */
  border-radius: 6px;
  color: #000000; /* orange text */
    }

    /* Responsive */
    @media (max-width: 700px) {
      .cn-contact-form input {
        flex: 1 1 100%;
      }
    }
/* faq 3rd section */

      /* Newsletter Section */
    .newsletter-section {
      max-width: 1200px;
      margin: 80px auto;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
background-image: url("../asset/images/subcriber_img.jpg");  
      background-size: cover;
      background-position: center;
      /* background-color: #b3559f1e !important; */
    }

    /* Dark Overlay */
    .newsletter-overlay {
      background: rgba(0, 0, 0, 0.6);
      padding: 80px 20px;
      text-align: center;
      color: #fff;
    }

    .newsletter-overlay span {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 2px;
      color: #fcf9fb;
      margin-bottom: 10px;
      position: relative;
    }

    .newsletter-overlay span::before {
      content: "";
      width: 30px;
      height: 2px;
      background: #b3559f;
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .newsletter-overlay h2 {
      font-size: 42px;
      margin: 15px 0;
      font-weight: 700;
      text-align: center;
      color: #ffffff;
    }

    .newsletter-overlay p {
      color: #ddd;
      max-width: 500px;
      margin: 0 auto 30px;
      font-size: 15px;
    }

    /* Form */
    .newsletter-form {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .newsletter-form input {
      padding: 15px 20px;
      width: 280px;
      border-radius: 6px;
      border: none;
      outline: none;
      font-size: 14px;
    }

    .newsletter-form button {
      padding: 15px 30px;
      background: #b3559f;
      border: none;
      border-radius: 6px;
      color: #fcfbfb;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .newsletter-form button:hover {
      background: #b3559f;
      color: #000000;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .newsletter-overlay h2 {
        font-size: 32px;
      }

      .newsletter-form {
        flex-direction: column;
        align-items: center;
      }

      .newsletter-form input {
        width: 100%;
        max-width: 350px;
      }
    }
    /* ================MENU PAGE==================== */
    /* =============Menu Section Start============== */
    .mi-menu-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      text-align: center;
    }

    .mi-menu-section h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .mi-menu-section p {
      color: #777;
      margin-bottom: 40px;
    }

    .mi-filter-btns {
      margin-bottom: 30px;
    }

    .mi-filter-btns button {
      background: #fff;
      border: 1px solid #b3559f;
      color: #b3559f;
      padding: 10px 20px;
      margin: 0 5px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .mi-filter-btns button.active,
    .mi-filter-btns button:hover {
      background: #b3559f;
      color: #fff;
    }

    .mi-menu-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .mi-menu-item {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      width: 250px;
      overflow: hidden;
      text-align: left;
      transition: 0.3s;
    }

    .mi-menu-item img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .mi-menu-content {
      padding: 20px;
    }

    .mi-menu-content h4 {
      margin: 0 0 10px 0;
      font-size: 20px;
    }

    .mi-menu-content p {
      font-size: 14px;
      color: #777;
      margin-bottom: 15px;
    }

    .mi-menu-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mi-menu-footer span {
      font-weight: bold;
      color: #b3559f;
    }

    .mi-menu-footer button {
      background: #b3559f;
      border: none;
      color: #fff;
      padding: 5px 10px;
      border-radius: 5px;
      cursor: pointer;
    }
    .mi-menu-item button:hover {
  background-color: #b3559f; /* Changes color on hover */
  color: rgb(5, 5, 5);
}


.mi-menu-item:hover img {
  transform: scale(1.1); /* Zooms the image in slightly */
}

/* ================================= */
/* ===== DESKTOP (1025px+) ========= */
/* ================================= */

.mi-menu-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.mi-menu-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.mi-menu-section p {
  color: #777;
  margin-bottom: 50px;
}

/* FILTER BUTTONS */
.mi-filter-btns {
  margin-bottom: 40px;
}

.mi-filter-btns button {
  background: #fff;
  border: 1px solid #b3559f;
  color: #b3559f;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.mi-filter-btns button.active,
.mi-filter-btns button:hover {
  background: #b3559f;
  color: #fff;
}

/* MENU ITEMS */
.mi-menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* IMPORTANT FIX: remove fixed width */
.mi-menu-item {
  flex: 1 1 22%;   /* 4 per row */
  max-width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
}

.mi-menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mi-menu-item:hover img {
  transform: scale(1.08);
}

.mi-menu-content {
  padding: 20px;
}

.mi-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mi-menu-footer span {
  font-weight: bold;
  color: #b3559f;
}

.mi-order-btn{
  display:inline-block;
  padding:5px 10px;
  background:#b3559f;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  transition:0.3s;
}

.mi-order-btn:hover{
  background:#b3559f;
  transform:translateY(-2px);
}



/* ================================= */
/* ===== TABLET (768px–1024px) ===== */
/* ================================= */

@media (min-width:768px) and (max-width:1024px) {

  .mi-menu-item {
    flex: 1 1 45%;   /* 2 per row */
    max-width: 100%;
  }

  .mi-menu-section h2 {
    font-size: 30px;
  }

  .mi-menu-section {
    padding: 70px 30px;
  }
}


/* ================================= */
/* ===== MOBILE (360px–767px) ====== */
/* ================================= */

@media (min-width:360px) and (max-width:767px) {

  .mi-menu-item {
    flex: 1 1 100%;   /* 1 per row */
    max-width: 100%;
  }

  .mi-menu-section {
    padding: 60px 20px;
  }

  .mi-menu-section h2 {
    font-size: 26px;
  }

  .mi-menu-section p {
    font-size: 14px;
  }

  .mi-filter-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .mi-filter-btns button {
    padding: 8px 14px;
    font-size: 13px;
  }

  .mi-menu-item img {
    height: 160px;
  }
}
    /* 2nd section */

    
.off-offer-hero {
min-height: 80vh;
display: flex;
align-items: center;
background-image: url("../asset/images/offer_bg.jpeg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.off-offer-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.off-offer-content {
  max-width: 500px;
  animation: fadeLeft 1s ease forwards;
}

.off-tag {
  color: #b3559f;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 15px;
  display: inline-block;
}

.off-offer-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.off-offer-content h1 span {
  color: #b3559f;
}

.off-offer-content p {
  color: #aaa;
  margin-bottom: 30px;
}

/* BUTTON */
.off-btn.primary {
  background: #b3559f;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.off-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,183,3,0.3);
}

/* RIGHT IMAGE */
.off-offer-image {
  position: relative;
  overflow: visible; /* ✅ FIX: allow badge to show */
  animation: floatImg 3s ease-in-out infinite;
}

.off-offer-image img {
  width: 520px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* OFFER BADGE */
.off-discount {
  position: absolute;
  top: -25px;      /* ✅ moved inside view */
  right: -25px;    /* ✅ moved inside view */
  background: #b3559f;
  color: #ffffff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;      /* ✅ ensure on top */
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
/* ============================= */
/* 📱 MOBILE: 360px – 767px */
/* ============================= */
@media (min-width:360px) and (max-width:767px) {

  .off-offer-hero {
    min-height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .off-offer-container {
    flex-direction: column;
    padding: 20px;
    gap: 40px;
  }

  .off-offer-content {
    max-width: 100%;
  }

  .off-offer-content h1 {
    font-size: 30px;
  }

  .off-offer-content p {
    font-size: 14px;
  }

  .off-btn.primary {
    padding: 12px 24px;
  }

  .off-offer-image img {
    width: 100%;
    max-width: 320px;
  }

  .off-discount {
    width: 55px;
    height: 55px;
    font-size: 14px;
    top: -15px;
    right: -15px;
  }
}


/* ============================= */
/* 📲 TABLET: 768px – 1024px */
/* ============================= */
@media (min-width:768px) and (max-width:1024px) {

  .off-offer-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .off-offer-content h1 {
    font-size: 40px;
  }

  .off-offer-image img {
    width: 420px;
  }

  .off-discount {
    width: 65px;
    height: 65px;
  }
}


/* ============================= */
/* 💻 LAPTOP / DESKTOP: 1025px+ */
/* ============================= */
@media (min-width:1025px) {

  .off-offer-container {
    flex-direction: row;
    text-align: left;
  }

  .off-offer-content h1 {
    font-size: 52px;
  }

  .off-offer-image img {
    width: 520px;
  }

}
/* -----------------order section------------------- */




.bk-cake-booking {
  background-color: #b3559f1e;
  padding: 70px 20px;
/* background-image: url("../asset/images/oder_bg.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;  padding: 60px 15px; */
}

.bk-booking-box {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.bk-heading h2{
  text-align: center;
  margin-bottom: 20px;
  color: #b3559f;
}

/* Steps */
.bk-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bk-step {
  text-align: center;
  flex: 1;
}

.bk-step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3559f;
  color: #b3559f;
  font-weight: 600;
}

.bk-step.active span {
  background: #b3559f;
  color: #fff;
  border-color: #b3559f;
}

.bk-step p {
  font-size: 14px;
  margin-top: 8px;
  color: #444;
}

.bk-line {
  height: 1px;
  background: #ddd;
  flex: 1;
}

/* Form */
.bk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bk-form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.bk-form-group input,
.bk-form-group select,
.bk-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  outline: none;
}

.bk-form-group textarea {
  min-height: 120px;
  resize: none;
}

.bk-form-group.full {
  margin-top: 20px;
}

.bk-next-btn {
  width: 100%;
  margin-top: 30px;
  padding: 14px;
  background: #b3559f;
  color: #fff;
  border: none;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.bk-next-btn:hover {
  background: #b3559f;
}

/* ===================================== */
/* 📱 MOBILE: 360px – 767px */
/* ===================================== */
@media (min-width:360px) and (max-width:767px) {

  .bk-cake-booking {
    padding: 50px 15px;
  }

  .bk-booking-box {
    padding: 25px 20px;
  }

  .bk-heading h2 {
    font-size: 22px;
  }

  /* Steps stacked */
  .bk-steps {
    flex-direction: column;
    gap: 20px;
  }

  .bk-line {
    display: none;
  }

  .bk-step p {
    font-size: 13px;
  }

  /* Form single column */
  .bk-form-grid {
    grid-template-columns: 1fr;
  }

  .bk-form-group.full {
    margin-top: 0;
  }

  .bk-next-btn {
    padding: 12px;
    font-size: 14px;
  }
}


/* ===================================== */
/* 📲 TABLET: 768px – 1024px */
/* ===================================== */
@media (min-width:768px) and (max-width:1024px) {

  .bk-booking-box {
    padding: 35px;
  }

  .bk-heading h2 {
    font-size: 26px;
  }

  /* Keep steps in row but tighter */
  .bk-steps {
    gap: 15px;
  }

  .bk-step p {
    font-size: 13px;
  }

  /* 2 column form stays */
  .bk-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .bk-next-btn {
    font-size: 14px;
  }
}


/* ===================================== */
/* 💻 LAPTOP / DESKTOP: 1025px+ */
/* ===================================== */
@media (min-width:1025px) {

  .bk-booking-box {
    padding: 40px;
  }

  .bk-heading h2 {
    font-size: 30px;
  }

  .bk-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
/* ===============MENU ORDER INNER PAGE================== */
/* ================= PRODUCT ================= */
.pro-product-container{
  max-width:1100px;
  margin:40px auto;
  background:#fff;
  border-radius:12px;
  padding:30px;
}

.pro-product-top{
  display:flex;
  gap:40px;
}
.pro-product-image img{
  max-width:420px;
  width:100%;
  border-radius:12px;
}
.pro-product-info h2{font-size:28px;}
.pro-product-info p{color:#666;font-size:14px;}
.pro-price{font-size:26px;font-weight:700;margin:10px 0;}
.pro-rating{color:#f9a826;}

.pro-tags span{
  background:#eee;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  margin-right:6px;
}

.pro-option-group{margin-top:15px;}
.pro-options span{
  border:1px solid #ddd;
  padding:8px 14px;
  border-radius:6px;
  cursor:pointer;
}
.pro-options span.active{
  background:#5ccac3;
  color:#fff;
  border-color:#5ccac3;
}

.pro-options{
    margin-top: 20px;
}

.pro-quantity{
    display:flex;
    gap:10px;
    margin-top: 20px;
}
.pro-quantity button{
  width:30px;height:30px;border:none;background:#eee;
}
.pro-quantity input{
  width:40px;text-align:center;border:1px solid #ddd;
}

.pro-add-cart{
  margin-top:20px;
  padding:12px 26px;
  background:#5ccac3;
  border:none;
  color:#fff;
  border-radius:6px;
  cursor:pointer;
}

/* ================= TABS ================= */
.pro-tabs{margin-top:40px;}
.pro-tab-buttons{
  display:flex;
  border-bottom:2px solid #eee;
}
.pro-tab-buttons button{
  padding:12px 24px;
  background:none;
  border:none;
  cursor:pointer;
  font-weight:600;
}
.pro-tab-buttons button.active{
  color:#5ccac3;
  border-bottom:3px solid #5ccac3;
}
.pro-tab-content{display:none;padding-top:20px;}
.pro-tab-content.active{display:block;}

/* ================= REVIEW LIST ================= */
.pro-review-item{
  display:flex;
  gap:15px;
  padding:15px;
  border:1px solid #eee;
  border-radius:6px;
  margin-bottom:15px;
}
.pro-review-item img{
  width:50px;
  height:50px;
  border-radius:50%;
}
.pro-review-head{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}
.pro-review-head strong{font-size:14px;}
.pro-review-head span{font-size:12px;color:#999;}
.pro-stars{color:#f9a826;font-size:13px;}
.pro-review-text{font-size:14px;color:#555;margin-top:5px;}

/* ================= ADD REVIEW ================= */
.pro-add-review{
  margin-top:40px;
}
.pro-add-review h3{margin-bottom:5px;}
.pro-add-review small{color:#777;}

.pro-review-form{
  max-width:500px;
  margin-top:20px;
}
.pro-review-form label{
  display:block;
  margin-top:15px;
  font-size:13px;
}
.pro-review-form input,
.pro-review-form textarea{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  border-radius:4px;
  margin-top:5px;
}
.pro-review-form textarea{height:120px;}
.pro-review-form button{
  margin-top:15px;
  background:#5ccac3;
  border:none;
  color:#fff;
  padding:10px 24px;
  border-radius:4px;
  cursor:pointer;
}

/* ================= RESPONSIVE ================= */

/* ---------- Mobile: 360px – 767px ---------- */
@media (min-width:360px) and (max-width:767px){

  .pro-product-container{
    margin:20px 15px;
    padding:20px;
  }

  .pro-product-top{
    flex-direction:column;
    gap:25px;
  }

  .pro-product-image img{
    max-width:100%;
  }

  .pro-product-info h2{
    font-size:22px;
  }

  .pro-product-info p{
    font-size:13px;
  }

  .pro-price{
    font-size:22px;
  }

  .pro-options span{
    padding:6px 10px;
    font-size:12px;
  }

  .pro-quantity{
    gap:8px;
  }

  .pro-quantity button{
    width:28px;
    height:28px;
  }

  .pro-add-cart{
    width:100%;
    padding:12px;
  }

  /* Tabs */
  .pro-tab-buttons{
    flex-direction:column;
    gap:10px;
  }

  .pro-tab-buttons button{
    width:100%;
    text-align:left;
    padding:10px;
  }

  /* Reviews */
  .pro-review-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .pro-review-head{
    flex-direction:column;
    gap:5px;
  }

  .pro-review-form{
    max-width:100%;
  }
}


/* ---------- Tablet: 768px – 1024px ---------- */
@media (min-width:768px) and (max-width:1024px){

  .pro-product-container{
    margin:30px 25px;
    padding:25px;
  }

  .pro-product-top{
    gap:30px;
  }

  .pro-product-image img{
    max-width:350px;
  }

  .pro-product-info h2{
    font-size:24px;
  }

  .pro-price{
    font-size:24px;
  }

  .pro-tab-buttons button{
    padding:10px 18px;
  }

  .pro-review-form{
    max-width:100%;
  }
}


/* ---------- Laptop/Desktop: 1025px and above ---------- */
@media (min-width:1025px){

  .pro-product-container{
    max-width:1100px;
    margin:40px auto;
    padding:30px;
  }

  .pro-product-top{
    flex-direction:row;
    gap:40px;
  }

  .pro-product-image img{
    max-width:420px;
  }

  .pro-product-info h2{
    font-size:28px;
  }

  .pro-price{
    font-size:26px;
  }

}

/* ==============CONTACT PAGE=============== */
 .cf-contact-section {
      padding: 80px 20px;
      background-color: #b3559f1e;
    }

    .cf-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cf-contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
    }

    /* Contact Form */
    .cf-contact-form {
      flex: 1 1 450px;
      background: #fff;
      padding: 40px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-radius: 10px;
    }

    .cf-contact-form h2 {
      margin-bottom: 10px;
      font-size: 28px;
      color: #b3559f;
    }

    .cf-contact-form .note {
      font-size: 12px;
      color: #f5821f;
      margin-bottom: 20px;
    }

    .cf-contact-form input,
    .cf-contact-form textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
      resize: none;
      
    }

    .cf-contact-form button {
      background: #b3559f;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .cf-contact-form button:hover {
      background: #b3559f;
    }

    /* Contact Info */
    .cf-contact-info {
      flex: 1 1 450px;
      padding: 40px;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-radius: 10px;
    }

    .cf-contact-info h2 {
      font-size: 28px;
      margin-bottom: 15px;
      color: #b3559f;
    }

    .cf-contact-info p {
      margin-bottom: 20px;
      color: #555;
      line-height: 1.6;
    }

    .cf-contact-info h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }

    .cf-contact-info ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .cf-contact-info ul li {
      display: flex;
      justify-content: space-between;
      padding: 5px 0;
      border-bottom: 1px dotted #ccc;
    }

    .cf-contact-info .address p {
      margin: 5px 0;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .cf-contact-wrapper {
        flex-direction: column;
      }
    }

    /* google map section */

    .map-section {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.map-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #b3559f;
}

.map-section p {
  color: #555;
  margin-bottom: 30px;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==============LOGIN PAGE================== */

.log-section{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  overflow:hidden;
  background:linear-gradient(-45deg,#f3e7f9,#e3eeff,#f9e7f3,#e0f7fa);
  background-size:400% 400%;
  animation:log-gradient 12s ease infinite;
}

@keyframes log-gradient{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* =====================================================
   BUBBLES
===================================================== */

.log-bubbles{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  overflow:hidden;
  z-index:0;
}

.log-bubbles span{
  position:absolute;
  bottom:-120px;
  border-radius:50%;
  background:rgba(255,255,255,0.25);
  animation:log-bubble 18s linear infinite;
}

@keyframes log-bubble{
  0%{
    transform:translateY(0) scale(1);
    opacity:0.5;
  }
  100%{
    transform:translateY(-120vh) scale(1.4);
    opacity:0;
  }
}

/* Different bubbles */
.log-bubbles span:nth-child(1){ left:8%; width:25px; height:25px; animation-duration:12s;}
.log-bubbles span:nth-child(2){ left:20%; width:40px; height:40px; animation-duration:18s;}
.log-bubbles span:nth-child(3){ left:35%; width:20px; height:20px; animation-duration:14s;}
.log-bubbles span:nth-child(4){ left:55%; width:50px; height:50px; animation-duration:22s;}
.log-bubbles span:nth-child(5){ left:75%; width:30px; height:30px; animation-duration:16s;}
.log-bubbles span:nth-child(6){ left:90%; width:22px; height:22px; animation-duration:13s;}

/* =====================================================
   CARD
===================================================== */

.log-card{
  position:relative;
  z-index:2;
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(8px);
  border-radius:18px;
  padding:50px 45px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
  transition:0.3s;
}

/* =====================================================
   LOGO
===================================================== */

.log-logo{
  text-align:center;
  margin-bottom:20px;
}

.log-logo a{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.log-logo img{
  width:42px;
}

.log-logo span{
  font-size:22px;
  font-weight:700;
  color:#b3559f;
}

/* =====================================================
   TEXT
===================================================== */

.log-welcome{
  text-align:center;
  font-size:28px;
  font-weight:800;
  margin-bottom:10px;
}

.log-welcome span{
  color:#b3559f;
}

.log-title{
  text-align:center;
  font-size:26px;
  font-weight:700;
  margin-bottom:8px;
}

.log-subtitle{
  text-align:center;
  font-size:14px;
  color:#6b7280;
  margin-bottom:30px;
}

/* =====================================================
   FORM
===================================================== */

.log-group{
  margin-bottom:18px;
}

.log-group label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.log-input{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.log-input:focus{
  border-color:#b3559f;
  box-shadow:0 0 0 3px rgba(179,85,159,0.15);
}

/* ROW */
.log-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  margin-bottom:20px;
  flex-wrap:wrap;
  gap:10px;
}

.log-row a{
  text-decoration:none;
  color:#b3559f;
  font-weight:600;
}

/* BUTTON */
.log-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:#b3559f;
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.log-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(179,85,159,0.4);
}

/* DIVIDER */
.log-divider{
  display:flex;
  align-items:center;
  margin:25px 0;
  font-size:14px;
  color:#9ca3af;
}

.log-divider::before,
.log-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#e5e7eb;
}

.log-divider span{
  padding:0 10px;
}

/* SOCIAL */
.log-social{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}

.log-social-btn{
  flex:1;
  padding:10px;
  border-radius:8px;
  border:1px solid #e5e7eb;
  text-align:center;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.log-social-btn:hover{
  background:#f9fafb;
}

/* SIGNUP */
.log-signup{
  text-align:center;
  font-size:14px;
}

.log-signup a{
  text-decoration:none;
  color:#b3559f;
  font-weight:600;
}

/* =====================================================
   TABLET 768–1024
===================================================== */
@media (max-width:1024px){
  .log-card{
    padding:40px 35px;
  }
}

/* =====================================================
   MOBILE ≤767
===================================================== */
@media (max-width:767px){

  .log-card{
    padding:30px 22px;
  }

  .log-welcome{
    font-size:24px;
  }

  .log-title{
    font-size:22px;
  }

  .log-social{
    flex-direction:column;
  }
}

/* =====================================================
   SMALL MOBILE ≤360
===================================================== */
@media (max-width:360px){

  .log-card{
    padding:25px 18px;
  }

  .log-welcome{
    font-size:20px;
  }

  .log-title{
    font-size:20px;
  }

  .log-input{
    font-size:13px;
  }
}

/* =================SIGN UP PAGE================== */

.sign-section{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  overflow:hidden;
  background:linear-gradient(-45deg,#fce7f3,#e0f2fe,#ede9fe,#f0fdf4);
  background-size:400% 400%;
  animation:sign-gradient 12s ease infinite;
}

@keyframes sign-gradient{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* =====================================================
   BUBBLE ANIMATION
===================================================== */

.sign-bubbles{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  overflow:hidden;
  z-index:0;
}

.sign-bubbles span{
  position:absolute;
  bottom:-120px;
  border-radius:50%;
  background:rgba(255,255,255,0.3);
  animation:sign-bubble 18s linear infinite;
}

@keyframes sign-bubble{
  0%{
    transform:translateY(0) scale(1);
    opacity:0.6;
  }
  100%{
    transform:translateY(-120vh) scale(1.4);
    opacity:0;
  }
}

/* Bubble positions */
.sign-bubbles span:nth-child(1){ left:10%; width:25px; height:25px; animation-duration:14s;}
.sign-bubbles span:nth-child(2){ left:25%; width:40px; height:40px; animation-duration:20s;}
.sign-bubbles span:nth-child(3){ left:45%; width:20px; height:20px; animation-duration:16s;}
.sign-bubbles span:nth-child(4){ left:65%; width:50px; height:50px; animation-duration:22s;}
.sign-bubbles span:nth-child(5){ left:80%; width:30px; height:30px; animation-duration:18s;}

/* =====================================================
   CARD
===================================================== */

.sign-card{
  position:relative;
  z-index:2;
  width:100%;
  max-width:550px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(8px);
  border-radius:20px;
  padding:50px 45px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* =====================================================
   LOGO
===================================================== */

.sign-logo{
  text-align:center;
  margin-bottom:20px;
}

.sign-logo a{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.sign-logo img{
  width:42px;
}

.sign-logo span{
  font-size:22px;
  font-weight:700;
  color:#b3559f;
}

/* =====================================================
   TEXT
===================================================== */

.sign-title{
  text-align:center;
  font-size:28px;
  font-weight:800;
  margin-bottom:10px;
}

.sign-subtitle{
  text-align:center;
  font-size:14px;
  color:#6b7280;
  margin-bottom:30px;
}

/* =====================================================
   FORM
===================================================== */

.sign-group{
  margin-bottom:18px;
}

.sign-group label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.sign-input{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.sign-input:focus{
  border-color:#b3559f;
  box-shadow:0 0 0 3px rgba(179,85,159,0.15);
}

/* Button */
.sign-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:#b3559f;
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  margin-top:10px;
}

.sign-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(179,85,159,0.4);
}

/* Footer */
.sign-footer{
  text-align:center;
  font-size:14px;
  margin-top:20px;
}

.sign-footer a{
  text-decoration:none;
  color:#b3559f;
  font-weight:600;
}

/* =====================================================
   TABLET 768–1024
===================================================== */

@media (max-width:1024px){
  .sign-card{
    padding:40px 35px;
  }
}

/* =====================================================
   MOBILE ≤767
===================================================== */

@media (max-width:767px){

  .sign-card{
    padding:30px 22px;
  }

  .sign-title{
    font-size:24px;
  }
}

/* =====================================================
   SMALL MOBILE ≤360
===================================================== */

@media (max-width:360px){

  .sign-card{
    padding:25px 18px;
  }

  .sign-title{
    font-size:20px;
  }

  .sign-input{
    font-size:13px;
  }
}

/* ==============ADMIN PAGE================= */
  /* ================= SIDEBAR ================= */
        .admin-sidebar {
            width: 240px;
            background: #91e5ff;
            padding: 20px;
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            overflow-y: auto;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
        }

        /* BRAND LOGO & NAME LINK */
        .admin-brand-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 35px;
            transition: opacity 0.3s;
        }

        .admin-brand-link:hover { opacity: 0.8; }

        .admin-logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .admin-brand-name {
            color: #b3559f;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .admin-sidebar ul { list-style: none; }
        .admin-sidebar li {
            padding: 12px 14px;
            border-radius: 10px;
            margin-bottom: 6px;
            cursor: pointer;
            color: #000;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .admin-sidebar li:hover {
            background: #b3559f;
            color: #b3559f !important;
            transform: translateX(8px);
        }

        .admin-sidebar li.admin-active {
            background: #b3559f;
            color: #fff;
        }

        /* ================= MAIN CONTENT ================= */
        .admin-main {
            margin-left: 240px;
            min-height: 100vh;
            padding: 25px;
            transition: margin-left 0.4s ease;
            background-color: #b3559f;
        }

        .admin-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .admin-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
            background: #b3559f !important;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
        }

        .admin-topbar-right {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #91e5ff;
            border-radius: 20px;
        }

        .admin-profile {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #000;
        }

        .admin-profile img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            object-fit: cover;
        }
        

        .admin-profile-dropdown {
            position: absolute;
            right: 0;
            top: 45px;
            width: 180px;
            background: #0b0b0b;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            display: none;
            z-index: 2000;
        }

        .admin-profile-dropdown.admin-show { display: block; }

        .admin-profile-dropdown a {
            display: block;
            padding: 12px 14px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }

        .admin-profile-dropdown a:hover { background: rgba(124, 58, 237, 0.15); }

        /* ================= DASHBOARD COMPONENTS ================= */
        .admin-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .admin-card {
            background: #ffffff81;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px;
            transition: 0.3s ease;
        }

        .admin-card:hover {
            transform: translateY(-5px);
            border-color: #b3559f;
        }

        .admin-card h4 { color: #121213; font-size: 14px; margin-bottom: 8px; }
        .admin-card .admin-value { font-size: 26px; font-weight: 700; }

        .admin-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .admin-chart-card {
            background: #ffffff81;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px;
            position: relative;
            min-height: 350px;
        }

        .admin-chart-container {
            position: relative;
            height: 300px;
            width: 100%;
        }

        .admin-table-card {
            background: #ffffff81;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px;
        }

        .admin-table-responsive { overflow-x: auto; }
        .admin-table-responsive td{
            color: #000;
        }

        table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 500px; }
        th, td { padding: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); text-align: left; }
        th { color: #000000; }

        .admin-badge { padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
        .admin-delivered { background: rgba(34, 197, 94, 0.15); color: #009933; }
        .admin-processing { background: rgba(250, 204, 21, 0.15); color: #b18f07; }

        .admin-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
        }
        /* --- New Hover Animations --- */

/* Sidebar Item: Slide & Color Shift */
.admin-sidebar li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-sidebar li:hover {
    background: rgba(124, 58, 237, 0.1); /* Light purple tint */
    color: #b3559f;
    transform: translateX(8px);
    padding-left: 20px; /* Slight push to the right */
}

/* Logo & Brand Hover */
.admin-brand-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}
.admin-brand-link {
    transition: transform 0.3s ease;
}

/* Stats Cards: 3D Lift & Purple Glow */
.admin-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.admin-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.4);
}

/* Glass Shimmer Effect on Card Hover */
.admin-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.6s;
}
.admin-card:hover::after {
    left: 100%;
}

/* Topbar Profile Hover */
.admin-profile {
    padding: 5px 10px;
    border-radius: 30px;
    transition: background 0.3s ease;
}
.admin-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}
.admin-profile img {
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}
.admin-profile:hover img {
    transform: rotate(10deg) scale(1.1);
    border-color: #7c3aed;
}

/* Table Row Highlight */
tbody tr {
    transition: background 0.2s ease;
}
tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Chart Card Hover */
.admin-chart-card {
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.admin-chart-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}


        /* ================= MEDIA QUERIES ================= */

        @media (max-width: 1024px) {
            .admin-sidebar { transform: translateX(-100%); }
            .admin-sidebar.admin-show { transform: translateX(0); }
            .admin-main { margin-left: 0; }
            .admin-menu-btn { display: block; }
            .admin-overlay.admin-show { display: block; }
            .admin-grid { grid-template-columns: 1fr; }
            .admin-cards { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 767px) {
            .admin-cards { grid-template-columns: 1fr; }
            .admin-main { padding: 15px; }
            .admin-topbar h2 { font-size: 18px; }
            .admin-chart-card { min-height: 300px; width: 325px; }
            .admin-chart-container { height: 250px; }
            .admin-profile span { display: none; }
        }

        /* ===============USER PAGE=============== */
          /* ===== Sidebar ===== */
        .user-sidebar {
            width: 260px;
            background: #91e5ff;
            padding: 25px 15px;
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            z-index: 1001;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .user-brand-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 35px;
            padding: 0 10px;
        }

        .user-logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .user-brand-name {
            color: #b3559f;
            font-size: 20px;
            font-weight: 700;
        }

        .user-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            color: #111827;
            text-decoration: none;
            border-radius: 12px;
            margin-bottom: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .user-menu a.user-active, .user-menu a:hover {
            background: #b3559f;
            color: #fff;
            transform: translateX(5px);
        }
        .user-menu a:hover{
            background: #b3559f6c;
        }

        /* ===== Main Content ===== */
        .user-main {
            margin-left: 260px;
            padding: 30px;
            min-height: 100vh;
            transition: margin-left 0.4s ease;
            background-color: #b3559f;
        }

        /* ===== Header ===== */
        .user-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            
        }

        .user-header-left { display: flex; align-items: center; gap: 15px;  }

        .user-hamburger {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }

        .user-header-right {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            background-color: #91e5ff;
            padding: 7px 7px;
            border-radius: 20px;

        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: opacity 0.3s;
            
            
        }

        .user-profile:hover { opacity: 0.8; }

        .user-profile img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #facc15;
        }

        .user-profile-dropdown {
            position: absolute;
            top: 55px;
            right: 0;
            width: 180px;
            background: #111827;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            display: none;
            z-index: 2000;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .user-profile-dropdown.user-show { display: block; }

        .user-profile-dropdown a {
            display: block;
            padding: 12px 15px;
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            transition: background 0.3s;
        }

        .user-profile-dropdown a:hover { background: #1f2933; }

        /* ===== Cards & Hover Animations ===== */
        .user-card {
            background: #ffffff81;
            border-radius: 18px;
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .user-card:hover {
            transform: translateY(-8px);
            border-color: #35caf8 ;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }

        /* Shimmer Effect */
        .user-card::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
            transition: 0.5s;
        }
        .user-card:hover::before { left: 150%; }

        /* ===== Grids ===== */
        .user-grid-stats {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .user-grid-mid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        /* ===== Progress Bar ===== */
        .user-progress-labels { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-progress-labels span { font-size: 12px; color: #0f0f0f; }

        .user-bar-bg {
            height: 10px;
            background: #1f2937;
            border-radius: 10px;
            overflow: hidden;
        }

        .user-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #b3559f, #35caf8 );
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }

        /* ===== Favorites ===== */
        .user-fav-item {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            background: linear-gradient(90deg, #b3559f, #35caf8 );
            border-radius: 12px;
            margin-bottom: 10px;
            transition: 0.3s;
        }
        .user-fav-item:hover { background: #c7d6f1; }

        /* ===== Table ===== */
        .user-table-container { overflow-x: auto; }
        .user-table { width: 100%; border-collapse: collapse; min-width: 600px; }
        .user-table th, .user-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .user-table th { color: #0d0d0e; font-size: 13px; text-transform: uppercase; }
        .user-table td{ color:#000;}

        .user-badge { padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
        .user-bg-success { background: rgba(34, 197, 94, 0.2); color: #009933; }
        .user-bg-warning { background: rgba(250, 204, 21, 0.2); color: #a88805; }

        .user-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(3px);
            z-index: 1000;
        }

        /* ================= RESPONSIVE BREAKPOINTS ================= */

        /* Tablet: 768px - 1024px */
        @media (max-width: 1024px) {
            .user-sidebar { transform: translateX(-100%); }
            .user-sidebar.user-show { transform: translateX(0); }
            .user-main { margin-left: 0; }
            .user-hamburger { display: block; }
            .user-grid-stats { grid-template-columns: 1fr; }
            .user-overlay.user-show { display: block; }
        }

        /* Mobile: 360px - 767px */
        @media (max-width: 767px) {
            .user-grid-mid { grid-template-columns: 1fr; }
            .user-header h2 { font-size: 18px; }
            .user-main { padding: 20px; }
            .user-profile span { display: none; }
            .user-card { padding: 15px; }
        }

        /* =================ERROR PAGE================ */
        /* PAGE */
.error-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f2f4ff, #eef0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: -10px;
}

/* CARD */
.error-box {
  text-align: center;
  background: #fff;
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
  animation: fadeUp 1s ease forwards;
}

/* ICON */
.error-icon {
  width: 80px;
  height: 80px;
  background: #b3559f;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 25px;
  animation: float 3s ease-in-out infinite;
}

/* TEXT */
.error-box h1 {
  font-size: 72px;
  color: #b3559f;
  margin-bottom: 10px;
}

.error-box h2 {
  font-size: 26px;
  color: #111;
  margin-bottom: 15px;
}

.error-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* BUTTONS */
.error-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* PRIMARY */
.primary {
  background: #b3559f;
  color: #fff;
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: #b3559f;
}

/* OUTLINE */
.outline {
  border: 2px solid #b3559f;
  color: #b3559f;
}

.outline:hover {
  background: #b3559f;
  color: #fff;
  transform: translateY(-3px);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .error-box {
    padding: 40px 25px;
  }

  .error-box h1 {
    font-size: 56px;
  }

  .error-box h2 {
    font-size: 22px;
  }

  .error-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===============COMING SOON PAGE================ */
/* PAGE */
.soon-body {
  min-height: 100vh;
  background: #b3559f;
  background-size: 300% 300%;
  animation: bgMove 10s infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* BACKGROUND ANIMATION */
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
/* CONTAINER */
.soon-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  animation: fadeUp 1s ease;
}

/* LEFT */
.soon-left h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.soon-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
}

/* COUNTDOWN */
.soon-countdown {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.soon-time-box {
  background: rgba(255,255,255,0.15);
  padding: 18px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 80px;
}

.soon-time-box h2 {
  font-size: 28px;
}

.soon-time-box span {
  font-size: 12px;
  color: #c7d2fe;
}

/* RIGHT */
.soon-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soon-notify {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  color: #111;
}

.soon-notify h3 {
  margin-bottom: 15px;
}

.soon-notify input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.soon-notify button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #b3559f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.soon-notify button:hover {
  background: #b3559f;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .soon-wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .soon-wrapper {
    padding: 25px;
  }

  .soon-left h1 {
    font-size: 34px;
  }

  .soon-countdown {
    flex-wrap: wrap;
  }
}

/* ================= FOOTER SECTION PAGE================= */
.footer-section{
  background:#e7e5e5;
  padding:80px 60px 0;
}

/* ================= GRID ================= */
.footer-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:40px;
}

/* ================= LOGO ================= */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  margin-top: -8px;
}

.footer-logo img{
  width:40px;
  height:40px;
  object-fit:contain;
}

.footer-logo h5{
  font-size:18px;
  font-weight:600;
  color:#b3559f;
}

/* ================= TEXT ================= */
.footer-text{
  font-size:14px;
  line-height:1.7;
  color:#000;
  text-align:justify;
}

.footer-heading{
  font-size:16px;
  margin-bottom:15px;
  color:#000;
  font-weight:600;
}

.footer-list{
  list-style:none;
}

.footer-list li{
  font-size:14px;
  color:#000;
  margin-bottom:10px;
}

.footer-list li a{
  color:#000;
  text-decoration:none;
  transition:0.3s;
}

.footer-list li a:hover{
  color:#b3559f;
}

/* ================= GALLERY ================= */
.footer-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}

.footer-gallery img{
  width:100%;
  height:70px;
  object-fit:cover;
  border-radius:8px;
}

/* ================= BOTTOM ================= */
.footer-bottom{
  margin-top:60px;
  padding:25px 0;
  border-top:1px solid #ccc;
  text-align:center;
  font-size:14px;
  color:#000;
}

/* ================================================= */
/* ================= MOBILE (360–767px) ============ */
/* ================================================= */
@media (min-width:360px) and (max-width:767px){

  .footer-section{
    padding:60px 20px 0;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:30px;
    text-align:left;
  }

  .footer-text{
    text-align:left;
    text-align: justify;
  }

  .footer-gallery{
    grid-template-columns:repeat(2,1fr);
  }

}

/* ================================================= */
/* ================= TABLET (768–1024px) =========== */
/* ================================================= */
@media (min-width:768px) and (max-width:1024px){

  .footer-section{
    padding:70px 40px 0;
  }

  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
  }

}

/* ================================================= */
/* ================= DESKTOP (1025px+) ============= */
/* ================================================= */
@media (min-width:1025px){

  .footer-container{
    grid-template-columns:repeat(5,1fr);
  }

}
